From 0fb8e33f327d5f611ff338efe0be6debb1d95481 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 22 May 2021 22:24:09 +0900 Subject: [PATCH 01/12] Fix #9250: autodoc: The inherited method not having docstring is wrongly parsed `sphinx.util.inspect.getdoc()` clean the docstring up if the method is inherited and not having docstring. That causes indentations are removed on processing it. --- CHANGES | 1 + sphinx/ext/autodoc/__init__.py | 4 ++-- sphinx/util/inspect.py | 25 +++++++++++++++++-------- tests/test_util_inspect.py | 7 +++++-- 4 files changed, 25 insertions(+), 12 deletions(-) diff --git a/CHANGES b/CHANGES index d9c5858a034..d7d5095226b 100644 --- a/CHANGES +++ b/CHANGES @@ -53,6 +53,7 @@ Bugs fixed * #8597: autodoc: a docsting having metadata only should be treated as undocumented * #9185: autodoc: typehints for overloaded functions and methods are inaccurate +* #9250: autodoc: The inherited method not having docstring is wrongly parsed * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct * #9224: ``:param:`` and ``:type:`` fields does not support a type containing diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 2de6a62ae0c..ec1472e202c 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1704,7 +1704,7 @@ def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: __init__ = self.get_attr(self.object, '__init__', None) initdocstring = getdoc(__init__, self.get_attr, self.config.autodoc_inherit_docstrings, - self.parent, self.object_name) + self.object, '__init__') # for new-style classes, no __init__ means default __init__ if (initdocstring is not None and (initdocstring == object.__init__.__doc__ or # for pypy @@ -1715,7 +1715,7 @@ def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: __new__ = self.get_attr(self.object, '__new__', None) initdocstring = getdoc(__new__, self.get_attr, self.config.autodoc_inherit_docstrings, - self.parent, self.object_name) + self.object, '__new__') # for new-style classes, no __new__ means default __new__ if (initdocstring is not None and (initdocstring == object.__new__.__doc__ or # for pypy diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index f216e87978b..a415a7074c8 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -838,16 +838,25 @@ def getdoc(obj: Any, attrgetter: Callable = safe_getattr, if ispartial(obj) and doc == obj.__class__.__doc__: return getdoc(obj.func) elif doc is None and allow_inherited: - doc = inspect.getdoc(obj) - - if doc is None and cls and name: - # inspect.getdoc() does not support some kind of inherited and decorated methods. - # This tries to obtain the docstring from super classes. - for basecls in getattr(cls, '__mro__', []): + if cls and name: + # Check a docstring of the attribute or method from super classes. + for basecls in getmro(cls): meth = safe_getattr(basecls, name, None) if meth is not None: - doc = inspect.getdoc(meth) - if doc: + doc = attrgetter(meth, '__doc__', None) + if doc is not None: break + if doc is None: + # retry using `inspect.getdoc()` + for basecls in getmro(cls): + meth = safe_getattr(basecls, name, None) + if meth is not None: + doc = inspect.getdoc(meth) + if doc is not None: + break + + if doc is None: + doc = inspect.getdoc(obj) + return doc diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index dd9bd14a3dd..de4ad92366b 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -674,7 +674,10 @@ def func1(a, b, c): def test_getdoc_inherited_decorated_method(): class Foo: def meth(self): - """docstring.""" + """ + docstring + indented text + """ class Bar(Foo): @functools.lru_cache() @@ -683,7 +686,7 @@ def meth(self): pass assert inspect.getdoc(Bar.meth, getattr, False, Bar, "meth") is None - assert inspect.getdoc(Bar.meth, getattr, True, Bar, "meth") == "docstring." + assert inspect.getdoc(Bar.meth, getattr, True, Bar, "meth") == Foo.meth.__doc__ def test_is_builtin_class_method(): From c579a5eb6af374d4a8bdf15fcac53695d843b5de Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 23 May 2021 01:09:50 +0900 Subject: [PATCH 02/12] refactor: Remove RemovedInSphinx40Warning --- sphinx/deprecation.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index 6b0bdd1588b..3963e63615f 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -14,10 +14,6 @@ from typing import Any, Dict, Type -class RemovedInSphinx40Warning(DeprecationWarning): - pass - - class RemovedInSphinx50Warning(DeprecationWarning): pass From eec29c68af874490990dddb93a21586495b6f8c1 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 23 May 2021 00:11:48 +0000 Subject: [PATCH 03/12] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 83015 -> 83015 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1707 -> 1707 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70874 -> 70874 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33966 -> 33966 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101504 -> 101504 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 73182 -> 73182 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99608 -> 99608 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61290 -> 61290 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 77751 -> 77751 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82763 -> 82763 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 30067 -> 30067 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 79929 -> 79929 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69558 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/sphinx.pot | 198 +++++++++---------- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78006 -> 78006 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9559 -> 9559 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58936 -> 58936 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63731 -> 63731 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 198 +++++++++---------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 10127 -> 10127 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 198 +++++++++---------- 109 files changed, 5445 insertions(+), 5445 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index ab01855d99ea58eec5929f59493863881d748a5d..3fdfc635cb89d54ad8740c4266407a256bf87c05 100644 GIT binary patch delta 21 ccmZp)YqZ;-B*0;0tYBbZWoWorOW-;m06^abyZ`_I delta 21 ccmZp)YqZ;-B*0;4reI)TWoWQjOW-;m06_2sy#N3J diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 0e0718c3f4b..1ee8a33c240 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-16 04:46+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "لا يمكن العثور على المجلد المصدر (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "تشغيل Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "تم" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "غير متوفرة للرسائل الافتراضية المدمجة" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "فشل: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "نجح" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "انتهى مع وجود مشاكل" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "بناء %s، %sتحذير." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "بناء %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "قسم %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "تجهيز المستندات" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "صفحة الHTML موجودة في %(outdir)s" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "كتابة ملفات إضافية" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "رابط دائم لهذه المعادلة" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 0c68ec3af4c44a9a1f313eb40d2cf11e3f00c6e8..482cb79d85d892032fc71df2cde782260af7e56c 100644 GIT binary patch delta 19 acmey${FQk^2Zxcdf`NgRq2a~}sf++c9tJr8 delta 19 acmey${FQk^2Zy1Vf`NgRp~1!psf++cE(SUP diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index a9d2a207c13..74f89592b43 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 92f3e75ca5f237b43dc9bae1b7e394a9207fd4c6..11655a21c4e6bf7825b431b0aad6b23a3aafc099 100644 GIT binary patch delta 21 dcmbPjKihu84qgr;V+8{PD?`K02Y7D_0sv5=2Oj_c delta 21 dcmbPjKihu84qgsJGX(\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 880350f7fd2e0fd8ee760ccc2cc04c0a8ef63d3b..4a1362e505e1d1a561d8cc9de1937f19c11b3787 100644 GIT binary patch delta 21 ccmbQMGgoKBVqOj-V+8{PD?`K0t9gq!0860;VE_OC delta 21 ccmbQMGgoKBVqOkIGX(\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index ef3fb3f11aecad05fc644070d180b14732a4f5c9..c2ac6647f34d52763c0f39038cbbd3867e3596bb 100644 GIT binary patch delta 21 ccmaDU^ipU;DJzGOv4Vktm7(G0TGltr08nfO&Hw-a delta 21 ccmaDU^ipU;DJzGenSz0Vm7&4rTGltr08o7f&j0`b diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index fb9292944c1..d568d8defa0 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "xk'isïk" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "sachoj: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Ruwachib'äl %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Kik'ajtz'ïk %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "tajin nutz'ib'aj" @@ -818,16 +818,16 @@ msgstr "tajin nutz'ib'aj" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(chupam %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 9508e01d2448e1ed489cfaafcaaee626a21d88e3..31ed11ca0d2199487e9cce302fbd30ccacf34e5c 100644 GIT binary patch delta 21 ccmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabulka %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 84b863e5694ede3bef316819e363089ad7539add..3cd528e4cfecf96fa89d42c32c931872e2a400de 100644 GIT binary patch delta 21 ccmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Ffig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabl %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(yn %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 7fd3a6e0cbc710dad9efb1d0b2c02ad00b946864..be15326f685ca67374d4368310d7d162102dca4a 100644 GIT binary patch delta 20 bcmdm)u`^?Xp#q1Iv4Vktm7(EcO9c@CN@fM! delta 20 bcmdm)u`^?Xp#q1YnSz0Vm7&36O9c@CN_GX_ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 61737b9eb00..96ccd0b9876 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan ikke finde kildemappen (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Kildemappe og destinationsmappe kan ikke være identiske" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Kører Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med denne version." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "færdig" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "ikke tilgængelig for indbyggede beskeder" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "fejlede: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "lykkedes" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "færdig med problemer" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "kompilering %s, %s advarsel." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "kompilering %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Ingen sådan konfigurationsværdi: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfigurationsværdien %r er allerede til stede" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "figur %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Kildekode %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r blev ikke fundet, ignorerer." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "forbereder dokumenter" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML-siden er i %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "ny konfiguration" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "udvidelser ændret" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "kildemappe er ændret" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink til denne ligning" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(i %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 6ccd77f18fdcf8597fe327584383baeff8edacae..96de5b86eaa089ab4c32388bbe40bfa673d04201 100644 GIT binary patch delta 21 dcmZ1)xioUaQYj82V+8{PD?`K0Yo&e&0svLE2Y3Jg delta 21 dcmZ1)xioUaQYj8YGX(\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kann Quellverzeichnis nicht finden (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s in Verwendung" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht gebaut werden." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "erledigt" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "nicht verfügbar für vordefinierte Nachrichten" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Keine solche Konfigurationseinstellung: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfigurationswert %r bereits gesetzt" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Abschnitt %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Abb. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tab. %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Quellcode %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nicht gefunden, daher ignoriert." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index f5ba54ca0cb354f2c9e0a5a67ee4a658f32d0c01..693a93ddec25e644126d77019fd2adae2d17a78b 100644 GIT binary patch delta 23 fcmX@!!Fs%db;Fz{4kKd)0|P5V!_7;Y79RuvZBz+8 delta 23 fcmX@!!Fs%db;Fz{4ns2q0|P5VgUw5t79RuvZDk2Q diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index f75ec7526f4..8356f22c640 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -21,135 +21,130 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Δεν είναι δυνατή η εύρεση του καταλόγου πηγής (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Ο κατάλογος πηγής και ο κατάλογος προορισμού δεν είναι δυνατό να είναι ίδιοι" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Εκτέλεση Sphinx έκδοση %s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s και επομένως δεν είναι δυνατή η μεταγλωτισση με αυτή την έκδοση." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "δημιουργία καταλόγου εξόδου" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "κατά τον καθορισμό της επέκτασης %s" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχοντα ορισμό στο conf.py δεν αποτελεί καλέσιμο. Παρακαλείσθε να τροποποιήσετε τον ορισμό ώστε να το κάνετε μία καλέσιμη συνάρτηση. Αυτό απαιτείται προκειμένου το conf.py να συμπεριφέρεται ως μία επέκταση Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "ολοκλήρωση" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "φόρτωση πακτωμένου περιβάλλοντος" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "αποτυχία: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "επιτυχία" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "ολοκλήρωση με προβλήματα" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "μεταγλώττιση %s, %s προειδοποίηση" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "μεταγλώττιση %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +152,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,59 +165,64 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης καταλόγου %r, θα αγνοηθεί (χρησιμοποιήστε το %r για να καθορίσετε τα επιμέρους στοιχεία)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ανέγκυρος αριθμός %r για τιμή παραμετροποίησης %r, θα αγνοηθεί" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης %r με τύπο ο οποίος δεν υποστηρίζεται, θα αγνοηθεί" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "άγνωστη τιμή παραμετροποίσης %r στην υπερσκέλιση, θα αγνοηθεί" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Δεν υπάρχει τέτοια τιμή παραμετροποίησης: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Η τιμή παραμετροποίησης %r υφίσταται ήδη." -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Υπάρχει ένα συντακτικό λάθος στο αρχείο παραμετροποίησής σας: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Το αρχείο παραμετροποίησης (ή ένα από τα στοιχεία που εισάγει) κάλεσε την sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,57 +230,57 @@ msgid "" "%s" msgstr "Υπάρχει ένα προγραμματιστικό λάθος στο αρχείο παραμετροποίησής σας:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Η τιμή παραμτετροποίησης 'source_suffix' αναμένει στοιχειοσειρά, στοιχειοσειρά καταλόγου, ή λεξικό. Αλλά παραδόθηκε %r." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Τομέας %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Εικ. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Πίνακας %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Λίστα %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Η τιμή παραμετροποίησης '{name}' πρέπει να λαμβάνει μία από τις {candidates} αλλά εκχωρήθηκε η '{current}'." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Η τιμή παραμετροποίησης '{name]' έχει τύπο '[current__name__}'; αναμενόμενη {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Η τιμή παραμετροποίησης '{name}' έχει τύπο '{current__name__}', αρχικοποίηση σε '{default__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "το primary_domain %r δεν βρέθηκε, θα αγνοηθεί." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -619,7 +619,7 @@ msgstr "σε αναμονή για εργάτες..." msgid "docnames to write: %s" msgstr "docname προς εγγραφή: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "προετοιμασία κειμένων" @@ -811,7 +811,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"man_pages\"; δεν θα καταγραφούν manual pages" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "εγγραφή" @@ -820,16 +820,16 @@ msgstr "εγγραφή" msgid "\"man_pages\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"man_pages\" κάνει αναφορά το άγνωστο κείμενο %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Η σελίδα HTML είναι στο %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "συναρμολόγηση απλού κειμένου" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "εγγραφή επιπρόσθετων αρχείων" @@ -2286,47 +2286,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "νέα παραμετροποίηση" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "η παραμετροποίηση άλλαξε" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "αλλαγμένες επεκτάσεις" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "ο πηγαίος κατάλογος έχει αλλάξει" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Ο τομέας %r δεν είναι καταχωρημένος" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree" @@ -2701,42 +2701,42 @@ msgstr "σε σειρά latex %r: %s" msgid "Permalink to this equation" msgstr "Μόνιμος σύνδεσμος σε αυτή την εξίσωση" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "το απόθεμα intersphinx έχει μεταφερθεί: %s->%s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "φότωση του αποθέματος intersphinx από %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "παρουσιάστηκαν κάποια ζητήματα με μερικά απο τα αποθέματα, αλλά υπήρξαν λειτουργικές εναλλακτικές:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "αδυναμία προσέγγισης οποιασδήποτε αποθήκης με τα ακόλουθα ζητήματα:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(στη %s έκδοση %s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(στο %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "το αναγνωριστικό intersphinx %r δεν είναι στοιχειοσειρά. Θα αγνοηθεί" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2812,7 +2812,7 @@ msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "σφάλμα κατά τη μορφοποίηση των ορισμάτων για %s:%s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "απουσιάζει το χαρακτηριστικό %s στο αντικείμενο %s" @@ -2860,7 +2860,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2870,33 +2870,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Βάσεις: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2917,43 +2917,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "αδυναμία ανάλυσης ονόματος %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3429,23 +3429,23 @@ msgid "" "translated: {1}" msgstr "ασυνεπείς αναφορές όρων στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "περισσότεροι από ένας στόχοι βρέθηκαν για 'οποιαδήποτε' παραπομπή %r: θα μπορούσε να είναι %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index c834b3afde713038705696ee9239d7eb25054905..79e2c83afcd5c82c1ef9726295b69210be1c3f24 100644 GIT binary patch delta 21 dcmZ3@yP9{yC1wsIV+8{PD?`K0x0o+70RT+r2I2q! delta 21 dcmZ3@yP9{yC1wsoGX(\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 6773e9fc6270bb93fb0475c0ed115d747cd118e1..4a5c1dde264ab97dd71bbd47a1e68e69ddbb070d 100644 GIT binary patch delta 23 fcmcb$lI7M)mJNR\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -25,135 +25,130 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "directorio de configuración no contiene un archivo conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "No se encuentra directorio fuente (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Directorio fuente y directorio destino no pueden ser idénticos" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Ejecutando Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este proyecto necesita al menos Sphinx v%s y por lo tanto no se puede construir con esta versión." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "creando directorio de salida" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "mientras configura la extensión %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python invocable. Por favor, modifique su definición para que sea una función invocable. Esto es necesario para que el archivo conf.py se comporte como una extensión de Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "hecho" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "no disponible para mensajes incorporados" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "cargando el ambiente pickled" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilación %s, %sadvertencia (con advertencias tratadas como errores)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilación %s, %s advertencias (con advertencias tratadas como errores)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "construir %s, %s advertencia." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "compilación %s, %s advertencias." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la clase de nodo %r ya está registrada, sus visitantes serán reemplazados" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ya está registrada, esa se reemplazará" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -161,12 +156,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -174,59 +169,64 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "directorio de configuración no contiene un archivo conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "no se puede reemplazar el ajuste de la configuración del diccionario %r, haciendo caso omiso (utilice %r para definir elementos individuales)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número no válido %r de valor de configuración %r, haciendo caso omiso" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "no se puede reemplazar los ajustes de configuración %r con tipo no compatible, haciendo caso omiso" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "No hay tal valor de configuración: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Valor de configuración %r ya presente" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hay un error de sintaxis en su archivo de configuración: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El archivo de configuración (o uno de los módulos que importa) invocó sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -234,57 +234,57 @@ msgid "" "%s" msgstr "Hay un error programable en su archivo de configuración:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuración `source_suffix' espera una cadena de caracteres, una lista de cadena de caracteres o un diccionario. Pero `%r' es dado." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabla %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Lista %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuración `{name}` tiene que ser uno de {candidates}, pero fue dado `{current}`." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuración `{name}' tiene tipo `{current.__name__}'; esperado {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuración `{name}' tiene el tipo `{current.__name__}', el valor predeterminado es `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r no fue encontrado, se ignora." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -623,7 +623,7 @@ msgstr "Esperando a los workers..." msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparando documentos" @@ -815,7 +815,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "no se encontró el valor de configuración \"man_pages\"; no se escribirán las páginas del manual" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "escribiendo" @@ -824,16 +824,16 @@ msgstr "escribiendo" msgid "\"man_pages\" config value references unknown document %s" msgstr "El valor de configuración \"man_pages\" hace referencia a un documento desconocido %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Página HTML está en %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "ensamblando documento sencillo" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "escribiendo archivos adicionales" @@ -2290,47 +2290,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nueva configuración" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "configuración modificada" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "extensiones modificadas" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "la versión del entorno de compilación no es actual" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "directorio fuente ha cambiado" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este entorno es incompatible con el generador seleccionado, elija otro directorio doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Error al escanear los documentos en %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Dominio %r no está registrado" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "toctree auto referenciado encontrado. Ignorado." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "documento no está incluido en ningún toctree" @@ -2705,42 +2705,42 @@ msgstr "en línea latex %r: %s" msgid "Permalink to this equation" msgstr "Enlace permanente a esta ecuación" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "el inventario intersphinx se ha movido: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "cargando inventario intersphinx desde %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encontró algunos problemas con algunos de los inventarios, pero tenían alternativas de trabajo:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "no se pudo llegar a ninguno de los inventarios con los siguientes problemas:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(en %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "el identificador de intersphinx %r no es una cadena. Ignorado" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Error al leer intersphinx_mapping[%s], ignorado: %r" @@ -2816,7 +2816,7 @@ msgstr "firma inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "error al formatear argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "falta el atributo %s en el objeto %s" @@ -2864,7 +2864,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2874,33 +2874,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2921,43 +2921,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "Error al analizar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referencias autosummary excluidas documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: no se encontró el archivo stub %r. Verifique su configuración de autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "fallo al analizar el nombre %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "fallo al importar el objeto %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: archivo no encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3433,23 +3433,23 @@ msgid "" "translated: {1}" msgstr "referencias de término inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "más de un objetivo destino encontrado para 'cualquier' referencia cruzada %r: podría ser %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index aeed8cc699b033788eeba288d964912dfe3902d8..063d9909374839946d8f55ce0f82007422d2b7e5 100644 GIT binary patch delta 23 ecmZ42$+WJMX+wYyhmo;@fq|8w;pPaRFbe=(_6IEh delta 23 ecmZ42$+WJMX+wYyhoPB*fq|8w!R82`Fbe=)2L~\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Lähtekataloogi (%s) pole võimalik leida" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Lähtekataloog ja sihtkataloog ei tohi olla identsed" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s käitamine" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võimalik käesoleva versiooniga ehitada." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "väljundkataloogi loomine" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "valmis" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "serialiseeritud keskkonna laadimine" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "vigane arv %r seadistuse väärtusele %r, eiratakse" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Puudub määratud seadistusväärtus: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Seadistuste väärtus %r on juba olemas" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Sinu seadistusfailis on süntaksi viga: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Seadistusfail (või mõni selle poolt imporditud moodulitest) kutsus välja sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sektsioon %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Joonis %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Nimekiri %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ei leitud, eiratakse." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "seadistusparameetrit \"man_pages\" ei leitud, juhendi lehti ei kirjutata" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "seadistusparameeter \"man_pages\" viitab tundmatule dokumendile %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML-leht asub kataloogis %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "täiendavate failide kirjutamine" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "See keskkond pole valitud ehitajaga ühilduv, palun vali mõni teine dokumendipuu kataloog." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokument pole ühegi sisukorrapuu osa" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Püsiviit sellele võrrandile" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(projektis %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "tõrge objekti %s importimisel" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 85154347352fc04620db6dec3e55688d0c13ca76..fc312628248265998c717fc3eeb9f913f5dd0b4f 100644 GIT binary patch delta 21 ccmexw^50}bumFdVv4Vktm7(G0XaN;209AbkPXGV_ delta 21 ccmexw^50}bumFdlnSz0Vm7&4rXaN;209B3#Pyhe` diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index d437c60a16b..3d710ad61ab 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index b76dd809ebf77e55789018225013a3d200d4cbe6..170a68c7fdc948d21a6c52dae8166a45946f4584 100644 GIT binary patch delta 23 fcmZpe$<{EFZ9~Qi4kKd)0|P5V!_5UN1fBo@Vc-Zy delta 23 fcmZpe$<{EFZ9~Qi4ns2q0|P5VgUtmi1fBo@Vetq^ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index a6181c191eb..680ba5d3463 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 16:47+0000\n" "Last-Translator: Hadi F \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ندارد" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "شاخه‌ی منبع(%s) پیدا نشد." -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "نشانی (%s) شاخه نیست" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "شاخه‌های مبدأ و مقصد نمی توانند یکسان باشند" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "اجرای اسفینکس نگارش %s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "به دلایل امنیّتی، حالت موازی در macOS و پایتون 3.8 و جدیدتر از آن غیرفعّال است. برای جزئیّات بیشتر لطفاً این مقاله را بخوانید: https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "این پروژه دست که به افینکس نگارش%s نیاز دارد و برای همین با این نسخه قابل ساخت نیست." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "ایجاد پوشه ی برون داد" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "در حال راه اندازی افزونه‌ی%s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل فراخوانی پایتون نیست. لطفاً تعریفش را تغییر دهید تا تابع قابل فراخوان پایتون شود. این کار لازمه‌ی conf.py است تا به عنوان افزنه‌ی اسفینکس کار کند." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "انجام شد" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "برای پیام‌های داخلی در دسترس نیست" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "بارگذاری محیط pckle شده" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "شکست خورد: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "هیچ سازنده‌ای برگزیده نشده، استفاده از قالب خروجی پیش‌فرض: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "موفّقیّت‌آمیز بود" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "انجام شد ولی با مشکل" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "ساخت %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "بست کلاس %r در حال حاضر ثبت نام شده است، بازدیدکنندگان این پیوند نادیده گرفته خواهد شد" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "دستور %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ندارد" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "امکان لغو تنظیمات پیکربندیdictionary %r ، نادیده گرفته می‌شود (برای تعیین تک تک عناصر %r را به کار ببرید)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "شماره نامعتبر %r برای پیکربندی مقدار %r، نادیده گرفته می‌شود" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "امکان لغو تنظیمات پیکربندی %r با نوع پشتیبانی نشده نبود، نادیده گرفته می‌شود" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "مقدار پیکربندی ناشناخته %r در ابطال، نادیده گرفته شد" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "چنین مقداری برای پیکربندی نبود: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "مقدار پیکربندی %r از قبل موجود است" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "خطای نحوی در پرونده‌ی پیکربندی شما وجود دارد: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "پرونده‌ی پیکربندی (یا یکی از ماژول هایی که وارد می کند) sys.exit() را فراخواند" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "یک خطای قابل برنامه ریزی در پرونده‌ی پیکربندی شما وجود دارد:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "مقدار پیکربندی 'source_suffix' انتظار یک رشته، لیست رشته ها، یا فرهنگ لغت را داشت. اما '%r' داده شده است." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "بخش%s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "شکل %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "فهرست %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "مقدار پیکربندی '{name}' باید یکی از {candidates} باشد، اما '{current}' داده شده." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، ولی انتظار می‌رفت {permitted} می‌بود." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، حالت پیش‌فرض {permitted} است." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "دامنه‌ی اصلی %r یافت نشد، نادیده گرفته می‌شوند." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "در انتظار برای ابزارهای کارگر..." msgid "docnames to write: %s" msgstr "نام مستندات برای نوشتن: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "آماده سازی اسناد" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "هیچ مقداری برای تنظیمات «صفحات راهنما» ا نشد؛ بنابراین هیچ صفحه‌ی راهنمایی نوشته نخواهد شد" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "در حال نوشتن" @@ -821,16 +821,16 @@ msgstr "در حال نوشتن" msgid "\"man_pages\" config value references unknown document %s" msgstr "پیکربندی مقدارهای «صفحات راهنما» به سند ناشناخته‌ای ارجاع می‌دهند %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "صفحه HTML در %(outdir)s است." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "سر جمع کرد تک سند" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "نوشتن پرونده‌های اضافی" @@ -2287,47 +2287,47 @@ msgstr "برچشب تعریف نشده: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "شکست در ایجاد ارجاع متقابل. عنوان یا زیرنویس پیدا نشد: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "پیکربندی جدید" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "پیکربندی تغییر داده شد" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "افزونه‌ها تغییر کردند" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "نسخه‌ی محیط ساخت به‌روز نیست" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "شاخه ی منبع تغییر کرد" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "این محیط با سازنده‌ی انتخاب شده سازگار نیست، لطفاً یک خوشه‌ی اسناد دیگری را انتخاب کنید." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "پویش اسناد %s: %r شکست خورد" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "دامنه ی %r ثبت نشده" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "درختواره‌ی فهرست مطالب با ارجاع به خود پیدا شده. نادیده گرفته می‌شود." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "سند در هیچ درختواره‌ی فهرست مطالبی گنجانده نشده" @@ -2702,42 +2702,42 @@ msgstr "لتکس بین سطری: %r: %s" msgid "Permalink to this equation" msgstr "پیوند ثابت به این معادله" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "سیاهه‌ی بین اسفینکس جا به جایی را انجام داد: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "بارگذاری سیاهه‌ی بین اسفینکس از %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "مشکلاتی در برخی از سیاهه‌ها به وجود آمد،ولی این مشکلات راه‌های جایگزین های داشته‌اند:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "شکست در رسیدن به یکی از سیاهه‌ها به خاطر مشکلات زیر:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(در %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(در %s )" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "شناساگر بین اسفینکس %r رشته‌متن نیست. نادیده گرفته شد" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "شکست در خواندن intersphinx_mapping[%s]، نادیده گرفته می‌شود: %r" @@ -2813,7 +2813,7 @@ msgstr "امضای ناشناخته‌ برای %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "خطا در قالب بندی نشانوند برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "ویژگی ناموجود %s در شیئ %s" @@ -2861,7 +2861,7 @@ msgid "" msgstr "ویژگی نایاب در گزینه‌ی :members: قید شده: پیمانه‌ی:%s، ویژگی %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s" @@ -2871,33 +2871,33 @@ msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه msgid "Failed to get a constructor signature for %s: %s" msgstr "شکست در دریافت امضای سازنده‌ی شیئ برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "پایه ها:%s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "نام جانشین %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "نام جانشین نوع متغیر(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "شکست در به روز رسانی امضا برای %r: مؤلّفه msgid "Failed to parse type_comment for %r: %s" msgstr "شکست در تحلیل نوع یادداشت برای %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "ارجاعات خلاصه‌ی خودکار سند %r حذف کنار گذاشته. نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "خلاصه‌ی خودکار: خرده‌پرونده‌ی %r پیدا نشد. تنظیمات تولید خلاصه‌ی خودکار(autosummary_generate) را بررسی کنید." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "خلاصه‌ی خودکار عنوان‌ٔار نیازمند گزینه‌ی :toctree: است، نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "خلاصه‌ی خودکار: فراخوان %s شکست خورد" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "شکست در تجزیه تحلیل نام %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "شکست در وارد کردن شیئ %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "تولید خلاصه خودکار: پرونده پیدا نشد: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "ارجاعات اصطلاحی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "امکان تشخیص متن جایگزین برای ارجاع متقابل نبود. شاید یک اشکال برنامه نویسی باشد." -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "برای «هر» ارجاع متقابل بیشتر از یک هفد پیدا شد: %r شاید %s باشد" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:%s مرجع هدف پیدا نشد: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "مقصد ارجاع %r پیدا نشد %s" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 7363e6512b91ba6c2536b27c94ce16a2f24ac609..cde39c7e3d653f92efa995ab5f26bddc848288a7 100644 GIT binary patch delta 21 ccmaDL_CRdI88!|hV+8{PD?`K0SJ--309CsO6#xJL delta 21 ccmaDL_CRdI88!|>GX(\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 488a4adf2d388daea211dbc698b6aa77a0584a76..f520b7066791b2c40be2a71a31e178231d0e5802 100644 GIT binary patch delta 23 fcmcb&o8{hamJNwhIgE@I3=FIc4L4^_E$sjRby^7+ delta 23 fcmcb&o8{hamJNwhISkDd3=FIc4K`;^E$sjRb!!P3 diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index e9586ed708c..32db5209907 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -42,135 +42,130 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Impossible de trouver le répertoire source (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Le répertoire de sortie (%s) n'est pas un répertoire" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Les dossiers source et destination ne doivent pas être identiques" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s en cours d'exécution" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Pour des raisons de sécurité, le mode parallèle est désactivé sur macOS et python3.8 et plus. Pour plus de détails, veuillez lire https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être construit avec cette version." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "création du dossier de destinataire" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "lors de l'initialisation de l'extension %s :" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable. Veuillez modifier sa définition pour en faire une fonction appelable. Ceci est nécessaire pour que conf.py se comporte comme une extension Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "fait" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "traductions indisponibles" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "Chargement de l'environnement pickled" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "a réussi" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "s'est terminée avec des problèmes" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "La compilation %s, %s avertissement (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "La compilation %s, %s avertissements (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "La compilation %s, %s avertissement." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "La compilation %s, %s avertissements." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "La compilation %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe de nœud %r est déjà enregistrée, ses visiteurs seront écrasés" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directive %r est déjà enregistrée, elle sera écrasée" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -178,12 +173,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -191,59 +186,64 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "impossible d'écraser le dictionnaire de configuration %r ; ignoré (utilisez %r pour modifier les éléments individuellement)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre non valide %r pour l'option de configuration %r ; ignoré" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "impossible de remplacer le paramètre de configuration %r par un type non-supporté ; ignoré" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Option de configuration inexistante : %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "L'option de configuration %r est déjà présente" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Votre fichier de configuration comporte une erreur de syntaxe : %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Le fichier de configuration (ou un des modules qu'il utilise) génère un sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -251,57 +251,57 @@ msgid "" "%s" msgstr "Votre fichier de configuration comporte une erreur de programmation : \n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Le paramètre « source_suffix » s'attend à recevoir une chaîne de caractères, une liste de chaînes de caractères ou un dictionnaire. Mais vous avez fourni un « %r »." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tableau %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Code source %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "La valeur « {current} » du paramètre « {name} » ne figure pas dans la liste des possibilités valables « {candidates} »." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Le type du paramètre de configuration « {name} » doit être {permitted} et non « {current.__name__} »." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Le paramètre de configuration « {name} » a pour type « {current.__name__} », tandis que le type par défaut est « {default.__name__} »." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r non trouvé; ignoré." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -640,7 +640,7 @@ msgstr "En attente des processus parallélisés..." msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "Document en préparation" @@ -832,7 +832,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "aucun valeur de configuration \"man_pages\" trouvée; aucun page du manuel ne sera enregistrée" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "enregistrement" @@ -841,16 +841,16 @@ msgstr "enregistrement" msgid "\"man_pages\" config value references unknown document %s" msgstr "le paramètre de configuration \"man_pages\" référence un document inconnu %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Les pages HTML sont dans %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "création du document unique" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "Enregistrement des fichiers supplémentaires" @@ -2307,47 +2307,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nouvelle configuration" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "la configuration a changé" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "les extensions ont changé" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "version non à jour de l’environnement de construction" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "le répertoire racine a changé" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Cet environnement est incompatible avec le constructeur sélectionné, veuillez choisir un autre répertoire doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Échec du scan des documents dans %s : %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "le domaine %r n'est pas enregistré." -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "une table des matières auto-référencée a été trouvée. Elle sera ignorée." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "Le document n'est inclus dans aucune table des matières de l'arborescence." @@ -2722,42 +2722,42 @@ msgstr "latex en ligne %r : %s" msgid "Permalink to this equation" msgstr "Lien permanent vers cette équation" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "l’inventaire intersphinx a bougé : %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "chargement de l'inventaire intersphinx de %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "quelques problèmes ont été rencontrés avec quelques uns des inventaires, mais ils disposaient d'alternatives fonctionnelles :" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "échec d'accès à un quelconque inventaire, messages de contexte suivants :" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(disponible dans %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(dans %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "l’identifiant intersphinx %r n'est pas une chaîne. Il sera ignoré" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Échec de la lecture de intersphinx_mapping[%s]; ignoré : %r" @@ -2833,7 +2833,7 @@ msgstr "signature invalide pour auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erreur pendant la mise en forme de l'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "attribut manquant %s dans l'objet %s" @@ -2881,7 +2881,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2891,33 +2891,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2938,43 +2938,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "Échec de l'analyse de type_comment pour %r : %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary fait référence au document exclu %r. Ignoré" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary : fichier stub non trouvé %r. Vérifiez votre paramètre autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "échec de l’analyse du nom %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "échec d’importation de l'object %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate : fichier nontrouvé : %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3450,23 +3450,23 @@ msgid "" "translated: {1}" msgstr "ncohérences de références de terme dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "plus d'une cible trouvée pour la référence %r de type 'any' : pourrait être %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index c9a8ed1cff3f945341d8359278da9e6fc7e4ad0f..16429d952aff870b2bb84e40688933e75258da7c 100644 GIT binary patch delta 21 dcmZ3YzC?Y)5iSlRV+8{PD?`K0XSi-~002)V2L}KE delta 21 dcmZ3YzC?Y)5iSlxGX(\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index e632a0823086cd9f72034d7ca68289a0bd3b5729..58c83afe9f47c436f6dd49343f6f4af40c0867a4 100644 GIT binary patch delta 23 ecmbQy#WtghZ9_{Zhmo;@fq|8w;pU#sp5Fjuk_hGi delta 23 ecmbQy#WtghZ9_{ZhoPB*fq|8w!RDUMp5FjuqX_2! diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 22e207617dc..503379d6603 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "स्रोत निर्देशिका (%s) नहीं मिली" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "स्रोत निर्देशिका और गंतव्य निर्देशिका समरूप नहीं हो सकतीं" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "स्फिंक्स %s संस्करण चल रहा है" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "इस परियोजना में स्फिंक्स का कम से कम %s संस्करण चाहिए और इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "परिणाम निर्देशिका बनाई जा रही है" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "%s आयाम को स्थापित करते हुए:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'स्थापना' को जैसा कि अभी कोन्फ़.पाई में परिभाषित किया गया है, पाइथन से निर्देशित नहीं है. कृपया इसकी परिभाषा में परिवर्तन करके इसे निर्देश योग्य कर्म बनाएं. कोन्फ़.पाई को स्फिंक्स के आयाम की तरह व्यवहार के लिए इसकी आवश्कयता है." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "संपन्न" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "अंतर्निर्मित संदेशों में उपलब्ध नहीं है" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "रक्षित स्थिति को लागू किया जा रहा है" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "असफल: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "किसी निर्माता को नहीं चुना गया, मानक उपयोग: एच्.टी.ऍम.एल." -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "सफल हुआ" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "समस्याओं के साथ समाप्त हुआ" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s निर्माण, चेतावनी %s (चेतावनी को गलती माने)| " -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "%s सम्पूर्ण, %s चेतावनी." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "%s निर्मित." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "निर्देशक कक्षा #node class# %r पहले से पंजीकृत है, इसके अभ्यागत निरस्त हो जाएंगे " -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "निर्देश %r पहले से पंजीकृत है, यह निरस्त हो जाएगा" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "शब्दकोष विन्यास मान %r की उल्लंघन नहीं किया जा सकता, अनदेखा किया गया (प्रत्येक अवयव का मान रखने के लिए %r का उपयोग करें)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "विन्यास मान %r के लिए अमान्य संख्या %r, अनदेखा किया गया" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "असमर्थित प्रकार के साथ विन्यास मान %r का उल्लंघन नहीं किया जा सकता, अनदेखा किया गया" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "आरोहण में अज्ञात विन्यास मान %r, अनदेखा किया गया" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "ऐसा कोई विन्यास मान नहीं है: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "विन्यास मान %r पहले से विद्यमान है" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "आपकी विन्यास फाइल में रचनाक्रम की त्रुटि है: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "विन्यास फाइल (अथवा इसके द्वारा आयातित प्रभागों) द्वारा sys.exit() का आह्वान किया गया" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "विन्यास फाइल में प्रोग्राम के योग्य त्रुटि है:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "विन्यास मान `source_suffix' में अक्षर-समूह, अक्षर-समूहों की सूची, अथवा कोष की अनुमति है. लेकिन `%r' दिया गया है." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "भाग %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "चित्र %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "सारणी %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "सूची %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` विन्यास मान, {candidates} में से एक होना चाहिए, परन्तु `{current}` दिया गया है." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; अपेक्षित {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; मानक `{default.__name__}' का प्रयोग किया गया." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r नहीं मिला, अनदेखा किया गया." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "कर्मियों की प्रतीक्षा हो र msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "कोई \"man_pages\" विन्यास मान नहीं मिला; कोई नियमावली पृष्ठ नहीं लिखे जाएंगे" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "लिखा जा रहा है" @@ -821,16 +821,16 @@ msgstr "लिखा जा रहा है" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें है." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "एकल लेखपत्र संकलन किया जा रहा है" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "अतिरिक्त फाइलों को लिखा जा रहा है" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "नव विन्यास" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "विन्यास परिवर्तित" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "आयाम परिवर्तित" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है " -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है " -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" @@ -2702,42 +2702,42 @@ msgstr "पंक्तिबद्ध लाटेक्स %r: %s" msgid "Permalink to this equation" msgstr "इस समीकरण की स्थायी कड़ी" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "इन्टरस्फिंक्स सामान स्थानांतरित हो चुका है: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "इन्टरस्फिंक्स सामान को %s से चढ़ाया जा रहा है ..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s में)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(%s में)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "स्वतः %s (%r) के लिए अमान्य हस्त msgid "error while formatting arguments for %s: %s" msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "%s गुण %s वस्तु में अनुपस्थित" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "पद-विच्छेदन में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "विषय-वस्तु के आयात में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "अनुवादित संदेश में असंगत शब्द के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "किसी भी पारस्परिक-सन्दर्भ के लिए एक से अधिक लक्ष्य मिले %r: %s संभव" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 163942735692995f8496ee6ebf2957ab002d6bea..8ff7d7a0daf23629ad7aeaef7860bbcfdfdd716c 100644 GIT binary patch delta 19 acmey*{GWM32Zxcdf`NgRq2a~}`HTQYng&+@ delta 19 acmey*{GWM32Zy1Vf`NgRp~1!p`HTQYss>m9 diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 1dbb729e42f..67196fc2f97 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 5512cce9ef8c3b1957ee6c72983532c1bcfe3110..c1f5218b9a80a62e688a62c2cb95f448ac1008d3 100644 GIT binary patch delta 23 ecmaFX&iJgIaf7Y~hmo;@fq|8w;bv2fjnV*OItNDp delta 23 ecmaFX&iJgIaf7Y~hoPB*fq|8w!Dds9jnV*OO9w~* diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 369ac268d53..1d982b4a70d 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nema izvornog direktorija (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Izvorni i odredišni direktorij ne smiju biti jednaki" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Izrada pomoću Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ovaj projekt se ne može izgraditi s instaliranom verzijom, potrebno je instalirati Sphinx v%s ili višu verziju." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "izrada izlazne mape" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmijenite definiciju 'setup' funkcije kako bi ju mogli izvršiti iz Pythona. Ovo je potrebno kako bi conf.py imao karakter Sphinx proširenja. " -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "ne može se nadjačati osnovna konf. postavka %r, zanemarena je (koristite %r za postavljanje pojedinačnih elemenata)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nepravilan broj %r za konf. vrijednost %r, zanemaruje se" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "ne može se nadjačati konf. vrijednost %r zbog nepodržanog tipa, zanemareno" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Ne postoji konfiguracijska vrijednost: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfiguracijska vrijednost %r već postoji" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Postoji sintaksna greška u konfiguracijskoj datoteci: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Poglavlje %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Slika %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tablica %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Ispis %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nije pronađen, zanemareno je." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Link na tu definiciju" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(u %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "više od jednog targeta za 'any' referencu %r: može biti %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 0fec2d80be3e8554c577f61aeafec3d8419020c9..d8e9e64a1392675b57b9419d55b6272a9596d625 100644 GIT binary patch delta 21 ccmewt{V#gMekl$kV+8{PD?`K0$ED1L0c3IqqW}N^ delta 21 ccmewt{V#gMekl$^GX(\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nem található a forráskönyvtár (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "A forráskönyvtár és célkönyvtár nem lehet azonos" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx %s verzió futtatása" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ez a projekt legalább a Sphinx %s verzióját igényli, és emiatt nem állítható össze ezzel a verzióval." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "kimeneti könyvtár elkészítése" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "a(z) %s kiterjesztés beállításakor:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem meghívható Python függvény. Módosítsa a meghatározását, hogy meghívható függvénnyé tegye. Ez ahhoz szükséges, hogy a conf.py Sphinx kiterjesztésként viselkedjen." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "kész" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "nem érhető el beépített üzenetekhez" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "pickle-t környezet betöltése" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "sikertelen: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nincs összeállító kiválasztva, az alapértelmezett használata: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "sikerült" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "problémákkal befejeződött" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "%s összeállítás." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a(z) %r csomópontosztály már regisztrálva van, a látogatói felül lesznek bírálva" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "%s. bekezdés" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "%s. ábra" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "%s. táblázat" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "%s. felsorlás" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "forrás mappa megváltozott" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Állandó hivatkozás erre az egyenletre" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 9197dc1087f10e8a28224d02b08a52e45621500e..41c2796de8d62c2d6f40ab7a3258f76926d1d13a 100644 GIT binary patch delta 23 ecmaELkNMR-<_&V~97e_p1_oA!hMU#eT`~Z67zlv? delta 23 ecmaELkNMR-<_&V~9EN5J1_oA!2AkE|T`~Z6DF}i9 diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 0dd7df48b12..355629290f5 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -23,135 +23,130 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Tidak dapat menemukan direktori sumber (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Direktori sumber dan direktori tujuan tidak boleh sama" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Menjalankan Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proyek ini memerlukan sedikitnya Sphinx v%s dan maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "membuat direktori keluaran" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "saat menyiapkan ekstensi %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python callable. Silakan modifikasi definisinya untuk membuatnya menjadi fungsi callable. Hal ini diperlukan guna conf.py berjalan sebagai ekstensi Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "selesai" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "tidak tersedia untuk built-in messages" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "memuat lingkungan yang diawetkan" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "gagal: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "berhasil" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "selesai with masalah" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "bangun %s, %s peringatan (dengan peringatan dianggap sebagai kesalahan)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s peringatan." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "kelas simpul %r sudah terdaftar, pengunjungnya akan diganti" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "pengarahan %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -159,12 +154,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -172,59 +167,64 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "tidak dapat menulis ulang pengaturan direktori konfigurasi %r, mengabaikan (gunakan %r untuk mengatur elemen-elemen satuan)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nomor %r yang salah untuk konfigurasi nilai %r, mengabaikan" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "tidak dapat menulis ulang pengaturan konfigurasi %r dengan tipe yang tidak didukung, mengabaikan" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nilai konfigurasi %r yang tidak dikenal pada penulisan ulang, mengabaikan" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Tidak terdapat nilai konfigurasi demikian: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Nilai konfigurasi %r sudah ada" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ada kesalahan sintaksis dalam file konfigurasi Anda: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Berkas konfigurasi (atau salah satu dari modul terimpor) disebut sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,57 +232,57 @@ msgid "" "%s" msgstr "Terdapat kesalahan programmable dalam berkas konfigurasi anda:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Nilai konfigurasi `source_suffix 'mengharapkan sebuah string, daftar string, atau kamus. Tetapi `%r' diberikan." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Bab %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Gambar. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Daftar %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Nilai konfigurasi `{name}` harus salah satu dari {candidates}, tapi `{current}` diberikan." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Nilai konfigurasi `{name}' memiliki tipe `{current.__name__}'; diharapkan {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Nilai konfigurasi `{name}` bertipe `{current.__name__}', default menjadi `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r tidak ditemukan, diabaikan." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -621,7 +621,7 @@ msgstr "menunggu workers..." msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "menyiapkan dokumen" @@ -813,7 +813,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "tidak ditemukan nilai konfigurasi \"man_pages\"; halaman manual tidak akan ditulis" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "penulisan" @@ -822,16 +822,16 @@ msgstr "penulisan" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" nilai konfigurasi mengacu pada dokumen tidak diketahui %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "merakit dokumen tunggal" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "menulis file tambahan" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "konfigurasi baru" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "konfigurasi berubah" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "ekstensi berubah" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "membangun lingkungan bukan versi saat ini" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "direktori sumber telah berubah" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Lingkungan ini tidak kompatibel dengan pembangun yang dipilih, silakan pilih direktori doctree lain." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Gagal memindai dokumen dalam %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r tidak terdaftar" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "totree referensikan sendiri ditemukan. Diabaikan" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokumen tidak termasuk dalam toctree" @@ -2703,42 +2703,42 @@ msgstr "inline latex %r: %s" msgid "Permalink to this equation" msgstr "Tautan untuk persamaan ini" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "pengimpanan intersphinx telah dipindahkan: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "memuat penyimpanan intersphinx dari %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "mengalami beberapa masalah dengan beberapa inventaris, tetapi mereka memiliki alternatif berfungsi:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "gagal mencapai salah satu inventaris dengan masalah berikut:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(di %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(dalam %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "pengenal intersphinx %r bukan string. Diabaikan" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "tanda tangan tidak valid untuk outo %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "kesalahan saat memformat argumen untuk %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut hilang %s dalam objek %s" @@ -2862,7 +2862,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2872,33 +2872,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2919,43 +2919,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "gagal mengurai nama %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3431,23 +3431,23 @@ msgid "" "translated: {1}" msgstr "referensi istilah yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "lebih dari satu target ditemukan untuk referensi silang 'any' %r: bisa %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 3071d6edc3e83a858c67be351c8231df370f589b..09f9610c4d053f893d25464aa9dfbb060d6cac5c 100644 GIT binary patch delta 21 ccmaFq|I&Yhy99@kv4Vktm7(Ege~DTA09K#|%m4rY delta 21 ccmaFq|I&Yhy99@!nSz0Vm7&3Ae~DTA09LUE%>V!Z diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 5bfa8885d95..c872a73bbf5 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -23,135 +23,130 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "fatto" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -159,12 +154,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -172,59 +167,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,57 +232,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sezione %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabella %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listato %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "il primary_domain %r non è stato trovato, tralasciato." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -621,7 +621,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -813,7 +813,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -822,16 +822,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2703,42 +2703,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink a questa equazione" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2814,7 +2814,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2862,7 +2862,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2872,33 +2872,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2919,43 +2919,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3431,23 +3431,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 5004069ef6778a300cf4761f28a223ed52301b27..9c5e46e904d07664d33ca8271ea089b891f561f7 100644 GIT binary patch delta 23 fcmdmfpJn@fmJNR\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -33,135 +33,130 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "conf.py が設定ディレクトリに存在しません (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "ソースディレクトリが存在しません (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "出力先ディレクトリにはソースディレクトリと異なるディレクトリを指定してください" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s を実行中" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "このプロジェクトはSphinx v%s以降のバージョンでなければビルドできません。" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "出力先ディレクトリを作成しています" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "拡張機能のセットアップ中 %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "conf.pyにある'setup'はPythonのcallableではありません。定義を修正してcallableである関数にしてください。これはconf.pyがSphinx拡張として動作するのに必要です。" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "完了" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "翻訳が用意されていません" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "保存された環境データを読み込み中" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "ビルド %s, %s 警告." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -169,12 +164,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -182,59 +177,64 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "直列で %sします" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "conf.py が設定ディレクトリに存在しません (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "設定値の辞書 %r は上書きないため無視されました (%r を使って個別に設定してください)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "%r は設定値 %r の正しい値ではないため無視されました" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "%r は正しい型ではないため無視されました" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "%s という設定値はありません" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "設定値 %r は既に登録済みです" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "設定ファイルに文法エラーが見つかりました: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "設定ファイル(あるいはインポートしたどれかのモジュール)がsys.exit()を呼びました" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -242,57 +242,57 @@ msgid "" "%s" msgstr "設定ファイルにプログラム上のエラーがあります:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "設定値 `source_suffix' に `%r' が指定されましたが、文字列、文字列のリスト、辞書、のいずれかを指定してください。" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "%s 章" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "図 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "リスト %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr " 設定値 `{name}` に `{current}` が指定されましたが、 {candidates} のいずれかを指定してください。" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されていますが、 {permitted} 型を指定してください。" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されています。デフォルト値は `{default.__name__}' です。" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r が見つかりません。無視します。" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -631,7 +631,7 @@ msgstr "ワーカーの終了を待っています..." msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparing documents" @@ -823,7 +823,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "設定値 \"man_pages\" が見つかりません。マニュアルページは書かれません" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "書き込み中" @@ -832,16 +832,16 @@ msgstr "書き込み中" msgid "\"man_pages\" config value references unknown document %s" msgstr "設定値 \"man_pages\" が不明なドキュメント %s を参照しています" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML ページは%(outdir)sにあります。" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "ドキュメントを1ページにまとめています" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "追加のファイルを出力" @@ -2298,47 +2298,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "新しい設定" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "変更された設定" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "変更された拡張" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "ビルド環境のバージョンが最新ではありません" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "ソースディレクトリが変更されました" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s のドキュメントをスキャンできませんでした: %r " -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "ドメイン %r はまだ登録されていません" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "自己参照している toctree が見つかりました。無視します。" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "ドキュメントはどの toctree にも含まれていません" @@ -2713,42 +2713,42 @@ msgstr "latex のインライン表示 %r: %s" msgid "Permalink to this equation" msgstr "この数式へのパーマリンク" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx インベントリは移動しました: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s から intersphinx インベントリをロード中..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" @@ -2824,7 +2824,7 @@ msgstr "auto%s (%r) の署名が無効です" msgid "error while formatting arguments for %s: %s" msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "オブジェクト %s に属性 %s がありません" @@ -2872,7 +2872,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2882,33 +2882,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2929,43 +2929,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "%rのtype_commentを解析できませんでした: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary は除外したドキュメント %r を参照しています。無視されます。" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: stubファイルが見つかりません%r。autosummary_generate設定を確認してください。" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "%sの名前を解析できませんでした " -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "%sオブジェクトをインポートできませんでした " -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ファイルが見つかりません: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "翻訳されたメッセージの用語参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "'any' クロスリファレンス %r のターゲットが1つ以上みつかりました。 %s に参照を設定します。" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 3e8c9f5a10e8aa54a1aaa0c965c11f2df4ed137e..ba3297efad389eba92faa1fd4e12f36ef82ff6d6 100644 GIT binary patch delta 23 fcmX@z#(KJqb;Gn397e_p1_oA!hMVWDSUU>\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "원본 디렉토리를 찾을 수 없습니다 (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "출력 디렉토리 %s은(는) 디렉토리가 아닙니다." -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "원본 디렉토리와 대상 디렉토리는 같을 수 없습니다" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx 버전 %s 실행 중" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "보안상의 이유로 macOS의 Python 3.8 버전 이상에서는 병렬 모드가 비활성화되어 있습니다. 자세한 내용은 https://github.com/sphinx-doc/sphinx/issues/6803 을 참조하십시오" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "이 프로젝트는 최소 Sphinx 버전 %s이(가) 필요하므로 현재 버전으로 빌드할 수 없습니다." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "출력 디렉토리 만드는 중" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "확장 기능 %s 설정 중:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python 객체가 아닙니다. 호출 가능한 함수가 되도록 정의를 수정하십시오.\n이것은 conf.py가 Sphinx 확장 기능으로 동작하는 데 필요합니다." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "완료" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "기본 제공 메시지를 사용할 수 없습니다" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "pickle로 저장된 환경을 불러오는 중" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "실패: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "성공" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "빌드 %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "%r 노드 클래스가 이미 등록되어 있으며, 방문자를 무시합니다" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "Dictionary 구성 설정 %r을(를) 재정의할 수 없으며, 무시합니다 (개별 요소를 설정하기 위해 %r 사용)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "숫자 %r이(가) 설정값 %r에 대해 유효하지 않으며, 무시합니다" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "지원되지 않는 유형의 구성 설정 %r을(를) 재정의 할 수 없으며, 무시합니다" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "재정의 중 알 수 없는 설정값 %r, 무시합니다" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "해당 설정값이 없습니다: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "설정값 %r이(가) 이미 존재합니다" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "구성 파일에 구문 오류가 있습니다: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "구성 파일(또는 가져온 모듈 중 하나)에서 sys.exit()을 호출했습니다" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "구성 파일에 프로그램 오류가 있습니다:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "설정값 'source_suffix'는 문자열, 문자열의 목록 또는 dictionary를 예상합니다. 그러나 `%r'이(가) 지정되었습니다." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "제 %s 절" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "그림 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "표 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "예시 %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "설정값 `{name}`은(는) {candidates} 중 하나여야 하지만, `{current}`이(가) 지정되었습니다." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, {permitted} 유형을 기대했습니다." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, 기본값은 `{default.__name__}'입니다." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r(이)가 없으므로, 무시합니다." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "작업자를 기다리는 중…" msgid "docnames to write: %s" msgstr "기록할 문서 이름: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "문서 준비 중" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "\"man_pages\" 설정값이 없으므로, 매뉴얼 페이지를 작성하지 않습니다" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "작성 중" @@ -819,16 +819,16 @@ msgstr "작성 중" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "단일 문서 조합 중" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "추가 파일 작성 중" @@ -2285,47 +2285,47 @@ msgstr "정의되지 않은 레이블: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "새로운 설정" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "설정이 변경됨" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "확장 기능이 변경됨" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "빌드 환경 버전이 최신이 아님" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "원본 디렉토리가 변경됨" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "이 환경은 선택한 빌더와 호환되지 않습니다. 다른 doctree 디렉토리를 선택하십시오." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s에서 문서를 탐색하지 못했습니다: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "%r 영역이 등록되지 않았습니다" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "자체 참조된 toctree가 발견되었습니다. 무시합니다." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "문서가 어느 toctree에도 포함되어 있지 않음" @@ -2700,42 +2700,42 @@ msgstr "인라인 LaTeX %r: %s" msgid "Permalink to this equation" msgstr "이 수식에 대한 퍼머링크" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx 인벤토리가 이동함: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s 에서 intersphinx 인벤토리 로드 중…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "일부 인벤토리에서 몇 가지 문제가 발생했지만, 동작하는 대체 인벤토리로 처리했습니다:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "다음 문제가 있어 어느 인벤토리도 도달하지 못했습니다:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s에서)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(%s에서)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 식별자 %r이(가) 문자열이 아닙니다. 무시합니다" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping[%s]을(를) 읽지 못했으며, 무시합니다: %r" @@ -2811,7 +2811,7 @@ msgstr "auto%s (%r)에 대한 잘못된 서명" msgid "error while formatting arguments for %s: %s" msgstr "%s에 대한 인수를 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "%s 속성이 %s 객체에 없음" @@ -2859,7 +2859,7 @@ msgid "" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" @@ -2869,33 +2869,33 @@ msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "%s의 별칭" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)의 별칭" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "%r에 대한 서명을 업데이트하지 못했습니다. 매개변수 msgid "Failed to parse type_comment for %r: %s" msgstr "%r에 대한 type_comment를 해석하지 못했습니다: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary가 제외된 문서 %r을(를) 참조합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: 스텁 파일 %r을(를) 찾을 수 없습니다. autosummary_generate 설정을 확인하십시오." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "캡션이 있는 자동 요약에는 :toctree: 옵션이 필요합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "autosummary: %s을(를) import 하지 못했습니다" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "이름 %s을(를) 해석하지 못함" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "번역된 메시지의 용어 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "상호 참조에 대한 대체 텍스트를 결정할 수 없습니다. 버그일 수 있습니다." -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "'any' 상호 참조 %r에 대해 둘 이상의 대상이 발견되었습니다: %s 일 수 있습니다" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:%s 참조 대상을 찾을 수 없음: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "%r 참조 대상을 찾을 수 없음: %s" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 1c4aaab590ae2e616a8ad68b0dcddcb71ecea345..989a7148eac0a841b94f9869873e2de62f4e909a 100644 GIT binary patch delta 21 ccmexk{>Oa70RavpV+8{PD?`K0Cj?Bm0bU#jIsgCw delta 21 ccmexk{>Oa70Rav}GX(\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index e9238d480ad2e85f2a21ebc2683cd71179950cb3..6737ef85a1adaadf2416e9cabd59317caa1b6146 100644 GIT binary patch delta 21 ccmcan+a diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index b34b79b689f..30ef5d85119 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index c1c661f0d36100f342fac8ae2e650daffaece00d..edf5dba03b233bf01f20c54b8303437765d43270 100644 GIT binary patch delta 21 dcmX@hf0lp4O=b=wV+8{PD?`K051HRE0{~M-2UGw6 delta 21 dcmX@hf0lp4O=b>5GX(\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index de33710fb56776bc7f612767ee090438e8327556..9aa90e34353b977263d4ab11783802ece0e8258b 100644 GIT binary patch delta 21 ccmX?TdeC%(xFCm-v4Vktm7(EgdBH`T07y^;+yDRo delta 21 ccmX?TdeC%(xFCn2nSz0Vm7&3AdBH`T07zj4-2eap diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 5695bbc8ea8..f88ef5a26d7 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 9e17cf0cb7bd642a63a29fad5115332021f2875b..c93d79979e165eadaacbccc3134a28e286378688 100644 GIT binary patch delta 21 ccmbQ~Hq&jxF#!%EV+8{PD?`K0=LEck08xtuyZ`_I delta 21 ccmbQ~Hq&jxF#!%kGX(\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index a566b8feccfb7f7513106348f480dfafa6bd314a..6120cac6e4aa5862b33a6685503a9a3fb7e57ca7 100644 GIT binary patch delta 23 ecmdlplX1^X#trT|97e_p1_oA!hMWC$auony+XoZ? delta 23 ecmdlplX1^X#trT|9EN5J1_oA!2AlnLauony><1M9 diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index e8695fa920a..a5365787c3d 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "configuratiemap bevat geen conf.py bestand (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan bronmap niet vinden (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Bron- en doelmap kunnen niet identiek zijn" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s start op" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dit project vereist tenminste Sphinx v%s, en kan daarom niet worden gebouwd met deze versie." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "aanmaken doelmap" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callable). Pas a.u.b. de definitie aan zodat het een oproepbare functie wordt. Dit is nodig voor conf.py om zich als een Sphinx extensie te gedragen." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "klaar" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "configuratiemap bevat geen conf.py bestand (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "kan dictionary-instelling %r niet overschrijven in configuratie, wordt genegeerd (gebruik %r om individuele elementen te overschrijven)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ongeldig getal %r voor configuratiewaarde %r, wordt genegeerd" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "kan instelling %r niet overschrijven met zo'n waarde van een niet-ondersteund type; wordt genegeerd" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Ongeldige configuratiewaarde: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Configuratiewaarde %r was reeds aangevoerd" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "Een fout heeft zich voorgedaan in uw configuratiebestand:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sectie %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Codefragment %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r onbekend, wordt genegeerd." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "bronmap is gewijzigd" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalink naar deze formule" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "meer dan één doel gevonden voor 'any' kruisverwijzing %r: is mogelijk %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 727411122b0321e35b1f95d62cb7f64d739acef4..97df4059ecaccf8a657fa8eb2f6dc58156d4e793 100644 GIT binary patch delta 23 ecmezTit+O+#trFC97e_p1_oA!hMV)9Sd0OAUI;n> delta 23 ecmezTit+O+#trFC9EN5J1_oA!2AlJpSd0OAZwNa8 diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 100e3ff43cc..bac6d32de73 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nie odnaleziono katalogu źródłowego (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Katalog źródłowy i katalog docelowy nie mogą być identyczne" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Uruchamianie Sphinksa v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ten projekt potrzebuje Sphinksa w wersji co najmniej %s, dlatego nie może zostać zbudowany z tą wersją." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "tworzenie katalogu wyjścia" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "podczas ustawiania rozszerzenia %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego definicję tak, aby była wywoływalną funkcją. Jest to potrzebne w conf.py, aby zachowywało się jak rozszerzenie Sphinksa." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "gotowe" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "ładowanie zapakowanego środowiska" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "udało się" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "zakończono z problemami" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nie można nadpisać słownikowego ustawienia konfiguracji %r, ignorowanie (użyj %r, by ustawić poszczególne elementy)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "niepoprawna liczba %r dla wartości konfiguracji %r, ignorowanie" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nie można nadpisać ustawienia konfiguracji %r nie wspieranym typem, ignorowanie" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Nie ma takiej wartości konfiguracyjnej: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Wartość konfiguracji %r już podana" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Plik konfiguracyjny (albo jeden z modułów przez niego zaimportowanych) wywołał sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "W twoim piku konfiguracyjnym jest błąd programowalny: \n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Rozdział %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Rys. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Wartość konfiguracyjna `{name}` musi być jednym z {candidates}, a podany jest `{current}`." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Nie odnaleziono primary_domain %r, zignorowano." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -821,16 +821,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Strona HTML jest w %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nowa konfiguracja" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "konfiguracja zmieniona" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "rozszerzenie zmienione" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "katalog źródłowy został zmieniony" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Domena %r nie jest zarejestrowana" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "brakujący atrybut %s w obiekcie %s" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "znaleziono więcej niż jeden cel dla cross-referencji „any” %r: może być %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index ad2423bd1e7cdce7c398678019559c467efa001f..1a64f47052926c810d5ca51a7c186f710fdf769b 100644 GIT binary patch delta 19 acmeyy{Ec}+2Zxcdf`NgRq2a~}X^a3xL\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index f6c88559513ddfadb5136f54649b6a23c68faec4..fe2f9b6a07bcd58ab8cd5a6b95e46167be0f77d5 100644 GIT binary patch delta 23 fcmdn_fo10hmJJyzIE;)H3=FIc4L298IN1*XdNB#d delta 23 fcmdn_fo10hmJJyzI1J4c3=FIc4K^37IN1*XdO``v diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 2e667c6aa36..76fe4d9b17d 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Não foi possível encontrar o diretório de origem (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "O diretório de saída (%s) não é um diretório" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Diretório de origem e o diretório de destino não podem ser idênticos" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Executando Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Por motivos de segurança, o modo paralelo está desabilitado no macOS e python3.8 e acima. Para mais detalhes, leia https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser compilado com esta versão." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "criando o diretório de saída" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "enquanto definia a extensão %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocável do Python. Modifique sua definição para torná-la uma função que pode ser chamada. Isso é necessário para o conf.py se comportar como uma extensão do Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "feito" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "não disponível para mensagens internas" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "carregando ambiente com pickle" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "falha: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nenhum compilador selecionado, usando padrão: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "bem-sucedida" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "finalizada com problemas" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilação %s, %s aviso. (com avisos tratados como erros)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilação %s, %s avisos (com avisos tratados como erros)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "compilação %s, %s aviso." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "compilação %s, %s avisos." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "compilação %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "classe de nodo %r já está registrada, seus visitantes serão sobrescritos" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "diretiva %r já está registrada, ela será sobrescrita" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "não foi possível sobrescrever a configuração do dicionário %r ignorando (use %r para definir elementos individuais)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número inválido %r para valor de configuração %r, ignorando" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "não é possível sobrescrever a configuração %r com tipo sem suporte, ignorando" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuração desconhecido %r na sobrescrita, ignorando" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Valor de configuração inexistente: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Valor da configuração %r já presente" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Há um erro de sintaxe em seu arquivo de configuração: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "O arquivo de configuração (ou um dos módulos que ele importa) chamou sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "Há um erro de programável em seu arquivo de configuração:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "O valor da configuração “source_suffix” espera uma string, lista de strings ou dicionário. Mas “%r” é fornecido." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Seção %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listagem %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "O valor da configuração “{name}” deve ser um entre {candidates}, mas “{current}” é fornecido." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; esperava {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; o padrão é “{default.__name__}”." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r não encontrado, ignorado." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "aguardando por workers…" msgid "docnames to write: %s" msgstr "docnames para escrever: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparando documentos" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "nenhum valor de configuração “man_pages” encontrado; nenhuma página de manual será escrita" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "escrevendo" @@ -823,16 +823,16 @@ msgstr "escrevendo" msgid "\"man_pages\" config value references unknown document %s" msgstr "o valor da configuração “man_pages” faz referência a um documento desconhecido %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "A página HTML está em %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "montando documento único" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "escrevendo arquivos adicionais" @@ -2289,47 +2289,47 @@ msgstr "rótulo não definido: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Falha ao criar uma referência cruzada. Título ou legenda não encontrado: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nova configuração" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "configuração alterada" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "extensões alteradas" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "a versão do ambiente de compilação não é a atual" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "diretório de fontes foi alterado" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este ambiente é incompatível com o compilador selecionado, por favor escolha outro diretório de doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Falha ao procurar documentos em %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "O domínio %r ainda não está registrado" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "toctree autorreferenciada encontrada. Ignorado." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "o documento não está incluído em nenhum toctree" @@ -2704,42 +2704,42 @@ msgstr "latex em linha %r: %s" msgid "Permalink to this equation" msgstr "Link permanente para essa equação" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "o inventário intersphinx foi movido: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "carregando inventário intersphinx de %s…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encontrados alguns problemas com alguns dos inventários, mas eles tem alternativas em funcionamento:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "falha ao alcançar todos os inventários com os seguintes problemas:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(em %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identificador intersphinx %r não é uma string. Ignorado" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Falha ao ler intersphinx_mapping[%s], ignorado: %r" @@ -2815,7 +2815,7 @@ msgstr "assinatura inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erro ao formatar argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "faltando atributo %s no objeto %s" @@ -2863,7 +2863,7 @@ msgid "" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" @@ -2873,33 +2873,33 @@ msgstr "Falha ao obter uma assinatura de função para %s: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "Falha ao obter uma assinatura de construtor para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "apelido de %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "apelido de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "Falha ao atualizar a assinatura para %r: parâmetro não encontrado: %s" msgid "Failed to parse type_comment for %r: %s" msgstr "Falha ao analisar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referências de autosummmary excluíram o documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: arquivo stub não encontrado %r. Verifique sua configuração autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Um autosummary com legenda requer a opção :toctree:. Ignorado." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "autosummary: falha ao importar %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "falha ao analisar o nome %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "falha ao importar o objecto %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: arquivo não encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "referências de termo inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "Não foi possível determinar o texto reserva para a referência cruzada. Pode ser um bug." -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "mais de um alvo localizado para “any” referência cruzada %r: poderia ser %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:alvo de referência %s não encontrado: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "alvo de referência %r não encontrado: %s" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 98a44d562377a757a797694a8765414204ee13e1..c3de5cd29d48008332e7c50780139b7536b6b1bb 100644 GIT binary patch delta 21 ccmbQ^Fvnp-yfBB6v4Vktm7(G0bm6T$07@4IQUCw| delta 21 ccmbQ^Fvnp-yfBBMnSz0Vm7&4rbm6T$07@tZQvd(} diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index b1b68218f18..d14e8c4543c 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 83af0d291cc0fba77d4ca6eefde9244f5301c6ab..cfc40d5b3e545517fc9a6fec9e48eff621666f85 100644 GIT binary patch delta 21 ccmX@)cF1jmgD8iQv4Vktm7(Eg57A$|08cIkwg3PC delta 21 ccmX@)cF1jmgD8ignSz0Vm7&3A57A$|08c*#w*UYD diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index a8c100b5d19..1ac40519d78 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proiectul necesită minim Sphinx v%s și de aceea nu poate fi construit cu această versiune." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabelul %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Cod %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(în %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index fba050f86bcfb64735d30390912b788657361c5f..513304027f4191ae5640f82f0466e29b1b94b042 100644 GIT binary patch delta 23 ecmX@s#CWWUaf78ihmo;@fq|8w;bup9RwV#i3I<*P delta 23 ecmX@s#CWWUaf78ihoPB*fq|8w!DdH!RwV#i8wOth diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index e0560b45918..bf72d9aeb89 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "в конфигурационной папке нет файла conf.py file (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Проект требует версию Sphinx не ниже v%s и не может быть построен текущей версией." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "готово" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "с ошибками" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "в конфигурационной папке нет файла conf.py file (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Отсутствует ключ конфигурации %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Ключ конфигурации %r уже существует" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Файл конфигурации (или один из импортированных модулей) вызвал sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "В вашем файле конфигурации программная ошибка:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Раздел %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Рис. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Таблица %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Список %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "новая конфигурация" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "конфигурация изменена" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Ссылка на это уравнение" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(в %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index ab0e3c692dfff6bf15f464f863576f9388e91bf5..e98705a3c8985e7b1f9bbc2d5561a3674c0a2c04 100644 GIT binary patch delta 21 ccmeB|>6h8CpN+%FSi!)+%FuB0aW)Tj07z~IBme*a delta 21 ccmeB|>6h8CpN+%NOu@jw%Ftl*aW)Tj07!oZB>(^b diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 927f308f980..8fa8aa0a9d3 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s හි%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index c7f85b029878ba3cbfd6d3465dfc219e917057a6..41539b5a0b370859e32c7e14a78b9d0dc1a20380 100644 GIT binary patch delta 23 fcmdlspJm&8mJOcMIE;)H3=FIc4L1i)ORWR|XekIo delta 23 fcmdlspJm&8mJOcMI1J4c3=FIc4K@c(ORWR|XgUZ) diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index fe386dca207..bfa8efb682a 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -21,135 +21,130 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nemožno nájsť zdrojový priečinok (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Výstupný adresár (%s) nie je adresár" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Zdrojový a cieľový priečinok nemôžu byť rovnaké" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Spúšťanie Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Z bezpečnostných dôvodov je paralelný režim na macOS s Python3.8 a novším vypnutý. ďalšie podrobnosti nájdete v https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Tento projekt vyžaduje aspoň Sphinx v%s a preto s touto verziou nemôže byť zostavený." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "vytváranie výstupnej zložky" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "pri nastavovaní rozšírenia %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho definíciu tak, aby to bola funkcia. Je to potrebné, aby sa conf.py mohol správať ako rozšírenie Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "hotovo" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "nedostupné pre zabudované správy" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "načítanie uloženého prostredia " -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "zostavenie %s, %s upozornenie/a." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "trieda uzla %r už je registrovaná, jej metódy (visitors) budú prepísané" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktíva %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +152,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,59 +165,64 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nemožno prepísať slovník nastavenia %r, ignorované (použite %r na nastavenie jednotlivých prvkov)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "neplatný počet %r pre konfiguračnú hodnotu %r, ignorované" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nemožno prepísať konfiguračné nastavenie %r s nepodporovaným typom, ignorované" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Neznáma konfiguračná hodnota: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Konfiguračná hodnota %r už existuje" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Vo svojom konfiguračnom súbore máte chybu: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Konfiguračný súbor (alebo jeden z modulov, ktoré importuje) volal sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,57 +230,57 @@ msgid "" "%s" msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Konfiguračná hodnota „source_suffix” očakáva reťazec, zoznam reťazcov alebo slovník, ale zadali ste „%r”." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Sekcia %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabuľka %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Konfiguračná hodnota `{name}` má byť jedno z {candidates}, ale je zadané `{current}`." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}'; očakávané {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}', predvolene `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nenájdená, ignorované." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -619,7 +619,7 @@ msgstr "čakanie na procesy…" msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "príprava dokumentov" @@ -811,7 +811,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "nebola nájdená konfiguračná voľba „man_pages”; manuálové stránky nebudú zapísané" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "zapisovanie" @@ -820,16 +820,16 @@ msgstr "zapisovanie" msgid "\"man_pages\" config value references unknown document %s" msgstr "konfiguračná voľba „man_pages” odkazuje na neznámy dokument %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Stránky HTML sú v %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "zostavovanie spoločného dokumentu" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "zapisovanie dodatočných súborov" @@ -2286,47 +2286,47 @@ msgstr "nedefinovaná menovka: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. nenájdení názov alebo titulok: %s" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "nová konfigurácia" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "zmenená konfigurácia" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "zmenené rozšírenie" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "prostredie zostavenia nie je aktuálne" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "zdrojový adresár zmenený" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Toto prostredie nie je kompatibilné zo zvoleným zostavovačom, prosím, zvoľte iný adresár doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Zlyhalo skenovanie dokumentov v %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Doména %r nie je zaregistrovaná" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "nájdený na seba odkazujúci strom obsahu. Ignorované." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokument nie je zahrnutý v žiadnom strome obsahu" @@ -2701,42 +2701,42 @@ msgstr "vnorený latex %r: %s" msgid "Permalink to this equation" msgstr "Trvalý odkaz na tento vzorec" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "inventár intersphinx bol presunutý: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "načítanie inventára intersphinx z %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "nastali problémy s niektorými inventármi, ale boli nájdené funkčné alternatívy:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "nemožno získať žiadne inventáre kvôli týmto problémom:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(v %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikátor intersphinx %rnie je raťzec, ignorované" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Zlyhalo čítanie intersphinx_mapping[%s], ignorované: %r" @@ -2812,7 +2812,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "chyba formátovania argumentov %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "chýba atribút %s objektu %s" @@ -2860,7 +2860,7 @@ msgid "" msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2870,33 +2870,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "alias pre %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias pre TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2917,43 +2917,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Autosummary s popiskom vyžaduje voľbu :toctree: , ignorované." -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "zlyhalo spracovanie mena %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "zlyhal import objektu %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: súbor nenájdený: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3429,23 +3429,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "viac ako jeden cieľ krížového odkazu %r: môže byť %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "%r cieľ odkazu nenájdený: %s" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 4b52c6c27259555d825c64ddb9478e2fa1ea919b..da5004bc2a973e55ecd4e657b71d84c242ed8015 100644 GIT binary patch delta 21 ccmeyM^+9WcIWLEiv4Vktm7(EgdtO5h08d*5>Hq)$ delta 21 ccmeyM^+9WcIWLEynSz0Vm7&3AdtO5h08eZM>i_@% diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index ceee6252e8b..fe3ae90414f 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 08e8e70f5b8..dea423c4b52 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 04:47+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,135 +17,130 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and" " above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with" " this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,60 +161,65 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called " "sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but " "`{current}` is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2301,47 +2301,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose" " another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2716,42 +2716,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had " "working alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2827,7 +2827,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2875,7 +2875,7 @@ msgid "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2885,33 +2885,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." @@ -2932,43 +2932,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does " "not contain .rst. Skipped." @@ -3446,23 +3446,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a" " bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index beb41e4e17203cf0ff463123893e3786a541d0ed..cb2bda1796ec5e3f8389d1588775142e8816c4b8 100644 GIT binary patch delta 23 fcmdn?kY(FLmJQz*au^va7#LU?8gBl-aC;vBfzk?~ delta 23 fcmdn?kY(FLmJQz*au}K^7#LU?8f^Z*aC;vBf#V9H diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 20cf95a1671..470a3e90ce7 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 16:11+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "S’gjendet dot drejtori burim (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Drejtoria e përfundimeve (%s) s’është drejtori" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Drejtoria burim dhe drejtoria vendmbërritje s’mund të jenë identike" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Po xhirohet Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "Për arsye sigurie, mënyra paralele është e çaktivizuar në macOS dhe python3.8 dhe më sipër. Për më tepër hollësi, ju lutemi, lexoni https://github.com/sphinx-doc/sphinx/issues/6803" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ky projekt lyp të paktën Sphinx v%s, ndaj s’mund të montohet me këtë version." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "po krijohet drejtori përfundimesh" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "teksa ujdiset zgjerimi %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funksion Python që mund të thirret. Ju lutemi, ndryshojeni përcaktimin e tij që ta bëni një funksion që mund të thirret. Kjo është e nevojshme që conf.py të sillet si një zgjerim Sphinx." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "u bë" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "s’është i passhëm për mesazhe të brendshëm" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "dështoi: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "S’u përzgjodh montues, po përdoret parazgjedhja: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "doli me sukses" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "u përfundua me probleme" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "montimi %s, % sinjalizim (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "montimi %s, %s sinjalizime (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "montimi %s, %s sinjalizime." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "montimi %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r e nyjeve është e regjistruar tashmë, vizitorët e saj do të anashkalohen" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "s’mund të anashkalohet rregullim formësimi fjalorthi %r, po shpërfillet (për të ujdisur elemente individuale, përdorni %r)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "numër %r i pavlefshëm për vlerë formësimi %r, po shpërfillet" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "s’mund të anashkalohet rregullim formësimi %r me një lloj të pambuluar, po shpërfillet" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "vlerë e panjohur formësimi %r te anashkalimi, po shpërfillet" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "S’ka vlerë të tillë formësimi: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ka një gabim sintakse te kartela juaj e formësimit: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Kartela e formësimit (ose një nga modulet që ajo importon) thirri sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "Ka një gabim të programueshëm te kartela juaj e formësimit:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Vlera e formësimit `source_suffix' pret një varg, një listë vargjesh, ose një fjalor. Por është dhënë `%r'." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Ndarja %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Vlera e formësimit `{name}` duhet të jetë një nga {candidates}, por është dhënë `{current}`." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}'; pritej {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}', si parazgjedhje merr `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "s’u gjet primary_domain %r, po shpërfillet." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "po pritet për workers…" msgid "docnames to write: %s" msgstr "emra dokumentesh për shkrim: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "po përgatiten dokumente" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "s’u gjet vlerë formësimi \"man_pages\"; s’do të shkruhet ndonjë faqe doracaku" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "po shkruhet" @@ -818,16 +818,16 @@ msgstr "po shkruhet" msgid "\"man_pages\" config value references unknown document %s" msgstr "vlera e formësimit \"man_pages\" i referohet një dokumenti të panjohur %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Faqja HTML gjenden në %(outdir)s." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "po montohet dokument njësh" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "po shkruhen kartela shtesë" @@ -2284,47 +2284,47 @@ msgstr "etiketë e papërcaktuar: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "formësim i ri" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "formësimi ndryshoi" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "zgjerimet u ndryshuan" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "version jo i tanishëm i mjedisit të montimit" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "drejtoria burim ka ndryshuar" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Ky mjedis është i papërputhshëm me montuesin e përzgjedhur, ju lutemi, zgjidhni një tjetër drejtori doctree." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "S’u arrit të skanohen dokumente te %s: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Përkatësia %r s’është e regjistruar" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "U gjet “toctree” që i referohet vetes. U shpërfill." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "dokumenti s’është i përfshirë në ndonjë toctree" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Permalidhje te ky ekuacion" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "inventari intersphinx është lëvizur: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "po ngarkohet inventari intersphinx prej %s…" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "u hasën disa probleme me disa nga inventare, por kishin alternativa funksionale:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "s’u arrit të kapej ndonjë inventar me problemet vijuese:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(te %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(te %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikuesi intersphinx %r s’është varg. U shpërfill" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "S’u arrit të lexohej intersphinx_mapping[%s], u shpërfill: %r" @@ -2810,7 +2810,7 @@ msgstr "nënshkrim i pavlefshëm për auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "gabim gjatë formatimi argumentesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut %s që mungon te objekt %s" @@ -2858,7 +2858,7 @@ msgid "" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" @@ -2868,33 +2868,33 @@ msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "Baza: %s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "alias për %s" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias për TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "S’u arrit të përditësohet nënshkrim për %r: s’u gjet parametër msgid "Failed to parse type_comment for %r: %s" msgstr "S’u arrit të përtypet type_comment për %r: %s" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "vetëpërmbledhje: s’u arrit të importohej %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "s’u arrit të përtypej emri %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "referenca citimi pa njëtrajtësi, te mesazhi i përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "u gjet më shumë se një objektiv për ndërreferencën 'any' %r: mund të ishte %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "s’u gjet objektiv reference %s:%s: %s" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "s’u gjet objektiv reference %r: %s" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 5c3b26072b9dc92268b0c7239d672c34c419e983..3838dab544af1124c83166a488c0152aefdb76aa 100644 GIT binary patch delta 21 ccmccab=_-&urP;_v4Vktm7(EgX<-{708Q@&(EtDd delta 21 ccmccab=_-&urP\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -20,135 +20,130 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Нема изворног директоријума (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Изворни и одредишни директоријум не могу бити једнаки" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Покрећем Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Овај пројекат захтева верзију Sphinx v%s или већу, не може се изградити инсталираном верзијом." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "готово" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "Неуспешно: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "са грешкама" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,59 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Одељак %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Сл. %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Табела %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Списак %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -618,7 +618,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "припремање докумената" @@ -810,7 +810,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -819,16 +819,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2285,47 +2285,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2700,42 +2700,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(у %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(у %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2811,7 +2811,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2869,33 +2869,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3428,23 +3428,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 86a56ef67998c075b78712a463826eea6600ae3f..15a4a7ba3e8e9941a27bda4aff28df5df84003bd 100644 GIT binary patch delta 19 acmcb}a*<_12Zxcdf`NgRq2a~}2N?lC=mt*! delta 19 acmcb}a*<_12Zy1Vf`NgRp~1!p2N?lC_y$k_ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 2ea054ec2d6..abef178a9bf 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index b5b7b6364036dfc1deb38ea8bec34908bbc721bb..e123874eb41c4252ecbdc96ac656e64caeb52874 100644 GIT binary patch delta 19 acmX@Za)xC>2Zxcdf`NgRq2a~}dl&&gDh5CR delta 19 acmX@Za)xC>2Zy1Vf`NgRp~1!pdl&&gItD=i diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 9998d53ec8f..cee55474216 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sr_RS\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index e197e746809e33383590de33ed9e21568266755f..0f3d49e11a3d0699da255f64fe2a0d93713086c0 100644 GIT binary patch delta 21 ccmdmFy2*6IPXP`iV+8{PD?`K0jDj0E0aLFAkN^Mx delta 21 ccmdmFy2*6IPXP`?GX(\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 5278bd4e978d9059c9b400507fa87ab899f46b11..9cac75796aaa8fc94e73aef1348225a7cec49999 100644 GIT binary patch delta 19 bcmey)@||VEHVz|W1p@;sL&J^xb}|A0Nj?Ve delta 19 bcmey)@||VEHV#8G1p@;sLxYX`b}|A0Nlpgv diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 66c788a95cc..e5ce8a2385e 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 93bbd34a8680fb4dcadb252a6d50f7620d234d19..0d845a30f2e2f54dbe70bf400f30a9b5c8fb47f0 100644 GIT binary patch delta 19 acmeyw{E2x&2Zxcdf`NgRq2a~}NsItQtOhUu delta 19 acmeyw{E2x&2Zy1Vf`NgRp~1!pNsItQyaq7< diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index e0975fb7245..54af518ead4 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 6cfcc591745a0d79a9fe643a768b5cd3c562faa0..141897a9e45b2fa2e3e53c95a99486e467c97f05 100644 GIT binary patch delta 23 fcmdmShIz*s<_)WBIgE@I3=FIc4L5JDZOs4xb)pGC delta 23 fcmdmShIz*s<_)WBISkDd3=FIc4K{DCZOs4xb+ZXU diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 0e0771580ef..08a42e2d565 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -22,135 +22,130 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "config dizini bir conf.py dosyası içermiyor (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kaynak dizin bulunamıyor (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "Kaynak dizin ve hedef dizin aynı olamaz" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx s%s çalışıyor" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Bu proje en az Sphinx s%s gerektirir ve bu nedenle bu sürüm ile oluşturulamaz." -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "çıktı dizini yapılıyor" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "%s uzantısı ayarlanırken:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "Şu anda conf.py dosyasında tanımlanan 'kurulum' çağrılabilir bir Python değil. Lütfen tanımını çağrılabilir bir işlev yapmak için değiştirin. Bunun, Sphinx uzantısı gibi davranması için conf.py dosyasına ihtiyacı vardır." -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "çeviriler yükleniyor [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "bitti" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "yerleşik iletiler için kullanılamaz" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "derin temizlenen ortam yükleniyor" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "başarısız olan: %s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "Seçilen oluşturucu yok, varsayılan kullanılıyor: html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "başarılı oldu" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "sorunlarla tamamlandı" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hata olarak kabul edilen uyarılarla)." -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hatalar olarak kabul edilen uyarılarla)." -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "yapım %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "düğüm sınıfı %r zaten kayıtlı, ziyaretçileri geçersiz kılınacaktır" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +153,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,59 +166,64 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "config dizini bir conf.py dosyası içermiyor (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "sözlük yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor (tek tek öğeleri ayarlamak için %r kullanın)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "geçersiz sayı %r; yapılandırma değeri %r için; yoksayılıyor" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "desteklenmeyen tür ile yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "geçersiz kılmada bilinmeyen yapılandırma değeri %r, yoksayılıyor" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "Böyle bir yapılandırma değeri yok: %s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "Yapılandırma değeri %r zaten mevcut" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Yapılandırma dosyanızda bir sözdizimi hatası var: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Yapılandırma dosyası (veya içe aktarılan modüllerden biri) sys.exit() olarak adlandırılır" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "Yapılandırma dosyanızda programlanabilir bir hata var:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "'source_suffix' yapılandırma değeri bir dizgi, dizgiler listesi ya da sözlük bekler. Ama '%r' verilir." -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "Bölüm %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "Şekil %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "Tablo %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "Listeleme %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` yapılandırma değeri, {candidates} geğerlrinden biri olmak zorundadır, ancak `{current}` değeridir." -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip; beklenen {permitted}." -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip, vassayılanları `{default.__name__}'." -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r bulunamadı, yoksayıldı." -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -620,7 +620,7 @@ msgstr "çalışanlar için bekleniyor..." msgid "docnames to write: %s" msgstr "yazmak için belge adları: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "belgeler hazırlanıyor" @@ -812,7 +812,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "hiçbir \"man_pages\" yapılandırma değeri bulunamadı; hiçbir rehber sayfası yazılmayacaktır" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "yazılıyor" @@ -821,16 +821,16 @@ msgstr "yazılıyor" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" yapılandırma değeri bilinmeyen %s belgesine başvurur" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML sayfası %(outdir)s içinde." -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "tek bir belgede toplanıyor" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "ilave dosyalar yazılıyor" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "yeni yapılandırma" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "yapılandırma değişti" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "uzantılar değişti" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "yapım ortamı sürümü şu anki değil" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "kaynak dizin değişti" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Bu ortam seçilen oluşturucuyla uyumsuzdur, lütfen başka bir belge ağacı dizini seçin." -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s içinde belgeleri tarama başarısız oldu: %r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "Etki alanı %r kayıtlı değil" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "kendinden kaynaklı toctree bulundu. Yoksayıldı." -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "belge herhangi bir toctree içine dahil değil" @@ -2702,42 +2702,42 @@ msgstr "satır içi latex %r: %s" msgid "Permalink to this equation" msgstr "Bu denklem için kalıcı bağlantı" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx envanteri taşındı: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s konumundan intersphinx envanteri yükleniyor..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "aşağıdaki sorunlardan dolayı envanterlerden herhangi birine ulaşılamadı:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s içinde)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(%s içinde)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2813,7 +2813,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2871,33 +2871,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3430,23 +3430,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 8049e0761077fd95c6a02e0e8adf23761f9107b1..da185fb8e69176ed18a679c15e29a5aab46a7756 100644 GIT binary patch delta 21 ccmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 2b6b3f27d25596b5fbe73fb3fa3ee7bf61ce8bd3..993178ec3f0e510987f8ac52945182ea26a94c86 100644 GIT binary patch delta 19 acmeys{DFBw2Zxcdf`NgRq2a~}35)\n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -18,135 +18,130 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,59 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -616,7 +616,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -808,7 +808,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -817,16 +817,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2283,47 +2283,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2698,42 +2698,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2809,7 +2809,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2867,33 +2867,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3426,23 +3426,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 228dc79187f6e04a48cad8c38fe7837e8496a605..5649456a969f0fe3d474f9f02a6e0905b525d43d 100644 GIT binary patch delta 21 dcmX@7cTR7^LS7CdV+8{PD?`K0D|wf40svFg2KN8} delta 21 dcmX@7cTR7^LS7C-GX(\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -19,135 +19,130 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,59 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -617,7 +617,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -809,7 +809,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -818,16 +818,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2284,47 +2284,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2699,42 +2699,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2868,33 +2868,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3427,23 +3427,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index e6c1a720162290d6543f58c1fbd1b43f3b03e44b..cfa9112cedde22e93a108966e222d40e95b1b7a6 100644 GIT binary patch delta 23 fcmezTk@@pS<_$+Ca~K&b7#LU?8g4!_Sv?g1h&c)U delta 23 fcmezTk@@pS<_$+Ca~PT_7#LU?8f-o@Sv?g1h)N0m diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 9df5f4dd43f..9ff70bd06c2 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-16 04:38+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -33,135 +33,130 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "配置目录中缺少 conf.py 文件 (%s)" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "无法找到源码目录 (%s)" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "源文件目录和目标目录不能是同一目录" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "正在运行 Sphinx v%s" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "该项目需要 Sphinx v%s 及以上版本,使用现有版本不能构建文档。" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "创建输出目录" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "同时设置扩展名 %s:" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对象。请把其定义改为一个可调用的函数。Sphinx 扩展的 conf.py 必须这样配置。" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "正在加载翻译 [%s]... " -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "完成" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "没有内置信息的翻译" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "加载 pickled环境" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "失败:%s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "未选择构建程序,默认使用:html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "完成但存在问题" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "构建 %s, %s 警告。" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "构建 %s,%s 警告。" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "构建 %s." -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "节点类 %r 已注册,其访问者将被覆盖" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已注册,将被覆盖" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "角色 %r 已注册,将被覆盖" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -169,12 +164,12 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "扩展 %s 不是并行读取安全的" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -182,59 +177,64 @@ msgid "" "explicit" msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "扩展 %s 不是并行写入安全的" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "执行顺序 %s" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "配置目录中缺少 conf.py 文件 (%s)" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "不能覆盖字典配置项 %r,已忽略 (请用 %r 设置单个字典元素)" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "无效的数值 %r 用于配置项 %r,已忽略" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "配置项 %r 覆盖值类型不支持,已忽略" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆盖中包含未知配置项 %r ,已忽略" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "不存在的配置项:%s" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "配置项 %r 已存在" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "配置文件中存在语法错误: %s\n" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "配置文件(或配置文件导入的模块)调用了 sys.exit()" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -242,57 +242,57 @@ msgid "" "%s" msgstr "配置文件中有程序上的错误:\n\n%s" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "配置值\"source_后缀\"需要字符串、字符串列表或字典。但给出\"%r\"。" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "节 %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "图 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "配置项 `{name}` 必须设置为 {candidates} 之一,但现在是 `{current}` 。" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "配置值\"[name]\"的类型为\"[当前._name];但\"当前\"为\"当前\"。\"当前\"为\"当前\"。\"当前\"为\"当前\"。=================================预期 [允许]。" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "配置项 `{name}' 的类型是 `{current.__name__}',默认为 `{default.__name__}'。" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "未找到 primary_domain %r,已忽略。" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -631,7 +631,7 @@ msgstr "等待工作线程……" msgid "docnames to write: %s" msgstr "写入文档:%s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "准备文件" @@ -823,7 +823,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "未找到“man_pages”配置项,不会写入手册页" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "写作" @@ -832,16 +832,16 @@ msgstr "写作" msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\"配置值引用未知文档 %s" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML 页面保存在 %(outdir)s 目录。" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "组装单一文档" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "写入其他文件" @@ -2298,47 +2298,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "新配置" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "配置有变化" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "扩展有变化" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "构建环境版本与当前环境不符" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "源文件目录已变化" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "本环境与选择的构建器不兼容,请选择其他的文档树目录。" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "在 %s 中扫描文档失败:%r" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "没有注册 %r 域" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "目录树存在自引用,已忽略。" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "文档没有加入到任何目录树中" @@ -2713,42 +2713,42 @@ msgstr "内联 LaTeX %r:%s" msgid "Permalink to this equation" msgstr "公式的永久链接" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx库存已被移动: %s -> %s" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "从中加载intersphinx库存 %s..." -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "遇到了一些库存问题,但他们有其他工作方式:" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "访问对象清单时报错:" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(在 %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "(在 %s)" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "跨 Sphinx 标识 %r 不是字符串,已忽略" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "无法读取intersphinx_mapping[%s],忽略:%r" @@ -2824,7 +2824,7 @@ msgstr "无效的 auto%s 签名(%r)" msgid "error while formatting arguments for %s: %s" msgstr "格式化 %s 参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "属性 %s 不存在,在对象 %s 上" @@ -2872,7 +2872,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2882,33 +2882,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2929,43 +2929,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary 引用了排除的文档 %r。已忽略。" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary:无法找到根文件 %r。检查你的 autosummary_generate 设置。" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "无法解析名称 %s" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "无法导入对象 %s" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate:无法找到文件 %s" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "译文中的术语引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "找到了多个目标 'any' 交叉引用的目标不唯一 %r: 可能是 %s" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index f42c9e9c21da314d186323be7fdad07654e7c7d2..b42a324bdccf26a296cbc4d57f4639e286c870cc 100644 GIT binary patch delta 21 ccmeD8@Au!}C&^)CtYBbZWoWoLOwy7M07z>E#sB~S delta 21 ccmeD8@Au!}C&^)GreI)TWoWQDOwy7M07!fV#{d8T diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 8e9681bc746..2fc0c4c1918 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-16 00:10+0000\n" +"POT-Creation-Date: 2021-05-23 00:11+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -24,135 +24,130 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:159 -#, python-format -msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" - -#: sphinx/application.py:163 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:167 +#: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:171 +#: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:202 +#: sphinx/application.py:196 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:206 +#: sphinx/application.py:200 msgid "" "For security reason, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" msgstr "" -#: sphinx/application.py:230 +#: sphinx/application.py:228 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "本專案需要 Sphinx v%s 版本以上,故無法以現版本編譯。" -#: sphinx/application.py:250 +#: sphinx/application.py:243 msgid "making output directory" msgstr "" -#: sphinx/application.py:255 sphinx/registry.py:423 +#: sphinx/application.py:248 sphinx/registry.py:423 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:261 +#: sphinx/application.py:254 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "目前在 conf.py 裡指定的 'setup' 並非一個 Python 的可呼叫物件。請修改它並使它成為一個可呼叫的函式。若要使 conf.py 以 Sphinx 擴充套件的方式運作,這個修改是必須的。" -#: sphinx/application.py:286 +#: sphinx/application.py:279 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:303 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:522 msgid "done" msgstr "完成" -#: sphinx/application.py:305 +#: sphinx/application.py:298 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:315 +#: sphinx/application.py:307 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:312 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:328 +#: sphinx/application.py:320 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:356 +#: sphinx/application.py:348 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:357 +#: sphinx/application.py:349 msgid "finished with problems" msgstr "完成問題" -#: sphinx/application.py:361 +#: sphinx/application.py:353 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:363 +#: sphinx/application.py:355 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:358 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:368 +#: sphinx/application.py:360 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:364 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:602 +#: sphinx/application.py:594 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:680 +#: sphinx/application.py:672 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:701 sphinx/application.py:722 +#: sphinx/application.py:693 sphinx/application.py:714 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1233 +#: sphinx/application.py:1225 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -160,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1237 +#: sphinx/application.py:1229 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1240 +#: sphinx/application.py:1232 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -173,59 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1244 +#: sphinx/application.py:1236 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1252 sphinx/application.py:1256 +#: sphinx/application.py:1244 sphinx/application.py:1248 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:194 +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:203 +#: sphinx/config.py:206 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:208 +#: sphinx/config.py:211 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:236 +#: sphinx/config.py:239 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:253 +#: sphinx/config.py:256 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:277 +#: sphinx/config.py:280 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:326 +#: sphinx/config.py:329 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:329 +#: sphinx/config.py:332 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:336 +#: sphinx/config.py:339 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:362 +#: sphinx/config.py:365 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:381 +#: sphinx/config.py:384 #, python-format msgid "Section %s" msgstr "段落 %s" -#: sphinx/config.py:382 +#: sphinx/config.py:385 #, python-format msgid "Fig. %s" msgstr "圖 %s" -#: sphinx/config.py:383 +#: sphinx/config.py:386 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:384 +#: sphinx/config.py:387 #, python-format msgid "Listing %s" msgstr "程式 %s" -#: sphinx/config.py:421 +#: sphinx/config.py:424 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:439 +#: sphinx/config.py:442 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:452 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:462 +#: sphinx/config.py:465 #, python-format msgid "primary_domain %r not found, ignored." msgstr "找不到 primary_domain:%r,略過。" -#: sphinx/config.py:474 +#: sphinx/config.py:477 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -622,7 +622,7 @@ msgstr "" msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:154 +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -814,7 +814,7 @@ msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" #: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 -#: sphinx/builders/singlehtml.py:162 sphinx/builders/texinfo.py:109 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 msgid "writing" msgstr "" @@ -823,16 +823,16 @@ msgstr "" msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:35 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:157 +#: sphinx/builders/singlehtml.py:156 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:175 +#: sphinx/builders/singlehtml.py:174 msgid "writing additional files" msgstr "" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:73 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:74 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:75 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:197 +#: sphinx/environment/__init__.py:202 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:199 +#: sphinx/environment/__init__.py:204 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:377 +#: sphinx/environment/__init__.py:382 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:504 +#: sphinx/environment/__init__.py:509 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:585 +#: sphinx/environment/__init__.py:590 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:627 +#: sphinx/environment/__init__.py:632 msgid "document isn't included in any toctree" msgstr "" @@ -2704,42 +2704,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "本公式的永久連結" -#: sphinx/ext/intersphinx.py:174 +#: sphinx/ext/intersphinx.py:173 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:205 +#: sphinx/ext/intersphinx.py:204 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:219 +#: sphinx/ext/intersphinx.py:218 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:225 +#: sphinx/ext/intersphinx.py:224 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:326 +#: sphinx/ext/intersphinx.py:315 #, python-format msgid "(in %s v%s)" msgstr "(於 %s v%s)" -#: sphinx/ext/intersphinx.py:328 +#: sphinx/ext/intersphinx.py:317 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:350 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:374 +#: sphinx/ext/intersphinx.py:363 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2815,7 +2815,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1668 +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2638 +#: sphinx/ext/autodoc/__init__.py:2656 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2873,33 +2873,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1651 sphinx/ext/autodoc/__init__.py:1655 +#: sphinx/ext/autodoc/__init__.py:1660 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1728 sphinx/ext/autodoc/__init__.py:1801 -#: sphinx/ext/autodoc/__init__.py:1820 +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1880 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2093 sphinx/ext/autodoc/__init__.py:2187 +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2315 +#: sphinx/ext/autodoc/__init__.py:2333 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2681 +#: sphinx/ext/autodoc/__init__.py:2699 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:260 +#: sphinx/ext/autosummary/__init__.py:273 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:262 +#: sphinx/ext/autosummary/__init__.py:275 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:281 +#: sphinx/ext/autosummary/__init__.py:294 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:328 +#: sphinx/ext/autosummary/__init__.py:341 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:355 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:347 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:737 +#: sphinx/ext/autosummary/__init__.py:750 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:745 +#: sphinx/ext/autosummary/__init__.py:758 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3432,23 +3432,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:116 +#: sphinx/transforms/post_transforms/__init__.py:117 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:156 +#: sphinx/transforms/post_transforms/__init__.py:157 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:204 +#: sphinx/transforms/post_transforms/__init__.py:205 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:207 +#: sphinx/transforms/post_transforms/__init__.py:208 #, python-format msgid "%r reference target not found: %s" msgstr "" From 7c55559028b80529574245213b57ff237e7f2a75 Mon Sep 17 00:00:00 2001 From: Ron Tapia Date: Tue, 25 May 2021 13:24:33 -0400 Subject: [PATCH 04/12] Closes #9270: pyramid theme generates incorrect logo links --- CHANGES | 1 + sphinx/themes/pyramid/layout.html | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 64410011e3a..773dd0f680e 100644 --- a/CHANGES +++ b/CHANGES @@ -59,6 +59,7 @@ Bugs fixed :confval:`man_make_section_directory` is not correct * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``) +* #9270: autodoc: pyramid theme generates incorrect logo links Testing -------- diff --git a/sphinx/themes/pyramid/layout.html b/sphinx/themes/pyramid/layout.html index 33d9bb7d127..ffa93135e19 100644 --- a/sphinx/themes/pyramid/layout.html +++ b/sphinx/themes/pyramid/layout.html @@ -9,11 +9,11 @@ {% endblock %} {% block header %} -{%- if logo %} +{%- if logo_url %} From 6a0dae08d0b4dceda4d1b88ce30cc9bd8297671a Mon Sep 17 00:00:00 2001 From: Grey Li Date: Thu, 27 May 2021 17:28:10 +0800 Subject: [PATCH 05/12] Fix typo in doc/intl.rst The pot files are in the gettext folder instead of locale folder. --- doc/usage/advanced/intl.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/usage/advanced/intl.rst b/doc/usage/advanced/intl.rst index 976b2672712..3bf353e8d72 100644 --- a/doc/usage/advanced/intl.rst +++ b/doc/usage/advanced/intl.rst @@ -118,7 +118,7 @@ section describe an easy way to translate with *sphinx-intl*. #. Translate po files. - AS noted above, these are located in the ``./locale//LC_MESSAGES`` + As noted above, these are located in the ``./locale//LC_MESSAGES`` directory. An example of one such file, from Sphinx, ``builders.po``, is given below. @@ -193,7 +193,7 @@ pot file to the po file, use the :command:`sphinx-intl update` command. .. code-block:: console - $ sphinx-intl update -p _build/locale + $ sphinx-intl update -p _build/gettext Using Transifex service for team translation From 31ec519d3808617e333794493e0aabc5fe5d4f81 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 30 May 2021 02:15:28 +0900 Subject: [PATCH 06/12] Close #9272: autodoc: Render enum values for the default argument value better --- CHANGES | 1 + sphinx/util/inspect.py | 7 +++++-- tests/test_util_inspect.py | 9 +++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 64410011e3a..8007636a8cc 100644 --- a/CHANGES +++ b/CHANGES @@ -35,6 +35,7 @@ Features added * #8061, #9218: autodoc: Support variable comment for alias classes * #3014: autodoc: Add :event:`autodoc-process-bases` to modify the base classes of the class definitions +* #9272: autodoc: Render enum values for the default argument value better * #3257: autosummary: Support instance attributes for classes * #9129: html search: Show search summaries when html_copy_source = False * #9120: html theme: Eliminate prompt characters of code-block from copyable diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index a415a7074c8..23dd9e9307f 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -442,14 +442,14 @@ def object_description(object: Any) -> str: (object_description(key), object_description(object[key])) for key in sorted_keys) return "{%s}" % ", ".join(items) - if isinstance(object, set): + elif isinstance(object, set): try: sorted_values = sorted(object) except TypeError: pass # Cannot sort set values, fall back to generic repr else: return "{%s}" % ", ".join(object_description(x) for x in sorted_values) - if isinstance(object, frozenset): + elif isinstance(object, frozenset): try: sorted_values = sorted(object) except TypeError: @@ -457,6 +457,9 @@ def object_description(object: Any) -> str: else: return "frozenset({%s})" % ", ".join(object_description(x) for x in sorted_values) + elif isinstance(object, enum.Enum): + return "%s.%s" % (object.__class__.__name__, object.name) + try: s = repr(object) except Exception as exc: diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index de4ad92366b..2f805a87a89 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -10,6 +10,7 @@ import ast import datetime +import enum import functools import sys import types @@ -516,6 +517,14 @@ def __repr__(self): assert ": 2" in description +def test_object_description_enum(): + class MyEnum(enum.Enum): + FOO = 1 + BAR = 2 + + assert inspect.object_description(MyEnum.FOO) == "MyEnum.FOO" + + def test_getslots(): class Foo: pass From 02d3e9836c509797c5e7477027011137c2931840 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 30 May 2021 02:22:45 +0900 Subject: [PATCH 07/12] Update CHANGES --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 773dd0f680e..95888aa7dc6 100644 --- a/CHANGES +++ b/CHANGES @@ -59,7 +59,7 @@ Bugs fixed :confval:`man_make_section_directory` is not correct * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``) -* #9270: autodoc: pyramid theme generates incorrect logo links +* #9270: html theme : pyramid theme generates incorrect logo links Testing -------- From 2809b30c17a8fe362910f40b91fa2c17012d3ef1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 30 May 2021 03:15:40 +0900 Subject: [PATCH 08/12] Update CHANGES for PR #9271 --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 95888aa7dc6..886f8857934 100644 --- a/CHANGES +++ b/CHANGES @@ -55,11 +55,11 @@ Bugs fixed undocumented * #9185: autodoc: typehints for overloaded functions and methods are inaccurate * #9250: autodoc: The inherited method not having docstring is wrongly parsed +* #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``) -* #9270: html theme : pyramid theme generates incorrect logo links Testing -------- From 201f61f7226c764769f1b0be4e5d1918d38ff1f2 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 30 May 2021 03:16:55 +0900 Subject: [PATCH 09/12] Fix #9280: py domain: "exceptions" module is not displayed Since v0.2, python domain gives a special treatment for the exceptions module to suppress its name on documenting exception classes. It had been worthy on python2 era. But the module has been removed since python3. Therefore, the special treatment becomes harmful for user libraries. This removes it to render module names correctly. Note: Now we've only supported python3. So this is not incompatible. --- CHANGES | 1 + sphinx/domains/python.py | 9 +++------ tests/test_domain_py.py | 16 ++-------------- 3 files changed, 6 insertions(+), 20 deletions(-) diff --git a/CHANGES b/CHANGES index 886f8857934..5727c724701 100644 --- a/CHANGES +++ b/CHANGES @@ -58,6 +58,7 @@ Bugs fixed * #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct +* #9280: py domain: "exceptions" module is not displayed * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 5035ce2ab49..7fb56c6353a 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -448,12 +448,9 @@ def handle_signature(self, sig: str, signode: desc_signature) -> Tuple[str, str] if prefix: signode += addnodes.desc_addname(prefix, prefix) - elif add_module and self.env.config.add_module_names: - if modname and modname != 'exceptions': - # exceptions are a special case, since they are documented in the - # 'exceptions' module. - nodetext = modname + '.' - signode += addnodes.desc_addname(nodetext, nodetext) + elif modname and add_module and self.env.config.add_module_names: + nodetext = modname + '.' + signode += addnodes.desc_addname(nodetext, nodetext) signode += addnodes.desc_name(name, name) if arglist: diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 52ec0c2d43c..e66f066d4d4 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -477,23 +477,11 @@ def test_optional_pyfunction_signature(app): def test_pyexception_signature(app): - text = ".. py:exception:: exceptions.IOError" - doctree = restructuredtext.parse(app, text) - assert_node(doctree, (addnodes.index, - [desc, ([desc_signature, ([desc_annotation, "exception "], - [desc_addname, "exceptions."], - [desc_name, "IOError"])], - desc_content)])) - assert_node(doctree[1], desc, desctype="exception", - domain="py", objtype="exception", noindex=False) - - -def test_exceptions_module_is_ignored(app): - text = (".. py:exception:: IOError\n" - " :module: exceptions\n") + text = ".. py:exception:: builtins.IOError" doctree = restructuredtext.parse(app, text) assert_node(doctree, (addnodes.index, [desc, ([desc_signature, ([desc_annotation, "exception "], + [desc_addname, "builtins."], [desc_name, "IOError"])], desc_content)])) assert_node(doctree[1], desc, desctype="exception", From 341f66e3a2bb1c6eb04b36ee49f18325f1b0f285 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 30 May 2021 00:22:29 +0000 Subject: [PATCH 10/12] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 83015 -> 83015 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1707 -> 1707 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70874 -> 70874 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33966 -> 33966 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101504 -> 101504 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 73182 -> 74898 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 39 ++++++++++--------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99608 -> 99608 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61290 -> 61290 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 77751 -> 77751 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82763 -> 82763 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 30067 -> 30067 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 79929 -> 79929 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69558 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78006 -> 78006 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9559 -> 9559 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58936 -> 58936 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63731 -> 63731 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 10127 -> 10127 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 2 +- 109 files changed, 74 insertions(+), 73 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 3fdfc635cb89d54ad8740c4266407a256bf87c05..45c7dbd0d896f2f2cb73f8f3b660dec1cb164789 100644 GIT binary patch delta 21 ccmZp)YqZ;-B*0;8pkQENWn{EjOW-;m06^6RyZ`_I delta 21 ccmZp)YqZ;-B*0;0tYBbZWoWorOW-;m06^abyZ`_I diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 1ee8a33c240..658c3498849 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-16 04:46+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 482cb79d85d892032fc71df2cde782260af7e56c..997bdfb808c5ff214fed3ae88dbf4faa48c8eead 100644 GIT binary patch delta 19 acmey${FQk^2ZynNf`NgRk\n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 11655a21c4e6bf7825b431b0aad6b23a3aafc099..14c74648d704422944e7ffe70ec0027b91e8652e 100644 GIT binary patch delta 21 dcmbPjKihu84qgsp0|f&ED\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 4a1362e505e1d1a561d8cc9de1937f19c11b3787..46a600ce73fa6fe188771b897b30d62b5471091f 100644 GIT binary patch delta 21 ccmbQMGgoKBVqOko0|f&ED\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index c2ac6647f34d52763c0f39038cbbd3867e3596bb..2b274ef522fce35b17a5c1ee239ab548c3cb0e92 100644 GIT binary patch delta 21 ccmaDU^ipU;DJzGufr5d7m66frTGltr08nBE&Hw-a delta 21 ccmaDU^ipU;DJzGOv4Vktm7(G0TGltr08nfO&Hw-a diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index d568d8defa0..38d565bae89 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 31ed11ca0d2199487e9cce302fbd30ccacf34e5c..81ae7dfde6b1282fded14bc523bd894d85263af3 100644 GIT binary patch delta 21 ccmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 3cd528e4cfecf96fa89d42c32c931872e2a400de..ee67befe77925849ca0d7976a0d3d8cff061a646 100644 GIT binary patch delta 21 ccmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index be15326f685ca67374d4368310d7d162102dca4a..60f92395aedfcdf9bba95daf05b38940354ffa59 100644 GIT binary patch delta 20 bcmdm)u`^?Xp#q1ofr5d7m66e6O9c@CN?Zlq delta 20 bcmdm)u`^?Xp#q1Iv4Vktm7(EcO9c@CN@fM! diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 96ccd0b9876..a3b672535fe 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 96de5b86eaa089ab4c32388bbe40bfa673d04201..61f2a61df3e8f6acd65cc6197950a4b14c787d3f 100644 GIT binary patch delta 21 dcmZ1)xioUaQYj8&0|f&ED\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 693a93ddec25e644126d77019fd2adae2d17a78b..5e41ae2cc2780c8cd935dfcdc751fba6baba9d08 100644 GIT binary patch delta 23 fcmX@!!Fs%db;Fz{4r2oa0|P4~qs>d279RuvZAu9} delta 23 fcmX@!!Fs%db;Fz{4kKd)0|P5V!_7;Y79RuvZBz+8 diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 8356f22c640..3ff1dd57339 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 79e2c83afcd5c82c1ef9726295b69210be1c3f24..d0e0dc285515948481decff4f73217e2cfa27450 100644 GIT binary patch delta 21 dcmZ3@yP9{yC1ws|0|f&ED\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 4a5c1dde264ab97dd71bbd47a1e68e69ddbb070d..2bac7e9a1503581d29f94b1e5026d1f41238a43b 100644 GIT binary patch delta 23 fcmcb$lI7M)mJNR\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 063d9909374839946d8f55ce0f82007422d2b7e5..d95c3b19f011713636f5d2861b9bbbbdda973bd8 100644 GIT binary patch delta 23 ecmZ42$+WJMX+wYyhp~Zzfq|8g(dG!BFbe=(><29X delta 23 ecmZ42$+WJMX+wYyhmo;@fq|8w;pPaRFbe=(_6IEh diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 792c4d6b354..56232aa3a4b 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index fc312628248265998c717fc3eeb9f913f5dd0b4f..6044fc31e9bf6f47333b964fd20ecb1c69fe6461 100644 GIT binary patch delta 21 ccmexw^50}bumFd#fr5d7m66frXaN;209A7aPXGV_ delta 21 ccmexw^50}bumFdVv4Vktm7(G0XaN;209AbkPXGV_ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 3d710ad61ab..756779e5cdd 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 170a68c7fdc948d21a6c52dae8166a45946f4584..de37012184a2dc2759aa78f0414c2627d632f992 100644 GIT binary patch delta 23 fcmZpe$<{EFZ9~Qi4r2oa0|P4~qs;{?1fBo@Vb%yo delta 23 fcmZpe$<{EFZ9~Qi4kKd)0|P5V!_5UN1fBo@Vc-Zy diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 680ba5d3463..434df9b6d15 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 16:47+0000\n" "Last-Translator: Hadi F \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index cde39c7e3d653f92efa995ab5f26bddc848288a7..d73e483840329e6c0f062bd8535f5ba32bee5470 100644 GIT binary patch delta 21 ccmaDL_CRdI88!}M0|f&ED\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index f520b7066791b2c40be2a71a31e178231d0e5802..024d108baa69e9a79e4e384a5c7bdad7c7f55783 100644 GIT binary patch delta 12798 zcmb8#2XvHG-pBE0Ac2t3LkTJ5p@o`2=!7mEDFLL{Niui`X1;u~}F0u+L z5oCp^w6$QAMNq7}D2kvW>bkHfDvN@?-{0J4%X`l2+4FkT&%Jk^=a&Ed-#ZEV$)T7B zUXO`oLAnK|wFRhMK@T&I2Fe1nSpN9p!eh ztbsTeRWEmZ88yI3tdCz|WBeJDFtMv;)x-{%h`q2oj>dGxx0X{#!R^=*U&aIY1=5GL zwVRpXdsv^+e^sLe$DPq9(Kz36Av~+W1%0`w6|xRy4t6>g`ZDGXyn`2ekk{ zs^7)EiN6Yu(2$0&B7Iq(A;GZH`k1|*h)Pl)D%tMCYWOI|;|@&03dgr_4)t%a4vyjo zWZ(?c*4>GNaZQB6a0(~zMr=&{k}w~&;#*NOUyf|EbuTK3Dp8?7iJH)PRK)&)>NuPD z-hidp8V{fr@F^;%Vg{Icq$hiq?%d*v3VeHCU>Uyp6@6^xHi_=bY^@JBUZ+z9hPA}Sa9 zpe~q+7=wj44HsZ69>MDP26n*ru@Mn%6+ zhz5o9l4IR5rsGbI!*L0p&q3|=DXfhbQ4_z8T4CZ?vjr_tTab;q0S7wun^4JKfGu(L zSmLh^pQfQE9>!{T0@dN4Q4u+h3h}p?fLEP*Y_6GjE!04nsP_k;LO%@k{0!8D=OI^u zwFq@zJR6}F z^(oX!yH7DU-85AF4pfpo;j~{u9q%Mo$7O5fU=PN(7E{m`JcFC@AQs?6W<%fBK`h1k zjHbO^gH`c<)Nx#oHg3Xbgs>6yiLXDTpNYNDkIA?L73oUUX?xR6{Mi=k z6b+hjmps$)9OQ4SjDK~*ACX{K9rF3H3D=;K?<5XG?Nxr1}>Got`8V&bgQ+x{R;OmYbqK?tms1^T=8Cbp0WOEiap*{iCPZ4UxccUiu z1g7I59EcwwX=SBF=9-W$Mh*M~rs8X;7eB*hcm=hRCi6^=j7NoV3MQfltK$+>1eRfU zJb=CN5{|$QUQ;i{9O{w16oyl{fZD6>^G!%gPO0kiTMsQ2AC6&Ip%;5cSs^`MD(cZ{$H)PoPrZ@q@F`<%@x!_u7!zzJcZ_^CbXHT z3EhAicsgniSD_;GC~B(?V^2JeqcLU?Kg8g8)GfLIRE(g_*4|QK`LM`YJrr;?| z#vf7r*1OF_I5L)kI=lrZ;V#Fjx0}#T!|}B5z?S$k#-dH+5-|g{@*Gq@Yp^XI#D;hd z)9@!u#iXU?ICjG(I{zLDP5B^#3h5)L2LYDGTG#w9oecj68BEh^c%t}qk2 z6$zpB7;2zDI-W)4Ld;6D@@&kcJ{lE~TW~OL$B453YYOV%d*^|qRi-`=tI_VkIP_s{ z45K<)j!F15#^4d`iO12#nAPTI!d9pVm7X z6Ynx`wSNbbNH z_#zVVh?VkySz!-UN3*d#uE1Hi2RmckGIMMOq3(+%sE9p;3iV#+^L>~|{Q@efUF*%t zTcH*(3boaXFqZMHG71`S6K3LTsEJ%gJ=kP}IoI7BC!9|#@57D?fIy^z8CA`2GlXy;dmG|;ZxWU ze?;X(&4)~++M?bYgpF|$MpW=qIOgJ5;iEWiGj}~+ewa%GleUoIJXiP#tH!UeCgyE5 zH)b&^a$y{W+i)~q!g1K|_vSm|e$+j129;Y?9wq+q6ly+dz9t)^W;_(rF&|^`PSl>R zLEQ&iP^V+J(|!=O;uB8&9M-1(57dCwA2T6uhk9=yY67DliNvQTQs4ei~OLz#i&|7wx&m&hU z{}XH(fGzral(6;yY0NKZf=2GA3c{ z&geZ7v6@m)M`N)cmZ6T(yQt8AgnjV}DrDVunT}?mJ}<#Eya%)KDXfkkV+}lqS$NSg z?P=#8z+9dGMHEKxz)@63^>>?&I-&L|53AvFREKw?a%2Ox#AnfuAEJ_U_#aFpW}x0% zhr{q8oQ-F38V-1dei+|+n1W_}5Vi7GFc*)b21?yyR@xgiz+~)?3sBGP#Ibk{JK?Ck z=I4dmP?38X+u|>%NVlmlpp9~wT7VDr{R8Fi#85>&U_2b zLv6)ktb*$?4>zK2(w{IM?dLfGE^b@wNd2LG#9tvjy3fq`UDSDR$S4gl1(l51I26ZV zB5uGIbX1NtslR!^Jbwz8Q@@1i7(Qsu{|40Y+>d4WHriNli1;_7u;P&UE%-^SP5ly1 z!(XujPWvNa##MMDc6q_9Jc63geW>@gq4s<)D&z-Hd;d8q0_|Tk$F4ipqCPG{L3=qH zmEBvh9v;OQJcR{#1{ImXFPR(}iT$Wgz+58n04idizif`_Rct`L=3#RIHACgr6ii1q zCSYV4g%k?+qV}pBTi{!$&|gNqQ1=y+jGa*JV=)tbj+=1+^`lsVH7d=IU^kU@B7Nh?h~3+5Dl|sw1e=Vx2PY*;tcmYt+QMVgmNX z>Nvt_kBp-*gNA8%5clC6418p6uJ>>h^^}iI2lG(L7Q)8388zX(I0lbnDkh&c1NXo> z)CXW5=3-~8K$19Oou?3_q3tK;H=He4Nc{txj{VP=@9&3EdwdM*WBOT>w4G5oaX-$& z=TH-D@Tqw&2YXTCy)`P-u#!sL*Ucy?7Lr0~zPdL^4qq z&;ZmP&cNYVfC~N7I03I=9_D^&>J>PidiAeNgr?y*>IYE&4ZuqH+I*`mKpmHTn2c5a zYK~1Brc-yLBD4(k`Bt2P2eA(}{>I$xH=(wq6kFlL*c=aI8$5?Cu-4xQjIuuaZ>Hm+ zsN^ZYuDA>bDW0k*~33b4Jw2wq>(Hd-qJ8%dd!%kTDlKJu)h?>xJ?1lw+BW_0J(s|Ux zu3`>0jc~ZNqN%9RhESn;06XGySb$&PZXEfY`C0EO#!w$|*&MGicr*1`s0e(B%KEhL z%>*Z*CcX+Yup9?s&Nrdr_}MW$SfR zB${1kyKoL_z=N2GmDm|iVk3W&kH4&JOO2(Bq z0H1N%zeVj?s^yBd&qC$OR!qlNFajxm1#D{QeTT&(Ry^_PE?N6iZRbkKz)7(Dgv9Z8@_=9uu7~ex+Q~9TkORq zxIWeuiLP`v4GQrGsJ*|23TGYjh<7cmV(XwZ!2;{aTa6Y({yhAB17gqou|Xz!Sd`aF!S@mAE;ydB5m zF3iSXQ47e9H=hs3y3}(c6cj2qPRETn6ECB-VqAiW$Zph%&N%g|HC@qD(-jqwd6LINLb!v^>VR489Xh3s#r<5jhu zE1La{Q5VTnROIHOBDDn-(x0$DCe%0m-iUpvPsTpD0oDJzSV!moCko8Oicd75X@UB( z>5FQg=(PJ$5m}8HxEZyw!>EXSiVFF8RFlp2kd!Z|sWxzR(l3@)uC2<|ov# z?wZ8;*NSo|)WA`w<1z``<5JARU8sgZS0ird!)6kKYq;hdlQ9iXH9B5+nHmk7{l^ zKTsSD+5u0YC*bktd$R0-cE}s@dFId-d{HPr3(c?#@M zG4K9nC;lb2KU|dO3E19X^nG_Q=$-5LI9*h9?)N~=s-8em#WN#IYDMzhetVv~q{QR5 z7kNYT>{3r)iS2U-=0>Mc;PI6B=+6@jF>bIp9LV?Bg-jxtWlt>*GfhALu!OLW$Gm<` zE9kL9^E`Her_deth3woVp?NGM;K>gMf?AT#TjUMd#f5fur%s(3@sgci>@UnJSz;#O z$(oy$Q;|I7M70`TcTmr@3RZkE>rV;wOO|;3bM0Wr9rEUzNmP{2pW84c-|h3vF7O6; z&@L$Um_>UQdxN21MXja3R<9l?F7X6HODf`5=huiZFE7Dhjd>nlG^#|mI6qwE@oSAG zX1e)4qNY#noZoz=FznCQCjFPkiaZ1$8hrH?_s=fN=C50k#;iT`Q5p?)pqRb)yNf*P zFo#v2Uw5oZBEbnUwXEWj!sw#2va-saT;Hdj-(8xucwVT;_pjDd>pRq06!3-=rBHEx zmOp=S+4c1Waa}suojT=o?p)^GV8?atWoKvSbn9HUZbM^xj5oiSh1x>{UQdC~YxnV+ zhO9!$A{H$6my`Ty&%nLRL^AJ$PQ%A;d{Ym(7+he82wUbwPc9agm1om@B8 z4w2Mlkrz@c2EMqdZp7!dOFZF_O*)nYiVMO-+IE+E@>xTWkmb+wdICWwrGs`TP`M*$ zmlpfNMPx^KvF6Wfg~k4Y%5tTK?PYZDLPjL@Cl!Z-b_q-J+-%$K@Z4zb1WfnLjK{r` zl<97h?9sRptmp|S^@b|T?Gksure}^wNI`WD2_+p0yTI)a{_9jkCtZ?ddlqNeITa^Q zgyIt1J{=97X6++Sep{#P+tUr=bS@T#J;92cFLP5e7*0uFtY!O(|MQ3tK%EW3;tuXx zS;aLmK7o~%1iY2y%xvGOny&8>h#s5eBj*0-G`)Urj-Aa76g?NbYEDV?W9RI!_y2Ja z2we1R{P!n|7?$(#zxz!7zdAKXapUnM*XH&lgVrCYd{*~mSml48CGMeOzd!68qkRQU zT(L2&{Q=KhmL2d!ce5b;&m2&k|9QYTTN~%5xrStTe)H*n9Xma{GtJed`ENh#975}V E03>^_9RL6T delta 11194 zcmYM)2XvIh`p5BE5<*CW^n@g2Lx6;yLJu7xAPF7m5(oh#AVowG@Rcs0NQek18p>6g zdX=S$q6jF8SU>?qPys1kDGCTG%K!VzyyyJy@!Zcmv%BxiJoC)##(S52;(un3zjG$S zf4Sj58!H%-h(n?k{r`Vf*EMFo$C#J#3f(p98P6U#mcw}193gp!q-s~JBrD84K+ZOOk*N38pE*; z24jxf-x*_w2V+&7jA1wjy|@g+8Q=J5=z|AQ6Zpz~!zt`Td>8ego>|7U$I+;Glj{el z0Zw29Ucy-X8{;rC+n5lnkD71`Y>N4q%=l(5jRgD;*2E8RH~x(LW6B!a2_C~r#6O@i za1oiCx#F7K#F);+y-*Wag__XYNYcy!)Ht_LTM*7HoE0<%(HMchV>I?-qcp=}RJ;zo zxC@n`Z(Yx!QhEioWp}X+R%~wH*9p^!ySqMy)rr?2dvD%vPX6`5dvvIH0$Ui9f-y*! zX^yIaNvM^tKuxF&S+v=XUi=01`QVmzE8?*laa~l+ziN&eM%g^naV zfc#_5@?R{*B<0w>?uRPUaTt!zVF0ehAl!%v=yUx73yA-RRWPrWF|~0BYU}1;CtT>z z=tARj?1r(Nl{hR!t#}4%=5vv4GtXiq?nkBm1ZqMTP#L>}X_(1AXu<!sFb~on!pAu!_ydpGuzqJKaZN&I;?;@up{n9_5XwZ z7~Y-AzrW)bUE^MfEqq!Ppg( z@Kx9Ss7(EY1Mvo?==|sB+C7?p99iR__H-+11@B=pdhVleFa_x{OHl(KNA2-B)ID;; z?Z1ayk|w0HJq0aM&n-kvN+tqcE0umg_2vCw?1i z<6&f1%Q4Ukz@~HrVP{lod!zPpkQTxACOy~#RXh$h#Er-^%?X@{>3wWwR$&V9ZmfZ)P^teHy_njU>lZtr#@mb}$1xTA z8AIFjMWtpF*1}t;lqWo3&vOoHr7JKE_qg#nRFPHcZ~J?pCNd4V49!c}48O(77(T$5 zk(hw}b^f2CF_n&!s6FjLUi|O@)bSgHUL1zm_!P$AHq_o8My>cFYR`jM9!=93HQ-v* zmTW;CUmw=T-B^|J%>^3KcpEi=P_C~}FbegcGq?zw53!lqk9xpm)C6LN+RtU7YNZ8g zz+5-ZcjJMmS{RO`-i$?OF^%0c+Uf%j+8b*gW)b@^2`^v-`VX_k8jCH6)3F+kK&^Bp z>R2v7l4+htP4o)tdDRN+?~HtGLi|<%`DYR40v#Mt({Z>hwi4`2{0>H8g%NfSV^Nvv zfz7c9wH2?RCa@h_Yzr)K*=`&RBPh-HOSs&Z{)Sc;O^A#*3(w zCO%|moQ;ZmVn-Z}+RH7d%$z~3><%hJ(PQnGSTkmQyGJ!JgE$NQu@E)j7}Uiy8?_Z%u`V9L+IR;mWAZq=@;a#J7NRCN1--Zoqjdg# zG_+TTP&4}jwc@bx_UCmi)Byca#Wx!RaV2VkYf%Fq#c=!+RTIGv+hVSVD!RU?OpSD% zg|!&pyh4NRHwSPn)}3It;xp9BJrnH%0&pO43~KKuVnci#mFiO%hkv0m6FJGg-Vn95 zL$Mw%bK||}um|Rb+mSd~S0aBvpdPphwReY57tQymbA1Qz$6k-v39iOk#A`7KKSovg zQPhMkq6Rio>=xEXW$3;s&`A9bZH3^)1vM{)S#G=@E9v}yN+XvSj$#PLu_Zcg zIvUNeC)U8HQ5o8T3HUW?BG=tG>?!-cx~K)^V=VT;C@e-5=~I}4uVH}B|Jm{eU#F;n zuA^oeIm;GX6HFy;h0NF#U?&`dP4Ep=(Vasb*Q=<7+(2!mnQa%Cg&hbVN7dLKEIeT#-fp`PM@Gh30 z|KNG{oHj;(UdYGh*c-jL7<=ODSOfn-6`yy${agP?x5v+>Gu@+uL zotDrApSj5Pcf(-f z-k63DVoRKlUfhT6@T^0l5{=Zw_Bho;O{fcMLW8j`&UWKBus`wF*aquAV>3{Um5JA* zQu~G*@4@=S2T{-Y9d)dep0%gP=}to{8iy-znQPr8HpL&h-bAIc_H+EZ0c?dz`6|>3 zx1*kO8tb9oQdW(PFbkKUPRl;5j<=DFIVPsWraA-lh9;;77h^?SfO_Dw*Z_CCuV2Iz zV!vh9TBr$jcH^O_3&_Dhd;xVj%21iuU*6CDU!@U2$8FRHf=X?*r=Vs!8S7vPw!l4@ zgSXuN%;)VE4n{qv5aV#F>vO1yZA9Iedr|K@g|UopuF}}=p>US-6^fs}z}<}FR&o@v zWEIyY@B86J``7XCm+UDyh04$+RA#PX9wx5lbNCSU!kyS1E5B@y?*LS-Ovm!S|L4(Y zNXJst4By9O{2n#HU5vyEuh?@OgTcgUsQzp$PrVxt#W4COq3(;PP?=qi`rJFH34HVl z`>%n&q+=%D!|FJ*%+7o@CJ5E;nUa{OEC)% zp;r7i_QZq@_LtN+RA!#U40Kk|(1Q+P8w}ZKk4raHYWreqoQUc8CWhk))a#cq2`g^0 z_eCmJBJPJ;z);i{k9K_lb^Hz@6LZXU8eQpVzu7)$F=i5PLhaQl48VV|GWu_^H4=t3 zi5uX<*c(-h`%szq2KBk1*X`GBI1VEoh=Xu9R%d(@^@g2sHU{!S4k~4xP{p_$wbE^< z0lvhxcpjC)ns3_g^?s;Kt;9Nb9FdFQJD0W{qdNE zyNE}j7n9$%-&*ZZ6Y7Z-a2$@n30Mn{Vi4ZJaUO2St+se4`fLW*U z!%*TnsI6;;>G;??D`=`sd(8Jb<~_ z58;2GOtUPMh`9eQyu>fHZ; zy16c+wyeT_yP_!UL)-|Ha1LsMYjFT>L)Aj)0b7)Ds5k??I{!H|8qqNXHN$6cF0RK8 zn10Z1MKRVQUWD4~w@`b05S7}`Q4hY1D$<*%=LLRb%oCW5L-9q_cz3V`p#~a&`ry-U|7o{B>~s6?1KMCmUSEjH#1VWHPvV2v z{R|e2|SVTM(E93VViWe{p zZ(?)wJ8HMA6{?1Mp~fA1lzjX~V-g*cvG5pw7~*lPhcmynzxg(y20n-Spx-yPii1!! z5R1X+#Y$M;?Qe`jh+899ig^(Wu-|ceQSESOgr_(=ZDcp^ElBd<4z6_79IKIEwJUI2dETvtP^3WE$GjwHSeapsKX;DO&@h zQG53cYJ&emy)XQGo7$RKKs*#%<6cze?qU?CpSH)cHC81ajQadIY@vE|Xf&f^H)i5* zSRYf**gL%^#t=V&e8808P&|yP<~l#v6>ma)?pMsl_#bWUgQq~Jci||K5OGe*qi<{_#kGUv%mG0;xOW~*bO_Jx2IzXRwMov zJK{|&|KI^p^B^CC42QYM$NPz*2Gn)2kb?q*zdAEcFj-|ZI6-oB-X)Y zuJ2+J@da#y{=e9*>G%uz*UCoFk&AON13$%h{2K!?`hWJPQ*~5I`=W|y4QgUOY>6jP z3yS>J4%iTtp*++DHUURs8NP}BSJ?j^G<;X=_rKp&d#nQS3Hswu87Rf(cmg%Ss@Lq6 zw8z@Sh1eb!p%(HPs^}uF+c+0hyo*s8IEWL`-{JOYP2*9FLm#H&XE+OQ;TU}EcYCw_ zh)V5MH;%huKUW(Q>2HhKI0WnBQp~_TSQ&rCZukd|K&Qh^3XR6A=*4EYYzhaUQvV35 z*k)iduERY15QDMGA2tICcpq^GEX0L43a_9R)c3Z{z)Vz;?nE--m{T+c(oyY>9dHUp z63;}Xumof90Jgad+)$=z|5sD{(yjiG6YOKlT{Eiw%k6|Fyq_x}YZ7 z9fvc%DWajG`55)a(0ld`txy^0gH3Qgw!?Q(Tk;QTC8@?!epfpF_=jpZoertV;YN zDnq~FU`(s%DZlII;1J@UP?=~GU>7n06_*A$p7P^zfDUEi4(g_ARmoHS(`yjw>hxhg zUcxHaG|;Z}KI}?dfXd8fR7Q?q5FW#DJcCW~I(jj!vZws-jV=xi4V;fkNeODkJ5XB@ z8DwYN5tE5W<78am#(!ZPakXGi`Eks~DB`x5hJ8^Pn}Ir2rKpQ)1L~KObD4%xcN;Zu zgAkk2Mc9`3CDa9V3R_`(sD1DQs7ySGn!pm&-fzHI+~@Xx>-PVS%0x(*r~JmOjx5MA zxitKFp$L`gv8bvp!}|CsDwVhKaja0qW@I|5M#@kt*?>K9JF4gcs@gpsg4()gQSU#6 z%H%mr)cN-dx7F%J4LBSd;1ZmR@1j=TKEj@oCsBL63$>!XsH^o$)baZc>!E+7r~Ei) zptfQdDnkqKM_h|PGrpM}W%p!Ew5^5B7)}3GEI@z$&plo&LRIa2)IG5id*B6}f=y#R zU|@y9X^9P_eW3}JC54oOVv34D!Rx7oBD~^g7{_B3{T)JOiJ{W z-|1x-MtlJ^@mr`Zi%YU`E>hikY;{Hip#rvT~-yw`SP~LSM|;Q@a3w$+s7sa`lft;y-MlP^O3&ie{Gep^RG&tUO_wi fM|ge, 2008 # LAURENT Raphaël , 2018-2019 # 751bad527461b9b1a5628371fac587ce_51f5b30 <748bb51e7ee5d7c2fa68b9a5e88dc8fb_87395>, 2013-2014 +# Nicolas Friedli , 2021 # Nikolaj van Omme , 2014-2015 # Olivier Bonaventure , 2019 # Pierre Grépon , 2016 @@ -31,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" -"PO-Revision-Date: 2021-05-11 13:54+0000\n" -"Last-Translator: Komiya Takeshi \n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"PO-Revision-Date: 2021-05-29 11:52+0000\n" +"Last-Translator: Nicolas Friedli \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -684,7 +685,7 @@ msgstr "" #: sphinx/builders/_epub_base.py:504 msgid "writing content.opf file..." -msgstr "" +msgstr "enregistrement du fichier content.opf..." #: sphinx/builders/_epub_base.py:530 #, python-format @@ -693,7 +694,7 @@ msgstr "mimetype inconnu pour %s, il sera ignoré" #: sphinx/builders/_epub_base.py:677 msgid "writing toc.ncx file..." -msgstr "" +msgstr "enregistrement du fichier toc.ncx" #: sphinx/builders/_epub_base.py:702 #, python-format @@ -742,7 +743,7 @@ msgstr "Le fichier ePub se trouve dans %(outdir)s ." #: sphinx/builders/epub3.py:165 msgid "writing nav.xhtml file..." -msgstr "" +msgstr "enregistrement du fichier nav.xhtml..." #: sphinx/builders/epub3.py:191 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" @@ -980,7 +981,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:810 msgid "copying static files" -msgstr "" +msgstr "copie des fichiers statiques" #: sphinx/builders/html/__init__.py:826 #, python-format @@ -1196,7 +1197,7 @@ msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "" +msgstr "Cela peut se produire avec des fichiers sources très volumineux ou profondément imbriqués. Vous pouvez augmenter avec attention la limite de récursivité par défaut de Python de 1000 dans conf.py avec p. ex. :" #: sphinx/cmd/build.py:71 msgid "Exception occurred:" @@ -2147,7 +2148,7 @@ msgstr "méthode statique" #: sphinx/domains/python.py:1098 msgid "property" -msgstr "" +msgstr "propriété" #: sphinx/domains/python.py:1156 #, python-format @@ -2280,7 +2281,7 @@ msgstr "le paramètre numfig est désactivé : le paramètre :numref: est ignor #: sphinx/domains/std.py:878 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" -msgstr "" +msgstr "Impossible de créer une référence croisée. Aucun nombre n'est attribué: %s" #: sphinx/domains/std.py:890 #, python-format @@ -2300,12 +2301,12 @@ msgstr "format de numfig_format invalide : %s" #: sphinx/domains/std.py:1120 #, python-format msgid "undefined label: %s" -msgstr "" +msgstr "lablel non défini: 1%s" #: sphinx/domains/std.py:1122 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" -msgstr "" +msgstr "Impossible de créer une référence croisée. Titre ou légende introuvable: %s" #: sphinx/environment/__init__.py:73 msgid "new config" @@ -2560,17 +2561,17 @@ msgstr "le module %s ne pas être importé : %s" #: sphinx/ext/coverage.py:255 #, python-format msgid "undocumented python function: %s :: %s" -msgstr "" +msgstr "fonction python non documentée: %s :: %s" #: sphinx/ext/coverage.py:271 #, python-format msgid "undocumented python class: %s :: %s" -msgstr "" +msgstr "classe python non documentée: %s :: %s" #: sphinx/ext/coverage.py:284 #, python-format msgid "undocumented python method: %s :: %s :: %s" -msgstr "" +msgstr "méthode python non documentée: %s :: %s :: %s" #: sphinx/ext/doctest.py:123 #, python-format @@ -2900,7 +2901,7 @@ msgstr "Bases : %s" #: sphinx/ext/autodoc/__init__.py:1838 #, python-format msgid "alias of %s" -msgstr "" +msgstr "alias de %s" #: sphinx/ext/autodoc/__init__.py:1880 #, python-format @@ -3502,7 +3503,7 @@ msgstr "échoué" #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" -msgstr "" +msgstr "nom de rôle ou de directive inconnu: %s:%s" #: sphinx/util/i18n.py:67 #, python-format @@ -3517,7 +3518,7 @@ msgstr "erreur d'écriture : %s,%s" #: sphinx/util/i18n.py:98 #, python-format msgid "locale_dir %s does not exists" -msgstr "" +msgstr "le répertoire locale_dir %s n'existe pas" #: sphinx/util/i18n.py:192 #, python-format @@ -3553,7 +3554,7 @@ msgstr "Aucun ID assigné au node %s" #: sphinx/writers/html.py:411 sphinx/writers/html5.py:362 msgid "Permalink to this term" -msgstr "" +msgstr "Lien permanent vers ce terme" #: sphinx/writers/html.py:443 sphinx/writers/html5.py:394 msgid "Permalink to this table" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 16429d952aff870b2bb84e40688933e75258da7c..0cf074189c0804e6ff1ac3e8a9991be075b52844 100644 GIT binary patch delta 21 dcmZ3YzC?Y)5iSm60|f&ED\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 58c83afe9f47c436f6dd49343f6f4af40c0867a4..c833cc1ca3268180021fcec70ee7be594b94e595 100644 GIT binary patch delta 23 ecmbQy#WtghZ9_{Zhp~Zzfq|8g(dM4cp5FjuhzRBY delta 23 ecmbQy#WtghZ9_{Zhmo;@fq|8w;pU#sp5Fjuk_hGi diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 503379d6603..f3368b8e0ac 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 8ff7d7a0daf23629ad7aeaef7860bbcfdfdd716c..6f09689d1777948c1244ff8ed04d386c9ba9f655 100644 GIT binary patch delta 19 acmey*{GWM32ZynNf`NgRk\n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index c1f5218b9a80a62e688a62c2cb95f448ac1008d3..524dc012ba0dd416e70f304bc30df414f97dad04 100644 GIT binary patch delta 23 ecmaFX&iJgIaf7Y~hp~Zzfq|8g(PmSPjnV*OFb78f delta 23 ecmaFX&iJgIaf7Y~hmo;@fq|8w;bv2fjnV*OItNDp diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 1d982b4a70d..eaad67dc740 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index d8e9e64a1392675b57b9419d55b6272a9596d625..7a047dc733b5f2936878835a08f3cab18c7e9a26 100644 GIT binary patch delta 21 ccmewt{V#gMekl%P0|f&ED\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 41c2796de8d62c2d6f40ab7a3258f76926d1d13a..8d373af8594472fad8cba3eec12b638ac811d7b2 100644 GIT binary patch delta 23 ecmaELkNMR-<_&V~9L5F;1_o9}Mw`{zT`~Z64hVq& delta 23 ecmaELkNMR-<_&V~97e_p1_oA!hMU#eT`~Z67zlv? diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 355629290f5..1214badf227 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 09f9610c4d053f893d25464aa9dfbb060d6cac5c..1591f14cd5c7553b924ad1a546a704c0450b490f 100644 GIT binary patch delta 21 ccmaFq|I&Yhy99@^fr5d7m66eAe~DTA09KX;%m4rY delta 21 ccmaFq|I&Yhy99@kv4Vktm7(Ege~DTA09K#|%m4rY diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index c872a73bbf5..f6125cb0e70 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 9c5e46e904d07664d33ca8271ea089b891f561f7..0f82b3b022afd9d018aba12a7321bf8340ad171d 100644 GIT binary patch delta 23 fcmdmfpJn@fmJNR\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index ba3297efad389eba92faa1fd4e12f36ef82ff6d6..4c136546b7605a70d5494ad6f80d90c8b46a4665 100644 GIT binary patch delta 23 fcmX@z#(KJqb;Gn39L5F;1_o9}Mw{oYSUU>\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 989a7148eac0a841b94f9869873e2de62f4e909a..263db0082c1afc5bfa8c3de16b2379d49ce8211a 100644 GIT binary patch delta 21 ccmexk{>Oa70RawU0|f&EDOa70RavpV+8{PD?`K0Cj?Bm0bU#jIsgCw diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 1e4e394b307..a9a3880c490 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 6737ef85a1adaadf2416e9cabd59317caa1b6146..0f920f99b2c99e3a0846b2f1e6df55425c1154a2 100644 GIT binary patch delta 21 ccmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index edf5dba03b233bf01f20c54b8303437765d43270..e12a24d1a72c2958ac1598a5609180f1cb3ef45b 100644 GIT binary patch delta 21 dcmX@hf0lp4O=b>b0|f&ED\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 9aa90e34353b977263d4ab11783802ece0e8258b..5c6b769cf585cafb434a85676714a335d5a6d5ad 100644 GIT binary patch delta 21 ccmX?TdeC%(xFCnIfr5d7m66eAdBH`T07ym!+yDRo delta 21 ccmX?TdeC%(xFCm-v4Vktm7(EgdBH`T07y^;+yDRo diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index f88ef5a26d7..997aa2d8365 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index c93d79979e165eadaacbccc3134a28e286378688..2322fb3c8b9322118a8403c6076b447b4a5d821b 100644 GIT binary patch delta 21 ccmbQ~Hq&jxF#!%^0|f&ED\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 6120cac6e4aa5862b33a6685503a9a3fb7e57ca7..45267a63037d9bba730e35248089f9d0e6c21c6f 100644 GIT binary patch delta 23 ecmdlplX1^X#trT|9L5F;1_o9}Mw|V0auony(FYU& delta 23 ecmdlplX1^X#trT|97e_p1_oA!hMWC$auony+XoZ? diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index a5365787c3d..38f8544edd7 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 97df4059ecaccf8a657fa8eb2f6dc58156d4e793..96889e64b7c6b19b1f6a029dd1c37e9040d43905 100644 GIT binary patch delta 23 ecmezTit+O+#trFC9L5F;1_o9}Mw|1USd0OAR0ui% delta 23 ecmezTit+O+#trFC97e_p1_oA!hMV)9Sd0OAUI;n> diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index bac6d32de73..ddc76d9fe44 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 1a64f47052926c810d5ca51a7c186f710fdf769b..1dc865960bd2644537aa05e874b8c9cc5c60e122 100644 GIT binary patch delta 19 acmeyy{Ec}+2ZynNf`NgRk\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index fe2f9b6a07bcd58ab8cd5a6b95e46167be0f77d5..1df9de286317edf51b7b83c43d89afe5a914d0e5 100644 GIT binary patch delta 23 fcmdn_fo10hmJJyzIE)Px3=FJ{j5ZgnIN1*XdM63T delta 23 fcmdn_fo10hmJJyzIE;)H3=FIc4L298IN1*XdNB#d diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 76fe4d9b17d..d4b1a7a8a8d 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index c3de5cd29d48008332e7c50780139b7536b6b1bb..6dca5d54a5e3f979c60fdac9fa6f29e54130e40b 100644 GIT binary patch delta 21 ccmbQ^Fvnp-yfBBcfr5d7m66frbm6T$07?x8QUCw| delta 21 ccmbQ^Fvnp-yfBB6v4Vktm7(G0bm6T$07@4IQUCw| diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index d14e8c4543c..29789689248 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index cfc40d5b3e545517fc9a6fec9e48eff621666f85..b5cb42063abd3584ac148d30e167c404edcf5c3f 100644 GIT binary patch delta 21 ccmX@)cF1jmgD8iwfr5d7m66eA57A$|08b\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 513304027f4191ae5640f82f0466e29b1b94b042..a4cc81cd0822a0939fb20d98515253c244d16619 100644 GIT binary patch delta 23 ecmX@s#CWWUaf78ihp~Zzfq|8g(Pl?^RwV#i00v$F delta 23 ecmX@s#CWWUaf78ihmo;@fq|8w;bup9RwV#i3I<*P diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index bf72d9aeb89..d161221158b 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index e98705a3c8985e7b1f9bbc2d5561a3674c0a2c04..90a511730a8b8e1dd9cee66156be4702d0e67bdb 100644 GIT binary patch delta 21 ccmeB|>6h8CpN+%VK*7Mk%E)N*aW)Tj07zs8Bme*a delta 21 ccmeB|>6h8CpN+%FSi!)+%FuB0aW)Tj07z~IBme*a diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 8fa8aa0a9d3..ced19e4fddf 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 41539b5a0b370859e32c7e14a78b9d0dc1a20380..0d74f315953e5d71ea3a3aa18b1f5b528aea82b7 100644 GIT binary patch delta 23 fcmdlspJm&8mJOcMIE)Px3=FJ{j5Y^OORWR|Xdehe delta 23 fcmdlspJm&8mJOcMIE;)H3=FIc4L1i)ORWR|XekIo diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index bfa8efb682a..5e22a66f881 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index da5004bc2a973e55ecd4e657b71d84c242ed8015..b8a24138d941596418afd3f1a03271aa80690ef2 100644 GIT binary patch delta 21 ccmeyM^+9WcIWLE?fr5d7m66eAdtO5h08dc`>Hq)$ delta 21 ccmeyM^+9WcIWLEiv4Vktm7(EgdtO5h08d*5>Hq)$ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index fe3ae90414f..7c1d9df3030 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index dea423c4b52..2c5b9cf1067 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index cb2bda1796ec5e3f8389d1588775142e8816c4b8..3f3c38679cff1181668b6f848a2ca2361a40fd4e 100644 GIT binary patch delta 23 fcmdn?kY(FLmJQz*au^#Z7#LU?8EyW*aC;vBfyfG= delta 23 fcmdn?kY(FLmJQz*au^va7#LU?8gBl-aC;vBfzk?~ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 470a3e90ce7..cd596f005f7 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 16:11+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 3838dab544af1124c83166a488c0152aefdb76aa..888f2432ee438b863fbf15c47307cd4294faba36 100644 GIT binary patch delta 21 ccmccab=_-&urP\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 15a4a7ba3e8e9941a27bda4aff28df5df84003bd..9045d1e23fd1c8920ffec26b4f03f6b5be09d130 100644 GIT binary patch delta 19 acmcb}a*<_12ZynNf`NgRk\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index e123874eb41c4252ecbdc96ac656e64caeb52874..785186ef4fd2e971bcbab39d701873887f86d674 100644 GIT binary patch delta 19 acmX@Za)xC>2ZynNf`NgRk2Zxcdf`NgRq2a~}dl&&gDh5CR diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index cee55474216..8104561bc1c 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 0f3d49e11a3d0699da255f64fe2a0d93713086c0..b1f0faeec1a862664d1dfe42bab2b68593caf65a 100644 GIT binary patch delta 21 ccmdmFy2*6IPXP{N0|f&ED\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 9cac75796aaa8fc94e73aef1348225a7cec49999..7113d210c135e9333303fbeaaba5230640dfec0f 100644 GIT binary patch delta 19 bcmey)@||VEHV$J01p@;sBcqM`b}|A0Ni+uU delta 19 bcmey)@||VEHVz|W1p@;sL&J^xb}|A0Nj?Ve diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index e5ce8a2385e..d71e6e14238 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 0d845a30f2e2f54dbe70bf400f30a9b5c8fb47f0..a0ed5ce4304f3b70b8d91215b787586f8cd9564f 100644 GIT binary patch delta 19 acmeyw{E2x&2ZynNf`NgRk\n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 141897a9e45b2fa2e3e53c95a99486e467c97f05..3b6d10942d31545ea2b46bb7ee804240951df5fb 100644 GIT binary patch delta 23 fcmdmShIz*s<_)WBIgAYy3=FJ{j5cqsZOs4xb(jf2 delta 23 fcmdmShIz*s<_)WBIgE@I3=FIc4L5JDZOs4xb)pGC diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 08a42e2d565..9c0e87ba5b2 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index da185fb8e69176ed18a679c15e29a5aab46a7756..be25d2a86b3d0a969d964c4727297e5cb73db3d4 100644 GIT binary patch delta 21 ccmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 993178ec3f0e510987f8ac52945182ea26a94c86..db84d4ae470f4de04e48a3521aad53ab1ddb9c43 100644 GIT binary patch delta 19 acmeys{DFBw2ZynNf`NgRk\n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 5649456a969f0fe3d474f9f02a6e0905b525d43d..1669ddefd4de9c7cd4fbab08c8cc0938326a1965 100644 GIT binary patch delta 21 dcmX@7cTR7^LS7DI0|f&ED\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index cfa9112cedde22e93a108966e222d40e95b1b7a6..59077901f8327c845711b5cdcdeff7fe99af4d9a 100644 GIT binary patch delta 23 fcmezTk@@pS<_$+Ca~K;a7#LU?8Erl@Sv?g1h%X8K delta 23 fcmezTk@@pS<_$+Ca~K&b7#LU?8g4!_Sv?g1h&c)U diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 9ff70bd06c2..fd4a55fd5ad 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-16 04:38+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index b42a324bdccf26a296cbc4d57f4639e286c870cc..383a1ca56ce39c1c4dffa55e8e36c8ce5716e10c 100644 GIT binary patch delta 21 ccmeD8@Au!}C&^)KpkQENWn{EDOwy7M07zj4#sB~S delta 21 ccmeD8@Au!}C&^)CtYBbZWoWoLOwy7M07z>E#sB~S diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 2fc0c4c1918..a079348b204 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-23 00:11+0000\n" +"POT-Creation-Date: 2021-05-30 00:22+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" From 46c2e45aa69da739dee89a97c21f20253d1f61cc Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 22 May 2021 02:16:23 +0900 Subject: [PATCH 11/12] deprecate sphinx.ext.autosummary._app --- CHANGES | 1 + doc/extdev/deprecated.rst | 5 +++++ sphinx/ext/autosummary/__init__.py | 13 +++++++++---- sphinx/util/compat.py | 7 +++++-- 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 6dbfe0ca3e2..879ae64ebdb 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,7 @@ Deprecated * The ``app`` argument of ``sphinx.environment.BuildEnvironment`` becomes required * ``sphinx.application.Sphinx.html_theme`` +* ``sphinx.ext.autosummary._app`` * ``sphinx.util.docstrings.extract_metadata()`` Features added diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index f04b738ded9..c35b0525b1c 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -32,6 +32,11 @@ The following is a list of deprecated interfaces. - 6.0 - ``sphinx.registry.SphinxComponentRegistry.html_themes`` + * - ``sphinx.ext.autosummary._app`` + - 4.1 + - 6.0 + - N/A + * - ``sphinx.util.docstrings.extract_metadata()`` - 4.1 - 6.0 diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 32f11baffdd..3d51beaa54e 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -72,7 +72,8 @@ from sphinx import addnodes from sphinx.application import Sphinx from sphinx.config import Config -from sphinx.deprecation import RemovedInSphinx50Warning +from sphinx.deprecation import (RemovedInSphinx50Warning, RemovedInSphinx60Warning, + deprecated_alias) from sphinx.environment import BuildEnvironment from sphinx.environment.adapters.toctree import TocTree from sphinx.ext.autodoc import INSTANCEATTR, Documenter @@ -165,9 +166,13 @@ def autosummary_table_visit_html(self: HTMLTranslator, node: autosummary_table) # -- autodoc integration ------------------------------------------------------- - -# current application object (used in `get_documenter()`). -_app: Sphinx = None +deprecated_alias('sphinx.ext.autosummary', + { + '_app': None, + }, + RemovedInSphinx60Warning, + { + }) class FakeApplication: diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 9be80358eb8..73ca5bc2700 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -25,11 +25,14 @@ def register_application_for_autosummary(app: "Sphinx") -> None: """ if 'sphinx.ext.autosummary' in sys.modules: from sphinx.ext import autosummary - autosummary._app = app + if hasattr(autosummary, '_objects'): + autosummary._objects['_app'] = app # type: ignore + else: + autosummary._app = app # type: ignore def setup(app: "Sphinx") -> Dict[str, Any]: - app.connect('builder-inited', register_application_for_autosummary) + app.connect('builder-inited', register_application_for_autosummary, priority=100) return { 'version': 'builtin', From 009c608b6b8a3b5352fcf86f51a839b5f4d94e7a Mon Sep 17 00:00:00 2001 From: Rohit Bohara Date: Tue, 1 Jun 2021 13:21:36 +0200 Subject: [PATCH 12/12] Add asvin in EXAMPLES add asvin in documentation using sphinx_rtd_theme list --- EXAMPLES | 1 + 1 file changed, 1 insertion(+) diff --git a/EXAMPLES b/EXAMPLES index 843435b1d3c..2942739b546 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -170,6 +170,7 @@ Documentation using sphinx_rtd_theme * `Arcade `__ * `aria2 `__ * `ASE `__ +* `asvin `__ * `Autofac `__ * `BigchainDB `__ * `Blender Reference Manual `__