Sphinx 7.3.7__py3-none-any.whl → 7.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of Sphinx might be problematic. Click here for more details.

Files changed (357) hide show
  1. sphinx/__init__.py +5 -6
  2. sphinx/_cli/__init__.py +296 -0
  3. sphinx/_cli/util/__init__.py +0 -0
  4. sphinx/_cli/util/colour.py +103 -0
  5. sphinx/_cli/util/errors.py +165 -0
  6. sphinx/application.py +78 -43
  7. sphinx/builders/__init__.py +59 -15
  8. sphinx/builders/_epub_base.py +11 -5
  9. sphinx/builders/changes.py +2 -2
  10. sphinx/builders/epub3.py +2 -2
  11. sphinx/builders/gettext.py +10 -10
  12. sphinx/builders/html/__init__.py +56 -54
  13. sphinx/builders/latex/__init__.py +5 -5
  14. sphinx/builders/latex/constants.py +5 -0
  15. sphinx/builders/linkcheck.py +73 -38
  16. sphinx/builders/texinfo.py +1 -1
  17. sphinx/cmd/build.py +1 -1
  18. sphinx/cmd/quickstart.py +11 -11
  19. sphinx/config.py +57 -38
  20. sphinx/directives/__init__.py +7 -9
  21. sphinx/directives/code.py +12 -15
  22. sphinx/directives/other.py +12 -15
  23. sphinx/directives/patches.py +26 -0
  24. sphinx/domains/__init__.py +1 -1
  25. sphinx/domains/c/__init__.py +5 -5
  26. sphinx/domains/c/_ast.py +436 -12
  27. sphinx/domains/c/_symbol.py +89 -134
  28. sphinx/domains/changeset.py +3 -4
  29. sphinx/domains/cpp/__init__.py +5 -6
  30. sphinx/domains/cpp/_ast.py +822 -25
  31. sphinx/domains/cpp/_symbol.py +3 -0
  32. sphinx/domains/javascript.py +3 -6
  33. sphinx/domains/math.py +3 -2
  34. sphinx/domains/python/__init__.py +44 -6
  35. sphinx/domains/python/_object.py +7 -5
  36. sphinx/domains/rst.py +2 -2
  37. sphinx/domains/std/__init__.py +95 -14
  38. sphinx/environment/__init__.py +35 -15
  39. sphinx/environment/adapters/indexentries.py +71 -24
  40. sphinx/environment/adapters/toctree.py +1 -1
  41. sphinx/environment/collectors/__init__.py +18 -4
  42. sphinx/environment/collectors/asset.py +4 -4
  43. sphinx/environment/collectors/toctree.py +27 -14
  44. sphinx/events.py +7 -6
  45. sphinx/ext/apidoc.py +377 -170
  46. sphinx/ext/autodoc/__init__.py +13 -13
  47. sphinx/ext/autodoc/directive.py +10 -13
  48. sphinx/ext/autodoc/mock.py +10 -7
  49. sphinx/ext/autodoc/preserve_defaults.py +1 -1
  50. sphinx/ext/autodoc/typehints.py +2 -2
  51. sphinx/ext/autosummary/__init__.py +15 -9
  52. sphinx/ext/autosummary/generate.py +270 -154
  53. sphinx/ext/coverage.py +108 -18
  54. sphinx/ext/duration.py +10 -3
  55. sphinx/ext/extlinks.py +3 -2
  56. sphinx/ext/graphviz.py +3 -3
  57. sphinx/ext/ifconfig.py +1 -2
  58. sphinx/ext/imgconverter.py +1 -0
  59. sphinx/ext/imgmath.py +7 -6
  60. sphinx/ext/inheritance_diagram.py +3 -3
  61. sphinx/ext/intersphinx/__init__.py +81 -0
  62. sphinx/ext/intersphinx/__main__.py +10 -0
  63. sphinx/ext/intersphinx/_cli.py +44 -0
  64. sphinx/ext/intersphinx/_load.py +253 -0
  65. sphinx/ext/{intersphinx.py → intersphinx/_resolve.py} +17 -368
  66. sphinx/ext/intersphinx/_shared.py +53 -0
  67. sphinx/ext/mathjax.py +1 -1
  68. sphinx/ext/todo.py +2 -2
  69. sphinx/io.py +2 -6
  70. sphinx/locale/__init__.py +1 -5
  71. sphinx/locale/ar/LC_MESSAGES/sphinx.js +1 -1
  72. sphinx/locale/ar/LC_MESSAGES/sphinx.mo +0 -0
  73. sphinx/locale/ar/LC_MESSAGES/sphinx.po +678 -471
  74. sphinx/locale/bg/LC_MESSAGES/sphinx.js +1 -1
  75. sphinx/locale/bg/LC_MESSAGES/sphinx.mo +0 -0
  76. sphinx/locale/bg/LC_MESSAGES/sphinx.po +684 -476
  77. sphinx/locale/bn/LC_MESSAGES/sphinx.js +1 -1
  78. sphinx/locale/bn/LC_MESSAGES/sphinx.mo +0 -0
  79. sphinx/locale/bn/LC_MESSAGES/sphinx.po +679 -472
  80. sphinx/locale/ca/LC_MESSAGES/sphinx.js +1 -1
  81. sphinx/locale/ca/LC_MESSAGES/sphinx.mo +0 -0
  82. sphinx/locale/ca/LC_MESSAGES/sphinx.po +681 -474
  83. sphinx/locale/cak/LC_MESSAGES/sphinx.js +1 -1
  84. sphinx/locale/cak/LC_MESSAGES/sphinx.mo +0 -0
  85. sphinx/locale/cak/LC_MESSAGES/sphinx.po +678 -471
  86. sphinx/locale/cs/LC_MESSAGES/sphinx.js +1 -1
  87. sphinx/locale/cs/LC_MESSAGES/sphinx.mo +0 -0
  88. sphinx/locale/cs/LC_MESSAGES/sphinx.po +679 -472
  89. sphinx/locale/cy/LC_MESSAGES/sphinx.js +1 -1
  90. sphinx/locale/cy/LC_MESSAGES/sphinx.mo +0 -0
  91. sphinx/locale/cy/LC_MESSAGES/sphinx.po +679 -472
  92. sphinx/locale/da/LC_MESSAGES/sphinx.js +1 -1
  93. sphinx/locale/da/LC_MESSAGES/sphinx.mo +0 -0
  94. sphinx/locale/da/LC_MESSAGES/sphinx.po +679 -472
  95. sphinx/locale/de/LC_MESSAGES/sphinx.js +1 -1
  96. sphinx/locale/de/LC_MESSAGES/sphinx.mo +0 -0
  97. sphinx/locale/de/LC_MESSAGES/sphinx.po +679 -472
  98. sphinx/locale/de_DE/LC_MESSAGES/sphinx.js +1 -1
  99. sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo +0 -0
  100. sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +678 -471
  101. sphinx/locale/el/LC_MESSAGES/sphinx.js +1 -1
  102. sphinx/locale/el/LC_MESSAGES/sphinx.mo +0 -0
  103. sphinx/locale/el/LC_MESSAGES/sphinx.po +701 -494
  104. sphinx/locale/en_DE/LC_MESSAGES/sphinx.js +1 -1
  105. sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo +0 -0
  106. sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +700 -493
  107. sphinx/locale/en_FR/LC_MESSAGES/sphinx.js +1 -1
  108. sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +0 -0
  109. sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +700 -493
  110. sphinx/locale/en_GB/LC_MESSAGES/sphinx.js +1 -1
  111. sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +0 -0
  112. sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +701 -494
  113. sphinx/locale/en_HK/LC_MESSAGES/sphinx.js +1 -1
  114. sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +0 -0
  115. sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +700 -493
  116. sphinx/locale/eo/LC_MESSAGES/sphinx.js +1 -1
  117. sphinx/locale/eo/LC_MESSAGES/sphinx.mo +0 -0
  118. sphinx/locale/eo/LC_MESSAGES/sphinx.po +701 -494
  119. sphinx/locale/es/LC_MESSAGES/sphinx.js +1 -1
  120. sphinx/locale/es/LC_MESSAGES/sphinx.mo +0 -0
  121. sphinx/locale/es/LC_MESSAGES/sphinx.po +701 -494
  122. sphinx/locale/es_CO/LC_MESSAGES/sphinx.js +1 -1
  123. sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo +0 -0
  124. sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +700 -493
  125. sphinx/locale/et/LC_MESSAGES/sphinx.js +1 -1
  126. sphinx/locale/et/LC_MESSAGES/sphinx.mo +0 -0
  127. sphinx/locale/et/LC_MESSAGES/sphinx.po +701 -494
  128. sphinx/locale/eu/LC_MESSAGES/sphinx.js +1 -1
  129. sphinx/locale/eu/LC_MESSAGES/sphinx.mo +0 -0
  130. sphinx/locale/eu/LC_MESSAGES/sphinx.po +701 -494
  131. sphinx/locale/fa/LC_MESSAGES/sphinx.js +1 -1
  132. sphinx/locale/fa/LC_MESSAGES/sphinx.mo +0 -0
  133. sphinx/locale/fa/LC_MESSAGES/sphinx.po +701 -494
  134. sphinx/locale/fi/LC_MESSAGES/sphinx.js +1 -1
  135. sphinx/locale/fi/LC_MESSAGES/sphinx.mo +0 -0
  136. sphinx/locale/fi/LC_MESSAGES/sphinx.po +700 -493
  137. sphinx/locale/fr/LC_MESSAGES/sphinx.js +1 -1
  138. sphinx/locale/fr/LC_MESSAGES/sphinx.mo +0 -0
  139. sphinx/locale/fr/LC_MESSAGES/sphinx.po +725 -518
  140. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js +1 -1
  141. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +0 -0
  142. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +700 -493
  143. sphinx/locale/gl/LC_MESSAGES/sphinx.js +1 -1
  144. sphinx/locale/gl/LC_MESSAGES/sphinx.mo +0 -0
  145. sphinx/locale/gl/LC_MESSAGES/sphinx.po +701 -494
  146. sphinx/locale/he/LC_MESSAGES/sphinx.js +1 -1
  147. sphinx/locale/he/LC_MESSAGES/sphinx.mo +0 -0
  148. sphinx/locale/he/LC_MESSAGES/sphinx.po +700 -493
  149. sphinx/locale/hi/LC_MESSAGES/sphinx.js +1 -1
  150. sphinx/locale/hi/LC_MESSAGES/sphinx.mo +0 -0
  151. sphinx/locale/hi/LC_MESSAGES/sphinx.po +701 -494
  152. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js +1 -1
  153. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +0 -0
  154. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +700 -493
  155. sphinx/locale/hr/LC_MESSAGES/sphinx.js +1 -1
  156. sphinx/locale/hr/LC_MESSAGES/sphinx.mo +0 -0
  157. sphinx/locale/hr/LC_MESSAGES/sphinx.po +701 -494
  158. sphinx/locale/hu/LC_MESSAGES/sphinx.js +1 -1
  159. sphinx/locale/hu/LC_MESSAGES/sphinx.mo +0 -0
  160. sphinx/locale/hu/LC_MESSAGES/sphinx.po +701 -494
  161. sphinx/locale/id/LC_MESSAGES/sphinx.js +1 -1
  162. sphinx/locale/id/LC_MESSAGES/sphinx.mo +0 -0
  163. sphinx/locale/id/LC_MESSAGES/sphinx.po +701 -494
  164. sphinx/locale/is/LC_MESSAGES/sphinx.js +1 -1
  165. sphinx/locale/is/LC_MESSAGES/sphinx.mo +0 -0
  166. sphinx/locale/is/LC_MESSAGES/sphinx.po +700 -493
  167. sphinx/locale/it/LC_MESSAGES/sphinx.js +1 -1
  168. sphinx/locale/it/LC_MESSAGES/sphinx.mo +0 -0
  169. sphinx/locale/it/LC_MESSAGES/sphinx.po +708 -500
  170. sphinx/locale/ja/LC_MESSAGES/sphinx.js +1 -1
  171. sphinx/locale/ja/LC_MESSAGES/sphinx.mo +0 -0
  172. sphinx/locale/ja/LC_MESSAGES/sphinx.po +701 -494
  173. sphinx/locale/ka/LC_MESSAGES/sphinx.js +1 -1
  174. sphinx/locale/ka/LC_MESSAGES/sphinx.mo +0 -0
  175. sphinx/locale/ka/LC_MESSAGES/sphinx.po +700 -493
  176. sphinx/locale/ko/LC_MESSAGES/sphinx.js +1 -1
  177. sphinx/locale/ko/LC_MESSAGES/sphinx.mo +0 -0
  178. sphinx/locale/ko/LC_MESSAGES/sphinx.po +701 -494
  179. sphinx/locale/lt/LC_MESSAGES/sphinx.js +1 -1
  180. sphinx/locale/lt/LC_MESSAGES/sphinx.mo +0 -0
  181. sphinx/locale/lt/LC_MESSAGES/sphinx.po +701 -494
  182. sphinx/locale/lv/LC_MESSAGES/sphinx.js +1 -1
  183. sphinx/locale/lv/LC_MESSAGES/sphinx.mo +0 -0
  184. sphinx/locale/lv/LC_MESSAGES/sphinx.po +701 -494
  185. sphinx/locale/mk/LC_MESSAGES/sphinx.js +1 -1
  186. sphinx/locale/mk/LC_MESSAGES/sphinx.mo +0 -0
  187. sphinx/locale/mk/LC_MESSAGES/sphinx.po +700 -493
  188. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +1 -1
  189. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +0 -0
  190. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +701 -494
  191. sphinx/locale/ne/LC_MESSAGES/sphinx.js +1 -1
  192. sphinx/locale/ne/LC_MESSAGES/sphinx.mo +0 -0
  193. sphinx/locale/ne/LC_MESSAGES/sphinx.po +701 -494
  194. sphinx/locale/nl/LC_MESSAGES/sphinx.js +1 -1
  195. sphinx/locale/nl/LC_MESSAGES/sphinx.mo +0 -0
  196. sphinx/locale/nl/LC_MESSAGES/sphinx.po +701 -494
  197. sphinx/locale/pl/LC_MESSAGES/sphinx.js +1 -1
  198. sphinx/locale/pl/LC_MESSAGES/sphinx.mo +0 -0
  199. sphinx/locale/pl/LC_MESSAGES/sphinx.po +701 -494
  200. sphinx/locale/pt/LC_MESSAGES/sphinx.js +1 -1
  201. sphinx/locale/pt/LC_MESSAGES/sphinx.mo +0 -0
  202. sphinx/locale/pt/LC_MESSAGES/sphinx.po +700 -493
  203. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +1 -1
  204. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +0 -0
  205. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +705 -498
  206. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js +1 -1
  207. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +0 -0
  208. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +701 -494
  209. sphinx/locale/ro/LC_MESSAGES/sphinx.js +1 -1
  210. sphinx/locale/ro/LC_MESSAGES/sphinx.mo +0 -0
  211. sphinx/locale/ro/LC_MESSAGES/sphinx.po +701 -494
  212. sphinx/locale/ru/LC_MESSAGES/sphinx.js +1 -1
  213. sphinx/locale/ru/LC_MESSAGES/sphinx.mo +0 -0
  214. sphinx/locale/ru/LC_MESSAGES/sphinx.po +890 -680
  215. sphinx/locale/si/LC_MESSAGES/sphinx.js +1 -1
  216. sphinx/locale/si/LC_MESSAGES/sphinx.mo +0 -0
  217. sphinx/locale/si/LC_MESSAGES/sphinx.po +700 -493
  218. sphinx/locale/sk/LC_MESSAGES/sphinx.js +1 -1
  219. sphinx/locale/sk/LC_MESSAGES/sphinx.mo +0 -0
  220. sphinx/locale/sk/LC_MESSAGES/sphinx.po +701 -494
  221. sphinx/locale/sl/LC_MESSAGES/sphinx.js +1 -1
  222. sphinx/locale/sl/LC_MESSAGES/sphinx.mo +0 -0
  223. sphinx/locale/sl/LC_MESSAGES/sphinx.po +701 -494
  224. sphinx/locale/sphinx.pot +702 -494
  225. sphinx/locale/sq/LC_MESSAGES/sphinx.js +1 -1
  226. sphinx/locale/sq/LC_MESSAGES/sphinx.mo +0 -0
  227. sphinx/locale/sq/LC_MESSAGES/sphinx.po +704 -497
  228. sphinx/locale/sr/LC_MESSAGES/sphinx.js +1 -1
  229. sphinx/locale/sr/LC_MESSAGES/sphinx.mo +0 -0
  230. sphinx/locale/sr/LC_MESSAGES/sphinx.po +700 -493
  231. sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo +0 -0
  232. sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo +0 -0
  233. sphinx/locale/sv/LC_MESSAGES/sphinx.js +1 -1
  234. sphinx/locale/sv/LC_MESSAGES/sphinx.mo +0 -0
  235. sphinx/locale/sv/LC_MESSAGES/sphinx.po +701 -494
  236. sphinx/locale/ta/LC_MESSAGES/sphinx.po +1016 -808
  237. sphinx/locale/te/LC_MESSAGES/sphinx.js +1 -1
  238. sphinx/locale/te/LC_MESSAGES/sphinx.mo +0 -0
  239. sphinx/locale/te/LC_MESSAGES/sphinx.po +700 -493
  240. sphinx/locale/tr/LC_MESSAGES/sphinx.js +1 -1
  241. sphinx/locale/tr/LC_MESSAGES/sphinx.mo +0 -0
  242. sphinx/locale/tr/LC_MESSAGES/sphinx.po +701 -494
  243. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js +1 -1
  244. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +0 -0
  245. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +701 -494
  246. sphinx/locale/ur/LC_MESSAGES/sphinx.js +1 -1
  247. sphinx/locale/ur/LC_MESSAGES/sphinx.mo +0 -0
  248. sphinx/locale/ur/LC_MESSAGES/sphinx.po +700 -493
  249. sphinx/locale/vi/LC_MESSAGES/sphinx.js +1 -1
  250. sphinx/locale/vi/LC_MESSAGES/sphinx.mo +0 -0
  251. sphinx/locale/vi/LC_MESSAGES/sphinx.po +701 -494
  252. sphinx/locale/yue/LC_MESSAGES/sphinx.js +1 -1
  253. sphinx/locale/yue/LC_MESSAGES/sphinx.mo +0 -0
  254. sphinx/locale/yue/LC_MESSAGES/sphinx.po +700 -493
  255. sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +704 -496
  256. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js +1 -1
  257. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +0 -0
  258. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +700 -493
  259. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +1 -1
  260. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +0 -0
  261. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +729 -522
  262. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js +1 -1
  263. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +0 -0
  264. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +700 -493
  265. sphinx/roles.py +1 -1
  266. sphinx/search/__init__.py +17 -9
  267. sphinx/templates/quickstart/{root_doc.rst_t → root_doc.rst.jinja} +7 -10
  268. sphinx/testing/fixtures.py +22 -20
  269. sphinx/testing/path.py +6 -2
  270. sphinx/testing/util.py +8 -13
  271. sphinx/texinputs/sphinx.sty +449 -332
  272. sphinx/texinputs/sphinxlatexadmonitions.sty +209 -66
  273. sphinx/texinputs/sphinxlatexliterals.sty +9 -16
  274. sphinx/texinputs/sphinxlatexstyletext.sty +4 -38
  275. sphinx/texinputs/sphinxlatextables.sty +6 -14
  276. sphinx/texinputs/sphinxpackageboxes.sty +15 -42
  277. sphinx/texinputs/sphinxpackagefootnote.sty +4 -3
  278. sphinx/themes/agogo/layout.html +3 -3
  279. sphinx/themes/basic/genindex-single.html +2 -1
  280. sphinx/themes/basic/layout.html +3 -6
  281. sphinx/themes/basic/static/searchtools.js +4 -3
  282. sphinx/themes/haiku/layout.html +4 -4
  283. sphinx/themes/pyramid/layout.html +1 -1
  284. sphinx/themes/scrolls/layout.html +2 -2
  285. sphinx/theming.py +3 -3
  286. sphinx/transforms/__init__.py +34 -20
  287. sphinx/transforms/i18n.py +8 -7
  288. sphinx/transforms/post_transforms/__init__.py +1 -1
  289. sphinx/transforms/post_transforms/images.py +7 -10
  290. sphinx/util/_pathlib.py +2 -2
  291. sphinx/util/cfamily.py +52 -30
  292. sphinx/util/console.py +1 -1
  293. sphinx/util/display.py +16 -11
  294. sphinx/util/docutils.py +88 -40
  295. sphinx/util/fileutil.py +15 -3
  296. sphinx/util/images.py +1 -0
  297. sphinx/util/inspect.py +66 -22
  298. sphinx/util/inventory.py +15 -0
  299. sphinx/util/logging.py +14 -21
  300. sphinx/util/math.py +3 -1
  301. sphinx/util/nodes.py +9 -12
  302. sphinx/util/osutil.py +5 -5
  303. sphinx/util/parsing.py +93 -0
  304. sphinx/util/tags.py +71 -47
  305. sphinx/util/typing.py +261 -143
  306. sphinx/versioning.py +17 -17
  307. sphinx/writers/html5.py +26 -19
  308. sphinx/writers/latex.py +58 -28
  309. sphinx/writers/manpage.py +4 -3
  310. sphinx/writers/texinfo.py +19 -14
  311. {sphinx-7.3.7.dist-info → sphinx-7.4.0.dist-info}/METADATA +21 -20
  312. sphinx-7.4.0.dist-info/RECORD +591 -0
  313. sphinx-7.3.7.dist-info/RECORD +0 -581
  314. /sphinx/templates/apidoc/{module.rst_t → module.rst.jinja} +0 -0
  315. /sphinx/templates/apidoc/{package.rst_t → package.rst.jinja} +0 -0
  316. /sphinx/templates/apidoc/{toc.rst_t → toc.rst.jinja} +0 -0
  317. /sphinx/templates/epub3/{content.opf_t → content.opf.jinja} +0 -0
  318. /sphinx/templates/epub3/{nav.xhtml_t → nav.xhtml.jinja} +0 -0
  319. /sphinx/templates/epub3/{toc.ncx_t → toc.ncx.jinja} +0 -0
  320. /sphinx/templates/gettext/{message.pot_t → message.pot.jinja} +0 -0
  321. /sphinx/templates/imgmath/{preview.tex_t → preview.tex.jinja} +0 -0
  322. /sphinx/templates/imgmath/{template.tex_t → template.tex.jinja} +0 -0
  323. /sphinx/templates/latex/{latex.tex_t → latex.tex.jinja} +0 -0
  324. /sphinx/templates/latex/{longtable.tex_t → longtable.tex.jinja} +0 -0
  325. /sphinx/templates/latex/{sphinxmessages.sty_t → sphinxmessages.sty.jinja} +0 -0
  326. /sphinx/templates/latex/{tabular.tex_t → tabular.tex.jinja} +0 -0
  327. /sphinx/templates/latex/{tabulary.tex_t → tabulary.tex.jinja} +0 -0
  328. /sphinx/templates/quickstart/{Makefile_t → Makefile.jinja} +0 -0
  329. /sphinx/templates/quickstart/{Makefile.new_t → Makefile.new.jinja} +0 -0
  330. /sphinx/templates/quickstart/{conf.py_t → conf.py.jinja} +0 -0
  331. /sphinx/templates/quickstart/{make.bat_t → make.bat.jinja} +0 -0
  332. /sphinx/templates/quickstart/{make.bat.new_t → make.bat.new.jinja} +0 -0
  333. /sphinx/texinputs/{Makefile_t → Makefile.jinja} +0 -0
  334. /sphinx/texinputs/{latexmkjarc_t → latexmkjarc.jinja} +0 -0
  335. /sphinx/texinputs/{latexmkrc_t → latexmkrc.jinja} +0 -0
  336. /sphinx/texinputs/{make.bat_t → make.bat.jinja} +0 -0
  337. /sphinx/texinputs_win/{Makefile_t → Makefile.jinja} +0 -0
  338. /sphinx/themes/agogo/static/{agogo.css_t → agogo.css.jinja} +0 -0
  339. /sphinx/themes/basic/static/{basic.css_t → basic.css.jinja} +0 -0
  340. /sphinx/themes/basic/static/{documentation_options.js_t → documentation_options.js.jinja} +0 -0
  341. /sphinx/themes/basic/static/{language_data.js_t → language_data.js.jinja} +0 -0
  342. /sphinx/themes/bizstyle/static/{bizstyle.css_t → bizstyle.css.jinja} +0 -0
  343. /sphinx/themes/bizstyle/static/{bizstyle.js_t → bizstyle.js.jinja} +0 -0
  344. /sphinx/themes/classic/static/{classic.css_t → classic.css.jinja} +0 -0
  345. /sphinx/themes/classic/static/{sidebar.js_t → sidebar.js.jinja} +0 -0
  346. /sphinx/themes/epub/static/{epub.css_t → epub.css.jinja} +0 -0
  347. /sphinx/themes/haiku/static/{haiku.css_t → haiku.css.jinja} +0 -0
  348. /sphinx/themes/nature/static/{nature.css_t → nature.css.jinja} +0 -0
  349. /sphinx/themes/nonav/static/{nonav.css_t → nonav.css.jinja} +0 -0
  350. /sphinx/themes/pyramid/static/{epub.css_t → epub.css.jinja} +0 -0
  351. /sphinx/themes/pyramid/static/{pyramid.css_t → pyramid.css.jinja} +0 -0
  352. /sphinx/themes/scrolls/static/{scrolls.css_t → scrolls.css.jinja} +0 -0
  353. /sphinx/themes/sphinxdoc/static/{sphinxdoc.css_t → sphinxdoc.css.jinja} +0 -0
  354. /sphinx/themes/traditional/static/{traditional.css_t → traditional.css.jinja} +0 -0
  355. {sphinx-7.3.7.dist-info → sphinx-7.4.0.dist-info}/LICENSE.rst +0 -0
  356. {sphinx-7.3.7.dist-info → sphinx-7.4.0.dist-info}/WHEEL +0 -0
  357. {sphinx-7.3.7.dist-info → sphinx-7.4.0.dist-info}/entry_points.txt +0 -0
@@ -3,138 +3,139 @@
3
3
  # This file is distributed under the same license as the Sphinx project.
4
4
  #
5
5
  # Translators:
6
+ # Nikolay Stoykov <developing@mandarb.eu>, 2024
6
7
  msgid ""
7
8
  msgstr ""
8
9
  "Project-Id-Version: Sphinx\n"
9
10
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
- "POT-Creation-Date: 2024-04-14 23:27+0000\n"
11
+ "POT-Creation-Date: 2024-07-14 04:28+0000\n"
11
12
  "PO-Revision-Date: 2013-04-02 08:44+0000\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Last-Translator: Nikolay Stoykov <developing@mandarb.eu>, 2024\n"
13
14
  "Language-Team: Bulgarian (http://app.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n"
14
15
  "MIME-Version: 1.0\n"
15
16
  "Content-Type: text/plain; charset=UTF-8\n"
16
17
  "Content-Transfer-Encoding: 8bit\n"
17
- "Generated-By: Babel 2.14.0\n"
18
+ "Generated-By: Babel 2.15.0\n"
18
19
  "Language: bg\n"
19
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
21
 
21
- #: sphinx/application.py:157
22
+ #: sphinx/application.py:179
22
23
  #, python-format
23
24
  msgid "Cannot find source directory (%s)"
24
- msgstr ""
25
+ msgstr "Не може да се намери изходна директория (%s)"
25
26
 
26
- #: sphinx/application.py:161
27
+ #: sphinx/application.py:183
27
28
  #, python-format
28
29
  msgid "Output directory (%s) is not a directory"
29
- msgstr ""
30
+ msgstr "Изходната директория (%s) не е директория"
30
31
 
31
- #: sphinx/application.py:165
32
+ #: sphinx/application.py:187
32
33
  msgid "Source directory and destination directory cannot be identical"
33
- msgstr ""
34
+ msgstr "Изходната директория и целевата директория не могат да бъдат идентични"
34
35
 
35
- #: sphinx/application.py:197
36
+ #: sphinx/application.py:219
36
37
  #, python-format
37
38
  msgid "Running Sphinx v%s"
38
39
  msgstr ""
39
40
 
40
- #: sphinx/application.py:219
41
+ #: sphinx/application.py:241
41
42
  #, python-format
42
43
  msgid ""
43
44
  "This project needs at least Sphinx v%s and therefore cannot be built with "
44
45
  "this version."
45
46
  msgstr ""
46
47
 
47
- #: sphinx/application.py:235
48
+ #: sphinx/application.py:257
48
49
  msgid "making output directory"
49
- msgstr ""
50
+ msgstr "създаване на изходна директория"
50
51
 
51
- #: sphinx/application.py:240 sphinx/registry.py:450
52
+ #: sphinx/application.py:262 sphinx/registry.py:450
52
53
  #, python-format
53
54
  msgid "while setting up extension %s:"
54
55
  msgstr ""
55
56
 
56
- #: sphinx/application.py:246
57
+ #: sphinx/application.py:268
57
58
  msgid ""
58
59
  "'setup' as currently defined in conf.py isn't a Python callable. Please "
59
60
  "modify its definition to make it a callable function. This is needed for "
60
61
  "conf.py to behave as a Sphinx extension."
61
62
  msgstr ""
62
63
 
63
- #: sphinx/application.py:277
64
+ #: sphinx/application.py:303
64
65
  #, python-format
65
66
  msgid "loading translations [%s]... "
66
67
  msgstr ""
67
68
 
68
- #: sphinx/application.py:294 sphinx/util/display.py:85
69
+ #: sphinx/application.py:320 sphinx/util/display.py:87
69
70
  msgid "done"
70
71
  msgstr ""
71
72
 
72
- #: sphinx/application.py:296
73
+ #: sphinx/application.py:322
73
74
  msgid "not available for built-in messages"
74
75
  msgstr ""
75
76
 
76
- #: sphinx/application.py:310
77
+ #: sphinx/application.py:336
77
78
  msgid "loading pickled environment"
78
79
  msgstr ""
79
80
 
80
- #: sphinx/application.py:318
81
+ #: sphinx/application.py:344
81
82
  #, python-format
82
83
  msgid "failed: %s"
83
84
  msgstr ""
84
85
 
85
- #: sphinx/application.py:332
86
+ #: sphinx/application.py:357
86
87
  msgid "No builder selected, using default: html"
87
88
  msgstr ""
88
89
 
89
- #: sphinx/application.py:365
90
+ #: sphinx/application.py:390
90
91
  msgid "succeeded"
91
92
  msgstr ""
92
93
 
93
- #: sphinx/application.py:366
94
+ #: sphinx/application.py:391
94
95
  msgid "finished with problems"
95
96
  msgstr ""
96
97
 
97
- #: sphinx/application.py:370
98
+ #: sphinx/application.py:395
98
99
  #, python-format
99
100
  msgid "build %s, %s warning (with warnings treated as errors)."
100
101
  msgstr ""
101
102
 
102
- #: sphinx/application.py:372
103
+ #: sphinx/application.py:397
103
104
  #, python-format
104
105
  msgid "build %s, %s warnings (with warnings treated as errors)."
105
106
  msgstr ""
106
107
 
107
- #: sphinx/application.py:375
108
+ #: sphinx/application.py:400
108
109
  #, python-format
109
110
  msgid "build %s, %s warning."
110
111
  msgstr ""
111
112
 
112
- #: sphinx/application.py:377
113
+ #: sphinx/application.py:402
113
114
  #, python-format
114
115
  msgid "build %s, %s warnings."
115
116
  msgstr ""
116
117
 
117
- #: sphinx/application.py:381
118
+ #: sphinx/application.py:406
118
119
  #, python-format
119
120
  msgid "build %s."
120
121
  msgstr ""
121
122
 
122
- #: sphinx/application.py:610
123
+ #: sphinx/application.py:641
123
124
  #, python-format
124
125
  msgid "node class %r is already registered, its visitors will be overridden"
125
126
  msgstr ""
126
127
 
127
- #: sphinx/application.py:689
128
+ #: sphinx/application.py:720
128
129
  #, python-format
129
130
  msgid "directive %r is already registered, it will be overridden"
130
131
  msgstr ""
131
132
 
132
- #: sphinx/application.py:711 sphinx/application.py:733
133
+ #: sphinx/application.py:742 sphinx/application.py:764
133
134
  #, python-format
134
135
  msgid "role %r is already registered, it will be overridden"
135
136
  msgstr ""
136
137
 
137
- #: sphinx/application.py:1282
138
+ #: sphinx/application.py:1313
138
139
  #, python-format
139
140
  msgid ""
140
141
  "the %s extension does not declare if it is safe for parallel reading, "
@@ -142,12 +143,12 @@ msgid ""
142
143
  "explicit"
143
144
  msgstr ""
144
145
 
145
- #: sphinx/application.py:1286
146
+ #: sphinx/application.py:1317
146
147
  #, python-format
147
148
  msgid "the %s extension is not safe for parallel reading"
148
149
  msgstr ""
149
150
 
150
- #: sphinx/application.py:1289
151
+ #: sphinx/application.py:1320
151
152
  #, python-format
152
153
  msgid ""
153
154
  "the %s extension does not declare if it is safe for parallel writing, "
@@ -155,75 +156,77 @@ msgid ""
155
156
  "explicit"
156
157
  msgstr ""
157
158
 
158
- #: sphinx/application.py:1293
159
+ #: sphinx/application.py:1324
159
160
  #, python-format
160
161
  msgid "the %s extension is not safe for parallel writing"
161
162
  msgstr ""
162
163
 
163
- #: sphinx/application.py:1301 sphinx/application.py:1305
164
+ #: sphinx/application.py:1332 sphinx/application.py:1336
164
165
  #, python-format
165
166
  msgid "doing serial %s"
166
167
  msgstr ""
167
168
 
168
- #: sphinx/config.py:309
169
+ #: sphinx/config.py:314
169
170
  #, python-format
170
171
  msgid "config directory doesn't contain a conf.py file (%s)"
171
172
  msgstr ""
172
173
 
173
- #: sphinx/config.py:318
174
+ #: sphinx/config.py:323
174
175
  msgid ""
175
176
  "Invalid configuration value found: 'language = None'. Update your "
176
177
  "configuration to a valid language code. Falling back to 'en' (English)."
177
178
  msgstr ""
178
179
 
179
- #: sphinx/config.py:341
180
+ #: sphinx/config.py:346
180
181
  #, python-format
181
182
  msgid ""
182
183
  "cannot override dictionary config setting %r, ignoring (use %r to set "
183
184
  "individual elements)"
184
185
  msgstr ""
185
186
 
186
- #: sphinx/config.py:350
187
+ #: sphinx/config.py:355
187
188
  #, python-format
188
189
  msgid "invalid number %r for config value %r, ignoring"
189
190
  msgstr ""
190
191
 
191
- #: sphinx/config.py:355
192
+ #: sphinx/config.py:361
192
193
  #, python-format
193
194
  msgid "cannot override config setting %r with unsupported type, ignoring"
194
195
  msgstr ""
195
196
 
196
- #: sphinx/config.py:378
197
+ #: sphinx/config.py:382
197
198
  #, python-format
198
199
  msgid "unknown config value %r in override, ignoring"
199
200
  msgstr ""
200
201
 
201
- #: sphinx/config.py:418
202
+ #: sphinx/config.py:435
202
203
  #, python-format
203
204
  msgid "No such config value: %r"
204
205
  msgstr ""
205
206
 
206
- #: sphinx/config.py:440
207
+ #: sphinx/config.py:458
207
208
  #, python-format
208
209
  msgid "Config value %r already present"
209
210
  msgstr ""
210
211
 
211
- #: sphinx/config.py:473
212
+ #: sphinx/config.py:494
212
213
  #, python-format
213
- msgid "cannot cache unpickable configuration value: %r"
214
+ msgid ""
215
+ "cannot cache unpickable configuration value: %r (because it contains a "
216
+ "function, class, or module object)"
214
217
  msgstr ""
215
218
 
216
- #: sphinx/config.py:509
219
+ #: sphinx/config.py:531
217
220
  #, python-format
218
221
  msgid "There is a syntax error in your configuration file: %s\n"
219
222
  msgstr ""
220
223
 
221
- #: sphinx/config.py:512
224
+ #: sphinx/config.py:534
222
225
  msgid ""
223
226
  "The configuration file (or one of the modules it imports) called sys.exit()"
224
227
  msgstr ""
225
228
 
226
- #: sphinx/config.py:519
229
+ #: sphinx/config.py:541
227
230
  #, python-format
228
231
  msgid ""
229
232
  "There is a programmable error in your configuration file:\n"
@@ -231,62 +234,62 @@ msgid ""
231
234
  "%s"
232
235
  msgstr ""
233
236
 
234
- #: sphinx/config.py:540
237
+ #: sphinx/config.py:564
235
238
  #, python-format
236
239
  msgid "Failed to convert %r to a set or tuple"
237
240
  msgstr ""
238
241
 
239
- #: sphinx/config.py:565
242
+ #: sphinx/config.py:589
240
243
  #, python-format
241
244
  msgid ""
242
245
  "The config value `source_suffix' expects a string, list of strings, or "
243
246
  "dictionary. But `%r' is given."
244
247
  msgstr ""
245
248
 
246
- #: sphinx/config.py:585
249
+ #: sphinx/config.py:608
247
250
  #, python-format
248
251
  msgid "Section %s"
249
252
  msgstr ""
250
253
 
251
- #: sphinx/config.py:586
254
+ #: sphinx/config.py:609
252
255
  #, python-format
253
256
  msgid "Fig. %s"
254
257
  msgstr ""
255
258
 
256
- #: sphinx/config.py:587
259
+ #: sphinx/config.py:610
257
260
  #, python-format
258
261
  msgid "Table %s"
259
262
  msgstr ""
260
263
 
261
- #: sphinx/config.py:588
264
+ #: sphinx/config.py:611
262
265
  #, python-format
263
266
  msgid "Listing %s"
264
267
  msgstr ""
265
268
 
266
- #: sphinx/config.py:663
269
+ #: sphinx/config.py:686
267
270
  msgid ""
268
271
  "The config value `{name}` has to be a one of {candidates}, but `{current}` "
269
272
  "is given."
270
273
  msgstr ""
271
274
 
272
- #: sphinx/config.py:687
275
+ #: sphinx/config.py:710
273
276
  msgid ""
274
277
  "The config value `{name}' has type `{current.__name__}'; expected "
275
278
  "{permitted}."
276
279
  msgstr ""
277
280
 
278
- #: sphinx/config.py:700
281
+ #: sphinx/config.py:723
279
282
  msgid ""
280
283
  "The config value `{name}' has type `{current.__name__}', defaults to "
281
284
  "`{default.__name__}'."
282
285
  msgstr ""
283
286
 
284
- #: sphinx/config.py:711
287
+ #: sphinx/config.py:734
285
288
  #, python-format
286
289
  msgid "primary_domain %r not found, ignored."
287
290
  msgstr ""
288
291
 
289
- #: sphinx/config.py:723
292
+ #: sphinx/config.py:746
290
293
  msgid ""
291
294
  "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add "
292
295
  "\"root_doc = 'contents'\" to your conf.py."
@@ -487,190 +490,342 @@ msgstr ""
487
490
  msgid "invalid RFC number %s"
488
491
  msgstr ""
489
492
 
490
- #: sphinx/theming.py:125
493
+ #: sphinx/theming.py:128
494
+ #, python-format
495
+ msgid ""
496
+ "Theme configuration sections other than [theme] and [options] are not "
497
+ "supported, returning the default value instead (tried to get a value from "
498
+ "%r)"
499
+ msgstr ""
500
+
501
+ #: sphinx/theming.py:136
491
502
  #, python-format
492
503
  msgid "setting %s.%s occurs in none of the searched theme configs"
493
504
  msgstr ""
494
505
 
495
- #: sphinx/theming.py:140
506
+ #: sphinx/theming.py:151
496
507
  #, python-format
497
508
  msgid "unsupported theme option %r given"
498
509
  msgstr ""
499
510
 
500
- #: sphinx/theming.py:206
511
+ #: sphinx/theming.py:224
501
512
  #, python-format
502
513
  msgid "file %r on theme path is not a valid zipfile or contains no theme"
503
514
  msgstr ""
504
515
 
505
- #: sphinx/theming.py:226
516
+ #: sphinx/theming.py:245
506
517
  #, python-format
507
518
  msgid "no theme named %r found (missing theme.toml?)"
508
519
  msgstr ""
509
520
 
510
- #: sphinx/theming.py:259
521
+ #: sphinx/theming.py:285
511
522
  #, python-format
512
523
  msgid "The %r theme has circular inheritance"
513
524
  msgstr ""
514
525
 
515
- #: sphinx/theming.py:262
526
+ #: sphinx/theming.py:292
516
527
  #, python-format
517
528
  msgid ""
518
529
  "The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
519
530
  "are: %s"
520
531
  msgstr ""
521
532
 
522
- #: sphinx/theming.py:269
533
+ #: sphinx/theming.py:299
523
534
  #, python-format
524
535
  msgid "The %r theme has too many ancestors"
525
536
  msgstr ""
526
537
 
527
- #: sphinx/theming.py:295
538
+ #: sphinx/theming.py:325
528
539
  #, python-format
529
540
  msgid "no theme configuration file found in %r"
530
541
  msgstr ""
531
542
 
532
- #: sphinx/theming.py:323 sphinx/theming.py:374
543
+ #: sphinx/theming.py:353 sphinx/theming.py:404
533
544
  #, python-format
534
545
  msgid "theme %r doesn't have the \"theme\" table"
535
546
  msgstr ""
536
547
 
537
- #: sphinx/theming.py:327
548
+ #: sphinx/theming.py:357
538
549
  #, python-format
539
550
  msgid "The %r theme \"[theme]\" table is not a table"
540
551
  msgstr ""
541
552
 
542
- #: sphinx/theming.py:331 sphinx/theming.py:377
553
+ #: sphinx/theming.py:361 sphinx/theming.py:407
543
554
  #, python-format
544
555
  msgid "The %r theme must define the \"theme.inherit\" setting"
545
556
  msgstr ""
546
557
 
547
- #: sphinx/theming.py:335
558
+ #: sphinx/theming.py:365
548
559
  #, python-format
549
560
  msgid "The %r theme \"[options]\" table is not a table"
550
561
  msgstr ""
551
562
 
552
- #: sphinx/theming.py:353
563
+ #: sphinx/theming.py:383
553
564
  #, python-format
554
565
  msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
555
566
  msgstr ""
556
567
 
557
- #: sphinx/builders/__init__.py:183
568
+ #: sphinx/_cli/__init__.py:72
569
+ msgid "Usage:"
570
+ msgstr ""
571
+
572
+ #: sphinx/_cli/__init__.py:74
573
+ msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]"
574
+ msgstr ""
575
+
576
+ #: sphinx/_cli/__init__.py:77
577
+ msgid " The Sphinx documentation generator."
578
+ msgstr ""
579
+
580
+ #: sphinx/_cli/__init__.py:85
581
+ msgid "Commands:"
582
+ msgstr ""
583
+
584
+ #: sphinx/_cli/__init__.py:96
585
+ msgid "Options"
586
+ msgstr ""
587
+
588
+ #: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175
589
+ msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
590
+ msgstr ""
591
+
592
+ #: sphinx/_cli/__init__.py:164
593
+ msgid ""
594
+ "{0}: error: {1}\n"
595
+ "Run '{0} --help' for information"
596
+ msgstr ""
597
+
598
+ #: sphinx/_cli/__init__.py:174
599
+ msgid " Manage documentation with Sphinx."
600
+ msgstr ""
601
+
602
+ #: sphinx/_cli/__init__.py:183
603
+ msgid "Show the version and exit."
604
+ msgstr ""
605
+
606
+ #: sphinx/_cli/__init__.py:189
607
+ msgid "Show this message and exit."
608
+ msgstr ""
609
+
610
+ #: sphinx/_cli/__init__.py:193
611
+ msgid "Logging"
612
+ msgstr ""
613
+
614
+ #: sphinx/_cli/__init__.py:199
615
+ msgid "Increase verbosity (can be repeated)"
616
+ msgstr ""
617
+
618
+ #: sphinx/_cli/__init__.py:206
619
+ msgid "Only print errors and warnings."
620
+ msgstr ""
621
+
622
+ #: sphinx/_cli/__init__.py:213
623
+ msgid "No output at all"
624
+ msgstr ""
625
+
626
+ #: sphinx/_cli/__init__.py:219
627
+ msgid "<command>"
628
+ msgstr ""
629
+
630
+ #: sphinx/_cli/__init__.py:248
631
+ msgid "See 'sphinx --help'.\n"
632
+ msgstr ""
633
+
634
+ #: sphinx/_cli/util/errors.py:119
635
+ msgid "Exception occurred, starting debugger:"
636
+ msgstr ""
637
+
638
+ #: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61
639
+ msgid "Interrupted!"
640
+ msgstr ""
641
+
642
+ #: sphinx/_cli/util/errors.py:128
643
+ msgid "reStructuredText markup error:"
644
+ msgstr ""
645
+
646
+ #: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69
647
+ msgid "Encoding error:"
648
+ msgstr ""
649
+
650
+ #: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76
651
+ msgid "Recursion error:"
652
+ msgstr ""
653
+
654
+ #: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79
655
+ msgid ""
656
+ "This can happen with very large or deeply nested source files. You can "
657
+ "carefully increase the default Python recursion limit of 1000 in conf.py "
658
+ "with e.g.:"
659
+ msgstr ""
660
+
661
+ #: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84
662
+ msgid "Exception occurred:"
663
+ msgstr ""
664
+
665
+ #: sphinx/_cli/util/errors.py:159
666
+ msgid "The full traceback has been saved in:"
667
+ msgstr ""
668
+
669
+ #: sphinx/_cli/util/errors.py:162
670
+ msgid ""
671
+ "To report this error to the developers, please open an issue at "
672
+ "<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!"
673
+ msgstr ""
674
+
675
+ #: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90
676
+ msgid ""
677
+ "Please also report this if it was a user error, so that a better error "
678
+ "message can be provided next time."
679
+ msgstr ""
680
+
681
+ #: sphinx/builders/__init__.py:184
558
682
  #, python-format
559
683
  msgid "a suitable image for %s builder not found: %s (%s)"
560
684
  msgstr ""
561
685
 
562
- #: sphinx/builders/__init__.py:187
686
+ #: sphinx/builders/__init__.py:188
563
687
  #, python-format
564
688
  msgid "a suitable image for %s builder not found: %s"
565
689
  msgstr ""
566
690
 
567
- #: sphinx/builders/__init__.py:207
691
+ #: sphinx/builders/__init__.py:208
568
692
  msgid "building [mo]: "
569
693
  msgstr ""
570
694
 
571
- #: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574
572
- #: sphinx/builders/__init__.py:601
695
+ #: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615
696
+ #: sphinx/builders/__init__.py:642
573
697
  msgid "writing output... "
574
698
  msgstr ""
575
699
 
576
- #: sphinx/builders/__init__.py:217
700
+ #: sphinx/builders/__init__.py:218
577
701
  #, python-format
578
702
  msgid "all of %d po files"
579
703
  msgstr ""
580
704
 
581
- #: sphinx/builders/__init__.py:235
705
+ #: sphinx/builders/__init__.py:236
582
706
  #, python-format
583
707
  msgid "targets for %d po files that are specified"
584
708
  msgstr ""
585
709
 
586
- #: sphinx/builders/__init__.py:243
710
+ #: sphinx/builders/__init__.py:244
587
711
  #, python-format
588
712
  msgid "targets for %d po files that are out of date"
589
713
  msgstr ""
590
714
 
591
- #: sphinx/builders/__init__.py:252
715
+ #: sphinx/builders/__init__.py:254
592
716
  msgid "all source files"
593
717
  msgstr ""
594
718
 
595
- #: sphinx/builders/__init__.py:262
719
+ #: sphinx/builders/__init__.py:265
596
720
  #, python-format
597
721
  msgid "file %r given on command line does not exist, "
598
722
  msgstr ""
599
723
 
600
- #: sphinx/builders/__init__.py:267
724
+ #: sphinx/builders/__init__.py:270
601
725
  #, python-format
602
726
  msgid ""
603
727
  "file %r given on command line is not under the source directory, ignoring"
604
728
  msgstr ""
605
729
 
606
- #: sphinx/builders/__init__.py:273
730
+ #: sphinx/builders/__init__.py:276
607
731
  #, python-format
608
732
  msgid "file %r given on command line is not a valid document, ignoring"
609
733
  msgstr ""
610
734
 
611
- #: sphinx/builders/__init__.py:282
735
+ #: sphinx/builders/__init__.py:285
612
736
  #, python-format
613
737
  msgid "%d source files given on command line"
614
738
  msgstr ""
615
739
 
616
- #: sphinx/builders/__init__.py:294
740
+ #: sphinx/builders/__init__.py:298
617
741
  #, python-format
618
742
  msgid "targets for %d source files that are out of date"
619
743
  msgstr ""
620
744
 
621
- #: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243
745
+ #: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243
622
746
  #, python-format
623
747
  msgid "building [%s]: "
624
748
  msgstr ""
625
749
 
626
- #: sphinx/builders/__init__.py:316
750
+ #: sphinx/builders/__init__.py:321
627
751
  msgid "looking for now-outdated files... "
628
752
  msgstr ""
629
753
 
630
- #: sphinx/builders/__init__.py:320
754
+ #: sphinx/builders/__init__.py:325
631
755
  #, python-format
632
756
  msgid "%d found"
633
757
  msgstr ""
634
758
 
635
- #: sphinx/builders/__init__.py:322
759
+ #: sphinx/builders/__init__.py:327
636
760
  msgid "none found"
637
761
  msgstr ""
638
762
 
639
- #: sphinx/builders/__init__.py:327
763
+ #: sphinx/builders/__init__.py:332
640
764
  msgid "pickling environment"
641
765
  msgstr ""
642
766
 
643
- #: sphinx/builders/__init__.py:333
767
+ #: sphinx/builders/__init__.py:338
644
768
  msgid "checking consistency"
645
769
  msgstr ""
646
770
 
647
- #: sphinx/builders/__init__.py:337
771
+ #: sphinx/builders/__init__.py:342
648
772
  msgid "no targets are out of date."
649
773
  msgstr ""
650
774
 
651
- #: sphinx/builders/__init__.py:376
775
+ #: sphinx/builders/__init__.py:382
652
776
  msgid "updating environment: "
653
777
  msgstr ""
654
778
 
655
- #: sphinx/builders/__init__.py:397
779
+ #: sphinx/builders/__init__.py:403
656
780
  #, python-format
657
781
  msgid "%s added, %s changed, %s removed"
658
782
  msgstr ""
659
783
 
660
- #: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447
784
+ #: sphinx/builders/__init__.py:436
785
+ #, python-format
786
+ msgid ""
787
+ "Sphinx is unable to load the master document (%s) because it matches a "
788
+ "built-in exclude pattern %r. Please move your master document to a different"
789
+ " location."
790
+ msgstr ""
791
+
792
+ #: sphinx/builders/__init__.py:443
793
+ #, python-format
794
+ msgid ""
795
+ "Sphinx is unable to load the master document (%s) because it matches an "
796
+ "exclude pattern specified in conf.py, %r. Please remove this pattern from "
797
+ "conf.py."
798
+ msgstr ""
799
+
800
+ #: sphinx/builders/__init__.py:452
801
+ #, python-format
802
+ msgid ""
803
+ "Sphinx is unable to load the master document (%s) because it is not included"
804
+ " in the custom include_patterns = %r. Ensure that a pattern in "
805
+ "include_patterns matches the master document."
806
+ msgstr ""
807
+
808
+ #: sphinx/builders/__init__.py:457
809
+ #, python-format
810
+ msgid ""
811
+ "Sphinx is unable to load the master document (%s). The master document must "
812
+ "be within the source directory or a subdirectory of it."
813
+ msgstr ""
814
+
815
+ #: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484
661
816
  msgid "reading sources... "
662
817
  msgstr ""
663
818
 
664
- #: sphinx/builders/__init__.py:549
819
+ #: sphinx/builders/__init__.py:590
665
820
  #, python-format
666
821
  msgid "docnames to write: %s"
667
822
  msgstr ""
668
823
 
669
- #: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157
824
+ #: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157
670
825
  msgid "preparing documents"
671
826
  msgstr ""
672
827
 
673
- #: sphinx/builders/__init__.py:561
828
+ #: sphinx/builders/__init__.py:602
674
829
  msgid "copying assets"
675
830
  msgstr ""
676
831
 
@@ -679,7 +834,7 @@ msgstr ""
679
834
  msgid "duplicated ToC entry found: %s"
680
835
  msgstr ""
681
836
 
682
- #: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758
837
+ #: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757
683
838
  #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187
684
839
  msgid "copying images... "
685
840
  msgstr ""
@@ -689,7 +844,7 @@ msgstr ""
689
844
  msgid "cannot read image file %r: copying it instead"
690
845
  msgstr ""
691
846
 
692
- #: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766
847
+ #: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765
693
848
  #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197
694
849
  #, python-format
695
850
  msgid "cannot copy image file %r: %s"
@@ -814,7 +969,7 @@ msgstr ""
814
969
  msgid "conf value \"version\" should not be empty for EPUB3"
815
970
  msgstr ""
816
971
 
817
- #: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187
972
+ #: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184
818
973
  #, python-format
819
974
  msgid "invalid css_file: %r, ignored"
820
975
  msgstr ""
@@ -847,7 +1002,12 @@ msgstr ""
847
1002
  msgid "broken link: %s (%s)"
848
1003
  msgstr ""
849
1004
 
850
- #: sphinx/builders/linkcheck.py:660
1005
+ #: sphinx/builders/linkcheck.py:480
1006
+ #, python-format
1007
+ msgid "Anchor '%s' not found"
1008
+ msgstr ""
1009
+
1010
+ #: sphinx/builders/linkcheck.py:691
851
1011
  #, python-format
852
1012
  msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
853
1013
  msgstr ""
@@ -932,7 +1092,7 @@ msgstr ""
932
1092
  msgid "The text files are in %(outdir)s."
933
1093
  msgstr ""
934
1094
 
935
- #: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77
1095
+ #: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77
936
1096
  #: sphinx/builders/xml.py:96
937
1097
  #, python-format
938
1098
  msgid "error writing file %s: %s"
@@ -958,164 +1118,169 @@ msgstr ""
958
1118
  msgid "The HTML pages are in %(outdir)s."
959
1119
  msgstr ""
960
1120
 
961
- #: sphinx/builders/html/__init__.py:394
1121
+ #: sphinx/builders/html/__init__.py:390
962
1122
  #, python-format
963
1123
  msgid "Failed to read build info file: %r"
964
1124
  msgstr ""
965
1125
 
966
- #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189
1126
+ #: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189
967
1127
  #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101
968
1128
  #: sphinx/writers/texinfo.py:227
969
1129
  #, python-format
970
1130
  msgid "%b %d, %Y"
971
1131
  msgstr ""
972
1132
 
973
- #: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30
1133
+ #: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30
974
1134
  msgid "General Index"
975
1135
  msgstr ""
976
1136
 
977
- #: sphinx/builders/html/__init__.py:506
1137
+ #: sphinx/builders/html/__init__.py:504
978
1138
  msgid "index"
979
1139
  msgstr ""
980
1140
 
981
- #: sphinx/builders/html/__init__.py:579
1141
+ #: sphinx/builders/html/__init__.py:553
1142
+ #, python-format
1143
+ msgid "Logo of %s"
1144
+ msgstr ""
1145
+
1146
+ #: sphinx/builders/html/__init__.py:578
982
1147
  msgid "next"
983
1148
  msgstr ""
984
1149
 
985
- #: sphinx/builders/html/__init__.py:588
1150
+ #: sphinx/builders/html/__init__.py:587
986
1151
  msgid "previous"
987
1152
  msgstr ""
988
1153
 
989
- #: sphinx/builders/html/__init__.py:684
1154
+ #: sphinx/builders/html/__init__.py:683
990
1155
  msgid "generating indices"
991
1156
  msgstr ""
992
1157
 
993
- #: sphinx/builders/html/__init__.py:699
1158
+ #: sphinx/builders/html/__init__.py:698
994
1159
  msgid "writing additional pages"
995
1160
  msgstr ""
996
1161
 
997
- #: sphinx/builders/html/__init__.py:776
1162
+ #: sphinx/builders/html/__init__.py:775
998
1163
  msgid "copying downloadable files... "
999
1164
  msgstr ""
1000
1165
 
1001
- #: sphinx/builders/html/__init__.py:784
1166
+ #: sphinx/builders/html/__init__.py:783
1002
1167
  #, python-format
1003
1168
  msgid "cannot copy downloadable file %r: %s"
1004
1169
  msgstr ""
1005
1170
 
1006
- #: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829
1171
+ #: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828
1007
1172
  #, python-format
1008
1173
  msgid "Failed to copy a file in html_static_file: %s: %r"
1009
1174
  msgstr ""
1010
1175
 
1011
- #: sphinx/builders/html/__init__.py:850
1176
+ #: sphinx/builders/html/__init__.py:849
1012
1177
  msgid "copying static files"
1013
1178
  msgstr ""
1014
1179
 
1015
- #: sphinx/builders/html/__init__.py:866
1180
+ #: sphinx/builders/html/__init__.py:865
1016
1181
  #, python-format
1017
1182
  msgid "cannot copy static file %r"
1018
1183
  msgstr ""
1019
1184
 
1020
- #: sphinx/builders/html/__init__.py:871
1185
+ #: sphinx/builders/html/__init__.py:870
1021
1186
  msgid "copying extra files"
1022
1187
  msgstr ""
1023
1188
 
1024
- #: sphinx/builders/html/__init__.py:877
1189
+ #: sphinx/builders/html/__init__.py:876
1025
1190
  #, python-format
1026
1191
  msgid "cannot copy extra file %r"
1027
1192
  msgstr ""
1028
1193
 
1029
- #: sphinx/builders/html/__init__.py:884
1194
+ #: sphinx/builders/html/__init__.py:883
1030
1195
  #, python-format
1031
1196
  msgid "Failed to write build info file: %r"
1032
1197
  msgstr ""
1033
1198
 
1034
- #: sphinx/builders/html/__init__.py:933
1199
+ #: sphinx/builders/html/__init__.py:932
1035
1200
  msgid ""
1036
1201
  "search index couldn't be loaded, but not all documents will be built: the "
1037
1202
  "index will be incomplete."
1038
1203
  msgstr ""
1039
1204
 
1040
- #: sphinx/builders/html/__init__.py:978
1205
+ #: sphinx/builders/html/__init__.py:976
1041
1206
  #, python-format
1042
1207
  msgid "page %s matches two patterns in html_sidebars: %r and %r"
1043
1208
  msgstr ""
1044
1209
 
1045
- #: sphinx/builders/html/__init__.py:1121
1210
+ #: sphinx/builders/html/__init__.py:1118
1046
1211
  #, python-format
1047
1212
  msgid ""
1048
1213
  "a Unicode error occurred when rendering the page %s. Please make sure all "
1049
1214
  "config values that contain non-ASCII content are Unicode strings."
1050
1215
  msgstr ""
1051
1216
 
1052
- #: sphinx/builders/html/__init__.py:1126
1217
+ #: sphinx/builders/html/__init__.py:1123
1053
1218
  #, python-format
1054
1219
  msgid ""
1055
1220
  "An error happened in rendering the page %s.\n"
1056
1221
  "Reason: %r"
1057
1222
  msgstr ""
1058
1223
 
1059
- #: sphinx/builders/html/__init__.py:1154
1224
+ #: sphinx/builders/html/__init__.py:1151
1060
1225
  msgid "dumping object inventory"
1061
1226
  msgstr ""
1062
1227
 
1063
- #: sphinx/builders/html/__init__.py:1162
1228
+ #: sphinx/builders/html/__init__.py:1159
1064
1229
  #, python-format
1065
1230
  msgid "dumping search index in %s"
1066
1231
  msgstr ""
1067
1232
 
1068
- #: sphinx/builders/html/__init__.py:1210
1233
+ #: sphinx/builders/html/__init__.py:1207
1069
1234
  #, python-format
1070
1235
  msgid "invalid js_file: %r, ignored"
1071
1236
  msgstr ""
1072
1237
 
1073
- #: sphinx/builders/html/__init__.py:1238
1238
+ #: sphinx/builders/html/__init__.py:1235
1074
1239
  msgid "Many math_renderers are registered. But no math_renderer is selected."
1075
1240
  msgstr ""
1076
1241
 
1077
- #: sphinx/builders/html/__init__.py:1241
1242
+ #: sphinx/builders/html/__init__.py:1238
1078
1243
  #, python-format
1079
1244
  msgid "Unknown math_renderer %r is given."
1080
1245
  msgstr ""
1081
1246
 
1082
- #: sphinx/builders/html/__init__.py:1249
1247
+ #: sphinx/builders/html/__init__.py:1246
1083
1248
  #, python-format
1084
1249
  msgid "html_extra_path entry %r does not exist"
1085
1250
  msgstr ""
1086
1251
 
1087
- #: sphinx/builders/html/__init__.py:1253
1252
+ #: sphinx/builders/html/__init__.py:1250
1088
1253
  #, python-format
1089
1254
  msgid "html_extra_path entry %r is placed inside outdir"
1090
1255
  msgstr ""
1091
1256
 
1092
- #: sphinx/builders/html/__init__.py:1262
1257
+ #: sphinx/builders/html/__init__.py:1259
1093
1258
  #, python-format
1094
1259
  msgid "html_static_path entry %r does not exist"
1095
1260
  msgstr ""
1096
1261
 
1097
- #: sphinx/builders/html/__init__.py:1266
1262
+ #: sphinx/builders/html/__init__.py:1263
1098
1263
  #, python-format
1099
1264
  msgid "html_static_path entry %r is placed inside outdir"
1100
1265
  msgstr ""
1101
1266
 
1102
- #: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444
1267
+ #: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444
1103
1268
  #, python-format
1104
1269
  msgid "logo file %r does not exist"
1105
1270
  msgstr ""
1106
1271
 
1107
- #: sphinx/builders/html/__init__.py:1284
1272
+ #: sphinx/builders/html/__init__.py:1281
1108
1273
  #, python-format
1109
1274
  msgid "favicon file %r does not exist"
1110
1275
  msgstr ""
1111
1276
 
1112
- #: sphinx/builders/html/__init__.py:1291
1277
+ #: sphinx/builders/html/__init__.py:1288
1113
1278
  msgid ""
1114
1279
  "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
1115
1280
  "configuration options)"
1116
1281
  msgstr ""
1117
1282
 
1118
- #: sphinx/builders/html/__init__.py:1306
1283
+ #: sphinx/builders/html/__init__.py:1303
1119
1284
  #, python-format
1120
1285
  msgid "%s %s documentation"
1121
1286
  msgstr ""
@@ -1141,19 +1306,21 @@ msgstr ""
1141
1306
  msgid "\"latex_documents\" config value references unknown document %s"
1142
1307
  msgstr ""
1143
1308
 
1144
- #: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559
1145
- #: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106
1309
+ #: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640
1310
+ #: sphinx/domains/std/__init__.py:652
1311
+ #: sphinx/templates/latex/latex.tex.jinja:106
1146
1312
  #: sphinx/themes/basic/genindex-single.html:30
1147
- #: sphinx/themes/basic/genindex-single.html:55
1313
+ #: sphinx/themes/basic/genindex-single.html:56
1148
1314
  #: sphinx/themes/basic/genindex-split.html:11
1149
1315
  #: sphinx/themes/basic/genindex-split.html:14
1150
1316
  #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
1151
- #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138
1152
- #: sphinx/writers/texinfo.py:497
1317
+ #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135
1318
+ #: sphinx/writers/texinfo.py:502
1153
1319
  msgid "Index"
1154
1320
  msgstr ""
1155
1321
 
1156
- #: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91
1322
+ #: sphinx/builders/latex/__init__.py:199
1323
+ #: sphinx/templates/latex/latex.tex.jinja:91
1157
1324
  msgid "Release"
1158
1325
  msgstr ""
1159
1326
 
@@ -1211,18 +1378,10 @@ msgstr ""
1211
1378
  msgid "Exception occurred while building, starting debugger:"
1212
1379
  msgstr ""
1213
1380
 
1214
- #: sphinx/cmd/build.py:61
1215
- msgid "Interrupted!"
1216
- msgstr ""
1217
-
1218
1381
  #: sphinx/cmd/build.py:63
1219
1382
  msgid "reST markup error:"
1220
1383
  msgstr ""
1221
1384
 
1222
- #: sphinx/cmd/build.py:69
1223
- msgid "Encoding error:"
1224
- msgstr ""
1225
-
1226
1385
  #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87
1227
1386
  #, python-format
1228
1387
  msgid ""
@@ -1230,27 +1389,6 @@ msgid ""
1230
1389
  "the developers."
1231
1390
  msgstr ""
1232
1391
 
1233
- #: sphinx/cmd/build.py:76
1234
- msgid "Recursion error:"
1235
- msgstr ""
1236
-
1237
- #: sphinx/cmd/build.py:79
1238
- msgid ""
1239
- "This can happen with very large or deeply nested source files. You can "
1240
- "carefully increase the default Python recursion limit of 1000 in conf.py "
1241
- "with e.g.:"
1242
- msgstr ""
1243
-
1244
- #: sphinx/cmd/build.py:84
1245
- msgid "Exception occurred:"
1246
- msgstr ""
1247
-
1248
- #: sphinx/cmd/build.py:90
1249
- msgid ""
1250
- "Please also report this if it was a user error, so that a better error "
1251
- "message can be provided next time."
1252
- msgstr ""
1253
-
1254
1392
  #: sphinx/cmd/build.py:93
1255
1393
  msgid ""
1256
1394
  "A bug report can be filed in the tracker at <https://github.com/sphinx-"
@@ -1262,7 +1400,7 @@ msgid "job number should be a positive number"
1262
1400
  msgstr ""
1263
1401
 
1264
1402
  #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474
1265
- #: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689
1403
+ #: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755
1266
1404
  msgid "For more information, visit <https://www.sphinx-doc.org/>."
1267
1405
  msgstr ""
1268
1406
 
@@ -1351,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG"
1351
1489
  msgstr ""
1352
1490
 
1353
1491
  #: sphinx/cmd/build.py:182
1354
- msgid "nit-picky mode: warn about all missing references"
1492
+ msgid "nitpicky mode: warn about all missing references"
1355
1493
  msgstr ""
1356
1494
 
1357
1495
  #: sphinx/cmd/build.py:184
@@ -1362,7 +1500,7 @@ msgstr ""
1362
1500
  msgid "increase verbosity (can be repeated)"
1363
1501
  msgstr ""
1364
1502
 
1365
- #: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340
1503
+ #: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402
1366
1504
  msgid "no output on stdout, just warnings on stderr"
1367
1505
  msgstr ""
1368
1506
 
@@ -1644,12 +1782,12 @@ msgstr ""
1644
1782
  msgid "Create Windows command file? (y/n)"
1645
1783
  msgstr ""
1646
1784
 
1647
- #: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93
1785
+ #: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92
1648
1786
  #, python-format
1649
1787
  msgid "Creating file %s."
1650
1788
  msgstr ""
1651
1789
 
1652
- #: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90
1790
+ #: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89
1653
1791
  #, python-format
1654
1792
  msgid "File %s already exists, skipping."
1655
1793
  msgstr ""
@@ -1758,12 +1896,12 @@ msgstr ""
1758
1896
  msgid "Extension options"
1759
1897
  msgstr ""
1760
1898
 
1761
- #: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400
1899
+ #: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559
1762
1900
  #, python-format
1763
1901
  msgid "enable %s extension"
1764
1902
  msgstr ""
1765
1903
 
1766
- #: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396
1904
+ #: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551
1767
1905
  msgid "enable arbitrary extensions"
1768
1906
  msgstr ""
1769
1907
 
@@ -1795,11 +1933,11 @@ msgstr ""
1795
1933
  msgid "do not use make-mode for Makefile/make.bat"
1796
1934
  msgstr ""
1797
1935
 
1798
- #: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402
1936
+ #: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562
1799
1937
  msgid "Project templating"
1800
1938
  msgstr ""
1801
1939
 
1802
- #: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405
1940
+ #: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568
1803
1941
  msgid "template directory for template files"
1804
1942
  msgstr ""
1805
1943
 
@@ -1827,85 +1965,85 @@ msgstr ""
1827
1965
  msgid "Invalid template variable: %s"
1828
1966
  msgstr ""
1829
1967
 
1830
- #: sphinx/directives/code.py:61
1968
+ #: sphinx/directives/code.py:60
1831
1969
  msgid "non-whitespace stripped by dedent"
1832
1970
  msgstr ""
1833
1971
 
1834
- #: sphinx/directives/code.py:82
1972
+ #: sphinx/directives/code.py:80
1835
1973
  #, python-format
1836
1974
  msgid "Invalid caption: %s"
1837
1975
  msgstr ""
1838
1976
 
1839
- #: sphinx/directives/code.py:127 sphinx/directives/code.py:277
1840
- #: sphinx/directives/code.py:453
1977
+ #: sphinx/directives/code.py:124 sphinx/directives/code.py:274
1978
+ #: sphinx/directives/code.py:450
1841
1979
  #, python-format
1842
1980
  msgid "line number spec is out of range(1-%d): %r"
1843
1981
  msgstr ""
1844
1982
 
1845
- #: sphinx/directives/code.py:206
1983
+ #: sphinx/directives/code.py:203
1846
1984
  #, python-format
1847
1985
  msgid "Cannot use both \"%s\" and \"%s\" options"
1848
1986
  msgstr ""
1849
1987
 
1850
- #: sphinx/directives/code.py:220
1988
+ #: sphinx/directives/code.py:217
1851
1989
  #, python-format
1852
1990
  msgid "Include file %r not found or reading it failed"
1853
1991
  msgstr ""
1854
1992
 
1855
- #: sphinx/directives/code.py:223
1993
+ #: sphinx/directives/code.py:220
1856
1994
  #, python-format
1857
1995
  msgid ""
1858
1996
  "Encoding %r used for reading included file %r seems to be wrong, try giving "
1859
1997
  "an :encoding: option"
1860
1998
  msgstr ""
1861
1999
 
1862
- #: sphinx/directives/code.py:260
2000
+ #: sphinx/directives/code.py:257
1863
2001
  #, python-format
1864
2002
  msgid "Object named %r not found in include file %r"
1865
2003
  msgstr ""
1866
2004
 
1867
- #: sphinx/directives/code.py:286
2005
+ #: sphinx/directives/code.py:283
1868
2006
  msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
1869
2007
  msgstr ""
1870
2008
 
1871
- #: sphinx/directives/code.py:291
2009
+ #: sphinx/directives/code.py:288
1872
2010
  #, python-format
1873
2011
  msgid "Line spec %r: no lines pulled from include file %r"
1874
2012
  msgstr ""
1875
2013
 
1876
- #: sphinx/directives/other.py:120
2014
+ #: sphinx/directives/other.py:123
1877
2015
  #, python-format
1878
2016
  msgid "toctree glob pattern %r didn't match any documents"
1879
2017
  msgstr ""
1880
2018
 
1881
- #: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324
2019
+ #: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324
1882
2020
  #, python-format
1883
2021
  msgid "toctree contains reference to excluded document %r"
1884
2022
  msgstr ""
1885
2023
 
1886
- #: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328
2024
+ #: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328
1887
2025
  #, python-format
1888
2026
  msgid "toctree contains reference to nonexisting document %r"
1889
2027
  msgstr ""
1890
2028
 
1891
- #: sphinx/directives/other.py:160
2029
+ #: sphinx/directives/other.py:163
1892
2030
  #, python-format
1893
2031
  msgid "duplicated entry found in toctree: %s"
1894
2032
  msgstr ""
1895
2033
 
1896
- #: sphinx/directives/other.py:193
2034
+ #: sphinx/directives/other.py:196
1897
2035
  msgid "Section author: "
1898
2036
  msgstr ""
1899
2037
 
1900
- #: sphinx/directives/other.py:195
2038
+ #: sphinx/directives/other.py:198
1901
2039
  msgid "Module author: "
1902
2040
  msgstr ""
1903
2041
 
1904
- #: sphinx/directives/other.py:197
2042
+ #: sphinx/directives/other.py:200
1905
2043
  msgid "Code author: "
1906
2044
  msgstr ""
1907
2045
 
1908
- #: sphinx/directives/other.py:199
2046
+ #: sphinx/directives/other.py:202
1909
2047
  msgid "Author: "
1910
2048
  msgstr ""
1911
2049
 
@@ -1913,7 +2051,7 @@ msgstr ""
1913
2051
  msgid ".. acks content is not a list"
1914
2052
  msgstr ""
1915
2053
 
1916
- #: sphinx/directives/other.py:301
2054
+ #: sphinx/directives/other.py:298
1917
2055
  msgid ".. hlist content is not a list"
1918
2056
  msgstr ""
1919
2057
 
@@ -1963,7 +2101,7 @@ msgstr ""
1963
2101
  msgid "%s() (built-in function)"
1964
2102
  msgstr ""
1965
2103
 
1966
- #: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240
2104
+ #: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253
1967
2105
  #, python-format
1968
2106
  msgid "%s() (%s method)"
1969
2107
  msgstr ""
@@ -1978,7 +2116,7 @@ msgstr ""
1978
2116
  msgid "%s (global variable or constant)"
1979
2117
  msgstr ""
1980
2118
 
1981
- #: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325
2119
+ #: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338
1982
2120
  #, python-format
1983
2121
  msgid "%s (%s attribute)"
1984
2122
  msgstr ""
@@ -1987,52 +2125,52 @@ msgstr ""
1987
2125
  msgid "Arguments"
1988
2126
  msgstr ""
1989
2127
 
1990
- #: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258
2128
+ #: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258
1991
2129
  msgid "Throws"
1992
2130
  msgstr ""
1993
2131
 
1994
- #: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361
2132
+ #: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453
1995
2133
  #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175
1996
2134
  msgid "Returns"
1997
2135
  msgstr ""
1998
2136
 
1999
- #: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263
2137
+ #: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263
2000
2138
  #: sphinx/domains/python/_object.py:177
2001
2139
  msgid "Return type"
2002
2140
  msgstr ""
2003
2141
 
2004
- #: sphinx/domains/javascript.py:331
2142
+ #: sphinx/domains/javascript.py:328
2005
2143
  #, python-format
2006
2144
  msgid "%s (module)"
2007
2145
  msgstr ""
2008
2146
 
2009
- #: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764
2010
- #: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574
2147
+ #: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855
2148
+ #: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623
2011
2149
  msgid "function"
2012
2150
  msgstr ""
2013
2151
 
2014
- #: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578
2152
+ #: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627
2015
2153
  msgid "method"
2016
2154
  msgstr ""
2017
2155
 
2018
- #: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370
2019
- #: sphinx/domains/python/__init__.py:576
2156
+ #: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367
2157
+ #: sphinx/domains/python/__init__.py:625
2020
2158
  msgid "class"
2021
2159
  msgstr ""
2022
2160
 
2023
- #: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575
2161
+ #: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624
2024
2162
  msgid "data"
2025
2163
  msgstr ""
2026
2164
 
2027
- #: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581
2165
+ #: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630
2028
2166
  msgid "attribute"
2029
2167
  msgstr ""
2030
2168
 
2031
- #: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583
2169
+ #: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633
2032
2170
  msgid "module"
2033
2171
  msgstr ""
2034
2172
 
2035
- #: sphinx/domains/javascript.py:404
2173
+ #: sphinx/domains/javascript.py:401
2036
2174
  #, python-format
2037
2175
  msgid "duplicate %s description of %s, other %s in %s"
2038
2176
  msgstr ""
@@ -2042,7 +2180,7 @@ msgstr ""
2042
2180
  msgid "duplicate label of equation %s, other instance in %s"
2043
2181
  msgstr ""
2044
2182
 
2045
- #: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252
2183
+ #: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274
2046
2184
  #, python-format
2047
2185
  msgid "Invalid math_eqref_format: %r"
2048
2186
  msgstr ""
@@ -2079,169 +2217,178 @@ msgstr ""
2079
2217
  msgid "duplicate description of %s %s, other instance in %s"
2080
2218
  msgstr ""
2081
2219
 
2082
- #: sphinx/domains/c/__init__.py:146
2220
+ #: sphinx/domains/c/__init__.py:199
2083
2221
  #, python-format
2084
2222
  msgid "%s (C %s)"
2085
2223
  msgstr ""
2086
2224
 
2087
- #: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552
2225
+ #: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510
2088
2226
  #, python-format
2089
2227
  msgid ""
2090
2228
  "Duplicate C declaration, also defined at %s:%s.\n"
2091
2229
  "Declaration is '.. c:%s:: %s'."
2092
2230
  msgstr ""
2093
2231
 
2094
- #: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344
2232
+ #: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436
2095
2233
  #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762
2096
2234
  msgid "Parameters"
2097
2235
  msgstr ""
2098
2236
 
2099
- #: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357
2237
+ #: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449
2100
2238
  msgid "Return values"
2101
2239
  msgstr ""
2102
2240
 
2103
- #: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765
2241
+ #: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856
2104
2242
  msgid "member"
2105
2243
  msgstr ""
2106
2244
 
2107
- #: sphinx/domains/c/__init__.py:621
2245
+ #: sphinx/domains/c/__init__.py:674
2108
2246
  msgid "variable"
2109
2247
  msgstr ""
2110
2248
 
2111
- #: sphinx/domains/c/__init__.py:623
2249
+ #: sphinx/domains/c/__init__.py:676
2112
2250
  msgid "macro"
2113
2251
  msgstr ""
2114
2252
 
2115
- #: sphinx/domains/c/__init__.py:624
2253
+ #: sphinx/domains/c/__init__.py:677
2116
2254
  msgid "struct"
2117
2255
  msgstr ""
2118
2256
 
2119
- #: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763
2257
+ #: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854
2120
2258
  msgid "union"
2121
2259
  msgstr ""
2122
2260
 
2123
- #: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768
2261
+ #: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859
2124
2262
  msgid "enum"
2125
2263
  msgstr ""
2126
2264
 
2127
- #: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769
2265
+ #: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860
2128
2266
  msgid "enumerator"
2129
2267
  msgstr ""
2130
2268
 
2131
- #: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766
2269
+ #: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857
2132
2270
  msgid "type"
2133
2271
  msgstr ""
2134
2272
 
2135
- #: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771
2273
+ #: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862
2136
2274
  msgid "function parameter"
2137
2275
  msgstr ""
2138
2276
 
2139
- #: sphinx/domains/cpp/__init__.py:63
2277
+ #: sphinx/domains/cpp/__init__.py:155
2140
2278
  msgid "Template Parameters"
2141
2279
  msgstr ""
2142
2280
 
2143
- #: sphinx/domains/cpp/__init__.py:185
2281
+ #: sphinx/domains/cpp/__init__.py:277
2144
2282
  #, python-format
2145
2283
  msgid "%s (C++ %s)"
2146
2284
  msgstr ""
2147
2285
 
2148
- #: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790
2286
+ #: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793
2149
2287
  #, python-format
2150
2288
  msgid ""
2151
2289
  "Duplicate C++ declaration, also defined at %s:%s.\n"
2152
2290
  "Declaration is '.. cpp:%s:: %s'."
2153
2291
  msgstr ""
2154
2292
 
2155
- #: sphinx/domains/cpp/__init__.py:767
2293
+ #: sphinx/domains/cpp/__init__.py:858
2156
2294
  msgid "concept"
2157
2295
  msgstr ""
2158
2296
 
2159
- #: sphinx/domains/cpp/__init__.py:772
2297
+ #: sphinx/domains/cpp/__init__.py:863
2160
2298
  msgid "template parameter"
2161
2299
  msgstr ""
2162
2300
 
2163
- #: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231
2301
+ #: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244
2164
2302
  #, python-format
2165
2303
  msgid "%s() (in module %s)"
2166
2304
  msgstr ""
2167
2305
 
2168
- #: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321
2169
- #: sphinx/domains/python/__init__.py:372
2306
+ #: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334
2307
+ #: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424
2170
2308
  #, python-format
2171
2309
  msgid "%s (in module %s)"
2172
2310
  msgstr ""
2173
2311
 
2174
- #: sphinx/domains/python/__init__.py:156
2312
+ #: sphinx/domains/python/__init__.py:169
2175
2313
  #, python-format
2176
2314
  msgid "%s (built-in variable)"
2177
2315
  msgstr ""
2178
2316
 
2179
- #: sphinx/domains/python/__init__.py:181
2317
+ #: sphinx/domains/python/__init__.py:194
2180
2318
  #, python-format
2181
2319
  msgid "%s (built-in class)"
2182
2320
  msgstr ""
2183
2321
 
2184
- #: sphinx/domains/python/__init__.py:182
2322
+ #: sphinx/domains/python/__init__.py:195
2185
2323
  #, python-format
2186
2324
  msgid "%s (class in %s)"
2187
2325
  msgstr ""
2188
2326
 
2189
- #: sphinx/domains/python/__init__.py:236
2327
+ #: sphinx/domains/python/__init__.py:249
2190
2328
  #, python-format
2191
2329
  msgid "%s() (%s class method)"
2192
2330
  msgstr ""
2193
2331
 
2194
- #: sphinx/domains/python/__init__.py:238
2332
+ #: sphinx/domains/python/__init__.py:251
2195
2333
  #, python-format
2196
2334
  msgid "%s() (%s static method)"
2197
2335
  msgstr ""
2198
2336
 
2199
- #: sphinx/domains/python/__init__.py:376
2337
+ #: sphinx/domains/python/__init__.py:389
2200
2338
  #, python-format
2201
2339
  msgid "%s (%s property)"
2202
2340
  msgstr ""
2203
2341
 
2204
- #: sphinx/domains/python/__init__.py:502
2342
+ #: sphinx/domains/python/__init__.py:428
2343
+ #, python-format
2344
+ msgid "%s (type alias in %s)"
2345
+ msgstr ""
2346
+
2347
+ #: sphinx/domains/python/__init__.py:551
2205
2348
  msgid "Python Module Index"
2206
2349
  msgstr ""
2207
2350
 
2208
- #: sphinx/domains/python/__init__.py:503
2351
+ #: sphinx/domains/python/__init__.py:552
2209
2352
  msgid "modules"
2210
2353
  msgstr ""
2211
2354
 
2212
- #: sphinx/domains/python/__init__.py:552
2355
+ #: sphinx/domains/python/__init__.py:601
2213
2356
  msgid "Deprecated"
2214
2357
  msgstr ""
2215
2358
 
2216
- #: sphinx/domains/python/__init__.py:577
2359
+ #: sphinx/domains/python/__init__.py:626
2217
2360
  msgid "exception"
2218
2361
  msgstr ""
2219
2362
 
2220
- #: sphinx/domains/python/__init__.py:579
2363
+ #: sphinx/domains/python/__init__.py:628
2221
2364
  msgid "class method"
2222
2365
  msgstr ""
2223
2366
 
2224
- #: sphinx/domains/python/__init__.py:580
2367
+ #: sphinx/domains/python/__init__.py:629
2225
2368
  msgid "static method"
2226
2369
  msgstr ""
2227
2370
 
2228
- #: sphinx/domains/python/__init__.py:582
2371
+ #: sphinx/domains/python/__init__.py:631
2229
2372
  msgid "property"
2230
2373
  msgstr ""
2231
2374
 
2232
- #: sphinx/domains/python/__init__.py:640
2375
+ #: sphinx/domains/python/__init__.py:632
2376
+ msgid "type alias"
2377
+ msgstr ""
2378
+
2379
+ #: sphinx/domains/python/__init__.py:692
2233
2380
  #, python-format
2234
2381
  msgid ""
2235
2382
  "duplicate object description of %s, other instance in %s, use :no-index: for"
2236
2383
  " one of them"
2237
2384
  msgstr ""
2238
2385
 
2239
- #: sphinx/domains/python/__init__.py:760
2386
+ #: sphinx/domains/python/__init__.py:812
2240
2387
  #, python-format
2241
2388
  msgid "more than one target found for cross-reference %r: %s"
2242
2389
  msgstr ""
2243
2390
 
2244
- #: sphinx/domains/python/__init__.py:821
2391
+ #: sphinx/domains/python/__init__.py:873
2245
2392
  msgid " (deprecated)"
2246
2393
  msgstr ""
2247
2394
 
@@ -2253,158 +2400,171 @@ msgstr ""
2253
2400
  msgid "Raises"
2254
2401
  msgstr ""
2255
2402
 
2256
- #: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97
2403
+ #: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98
2257
2404
  #, python-format
2258
2405
  msgid "environment variable; %s"
2259
2406
  msgstr ""
2260
2407
 
2261
- #: sphinx/domains/std/__init__.py:157
2408
+ #: sphinx/domains/std/__init__.py:106
2409
+ #, python-format
2410
+ msgid "%s; configuration value"
2411
+ msgstr ""
2412
+
2413
+ #: sphinx/domains/std/__init__.py:159
2414
+ msgid "Type"
2415
+ msgstr ""
2416
+
2417
+ #: sphinx/domains/std/__init__.py:169
2418
+ msgid "Default"
2419
+ msgstr ""
2420
+
2421
+ #: sphinx/domains/std/__init__.py:228
2262
2422
  #, python-format
2263
2423
  msgid ""
2264
2424
  "Malformed option description %r, should look like \"opt\", \"-opt args\", \""
2265
2425
  "--opt args\", \"/opt args\" or \"+opt args\""
2266
2426
  msgstr ""
2267
2427
 
2268
- #: sphinx/domains/std/__init__.py:228
2428
+ #: sphinx/domains/std/__init__.py:299
2269
2429
  #, python-format
2270
2430
  msgid "%s command line option"
2271
2431
  msgstr ""
2272
2432
 
2273
- #: sphinx/domains/std/__init__.py:230
2433
+ #: sphinx/domains/std/__init__.py:301
2274
2434
  msgid "command line option"
2275
2435
  msgstr ""
2276
2436
 
2277
- #: sphinx/domains/std/__init__.py:348
2437
+ #: sphinx/domains/std/__init__.py:424
2278
2438
  msgid "glossary term must be preceded by empty line"
2279
2439
  msgstr ""
2280
2440
 
2281
- #: sphinx/domains/std/__init__.py:356
2441
+ #: sphinx/domains/std/__init__.py:432
2282
2442
  msgid "glossary terms must not be separated by empty lines"
2283
2443
  msgstr ""
2284
2444
 
2285
- #: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375
2445
+ #: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451
2286
2446
  msgid "glossary seems to be misformatted, check indentation"
2287
2447
  msgstr ""
2288
2448
 
2289
- #: sphinx/domains/std/__init__.py:518
2449
+ #: sphinx/domains/std/__init__.py:596
2290
2450
  msgid "glossary term"
2291
2451
  msgstr ""
2292
2452
 
2293
- #: sphinx/domains/std/__init__.py:519
2453
+ #: sphinx/domains/std/__init__.py:597
2294
2454
  msgid "grammar token"
2295
2455
  msgstr ""
2296
2456
 
2297
- #: sphinx/domains/std/__init__.py:520
2457
+ #: sphinx/domains/std/__init__.py:598
2298
2458
  msgid "reference label"
2299
2459
  msgstr ""
2300
2460
 
2301
- #: sphinx/domains/std/__init__.py:522
2461
+ #: sphinx/domains/std/__init__.py:601
2302
2462
  msgid "environment variable"
2303
2463
  msgstr ""
2304
2464
 
2305
- #: sphinx/domains/std/__init__.py:523
2465
+ #: sphinx/domains/std/__init__.py:602
2306
2466
  msgid "program option"
2307
2467
  msgstr ""
2308
2468
 
2309
- #: sphinx/domains/std/__init__.py:524
2469
+ #: sphinx/domains/std/__init__.py:603
2310
2470
  msgid "document"
2311
2471
  msgstr ""
2312
2472
 
2313
- #: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572
2473
+ #: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653
2314
2474
  msgid "Module Index"
2315
2475
  msgstr ""
2316
2476
 
2317
- #: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573
2477
+ #: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654
2318
2478
  #: sphinx/themes/basic/defindex.html:25
2319
2479
  msgid "Search Page"
2320
2480
  msgstr ""
2321
2481
 
2322
- #: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722
2482
+ #: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803
2323
2483
  #: sphinx/ext/autosectionlabel.py:53
2324
2484
  #, python-format
2325
2485
  msgid "duplicate label %s, other instance in %s"
2326
2486
  msgstr ""
2327
2487
 
2328
- #: sphinx/domains/std/__init__.py:635
2488
+ #: sphinx/domains/std/__init__.py:716
2329
2489
  #, python-format
2330
2490
  msgid "duplicate %s description of %s, other instance in %s"
2331
2491
  msgstr ""
2332
2492
 
2333
- #: sphinx/domains/std/__init__.py:841
2493
+ #: sphinx/domains/std/__init__.py:922
2334
2494
  msgid "numfig is disabled. :numref: is ignored."
2335
2495
  msgstr ""
2336
2496
 
2337
- #: sphinx/domains/std/__init__.py:849
2497
+ #: sphinx/domains/std/__init__.py:930
2338
2498
  #, python-format
2339
2499
  msgid "Failed to create a cross reference. Any number is not assigned: %s"
2340
2500
  msgstr ""
2341
2501
 
2342
- #: sphinx/domains/std/__init__.py:861
2502
+ #: sphinx/domains/std/__init__.py:942
2343
2503
  #, python-format
2344
2504
  msgid "the link has no caption: %s"
2345
2505
  msgstr ""
2346
2506
 
2347
- #: sphinx/domains/std/__init__.py:875
2507
+ #: sphinx/domains/std/__init__.py:956
2348
2508
  #, python-format
2349
2509
  msgid "invalid numfig_format: %s (%r)"
2350
2510
  msgstr ""
2351
2511
 
2352
- #: sphinx/domains/std/__init__.py:878
2512
+ #: sphinx/domains/std/__init__.py:959
2353
2513
  #, python-format
2354
2514
  msgid "invalid numfig_format: %s"
2355
2515
  msgstr ""
2356
2516
 
2357
- #: sphinx/domains/std/__init__.py:1109
2517
+ #: sphinx/domains/std/__init__.py:1190
2358
2518
  #, python-format
2359
2519
  msgid "undefined label: %r"
2360
2520
  msgstr ""
2361
2521
 
2362
- #: sphinx/domains/std/__init__.py:1111
2522
+ #: sphinx/domains/std/__init__.py:1192
2363
2523
  #, python-format
2364
2524
  msgid "Failed to create a cross reference. A title or caption not found: %r"
2365
2525
  msgstr ""
2366
2526
 
2367
- #: sphinx/environment/__init__.py:71
2527
+ #: sphinx/environment/__init__.py:72
2368
2528
  msgid "new config"
2369
2529
  msgstr ""
2370
2530
 
2371
- #: sphinx/environment/__init__.py:72
2531
+ #: sphinx/environment/__init__.py:73
2372
2532
  msgid "config changed"
2373
2533
  msgstr ""
2374
2534
 
2375
- #: sphinx/environment/__init__.py:73
2535
+ #: sphinx/environment/__init__.py:74
2376
2536
  msgid "extensions changed"
2377
2537
  msgstr ""
2378
2538
 
2379
- #: sphinx/environment/__init__.py:279
2539
+ #: sphinx/environment/__init__.py:292
2380
2540
  msgid "build environment version not current"
2381
2541
  msgstr ""
2382
2542
 
2383
- #: sphinx/environment/__init__.py:281
2543
+ #: sphinx/environment/__init__.py:294
2384
2544
  msgid "source directory has changed"
2385
2545
  msgstr ""
2386
2546
 
2387
- #: sphinx/environment/__init__.py:360
2547
+ #: sphinx/environment/__init__.py:373
2388
2548
  msgid ""
2389
2549
  "This environment is incompatible with the selected builder, please choose "
2390
2550
  "another doctree directory."
2391
2551
  msgstr ""
2392
2552
 
2393
- #: sphinx/environment/__init__.py:459
2553
+ #: sphinx/environment/__init__.py:472
2394
2554
  #, python-format
2395
2555
  msgid "Failed to scan documents in %s: %r"
2396
2556
  msgstr ""
2397
2557
 
2398
- #: sphinx/environment/__init__.py:596
2558
+ #: sphinx/environment/__init__.py:614
2399
2559
  #, python-format
2400
2560
  msgid "Domain %r is not registered"
2401
2561
  msgstr ""
2402
2562
 
2403
- #: sphinx/environment/__init__.py:730
2563
+ #: sphinx/environment/__init__.py:748
2404
2564
  msgid "document isn't included in any toctree"
2405
2565
  msgstr ""
2406
2566
 
2407
- #: sphinx/environment/__init__.py:766
2567
+ #: sphinx/environment/__init__.py:784
2408
2568
  msgid "self referenced toctree found. Ignored."
2409
2569
  msgstr ""
2410
2570
 
@@ -2424,7 +2584,7 @@ msgid "unknown index entry type %r"
2424
2584
  msgstr ""
2425
2585
 
2426
2586
  #: sphinx/environment/adapters/indexentries.py:187
2427
- #: sphinx/templates/latex/sphinxmessages.sty_t:11
2587
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:11
2428
2588
  msgid "Symbols"
2429
2589
  msgstr ""
2430
2590
 
@@ -2460,17 +2620,17 @@ msgstr ""
2460
2620
  msgid "download file not readable: %s"
2461
2621
  msgstr ""
2462
2622
 
2463
- #: sphinx/environment/collectors/toctree.py:225
2623
+ #: sphinx/environment/collectors/toctree.py:235
2464
2624
  #, python-format
2465
2625
  msgid "%s is already assigned section numbers (nested numbered toctree?)"
2466
2626
  msgstr ""
2467
2627
 
2468
- #: sphinx/ext/apidoc.py:86
2628
+ #: sphinx/ext/apidoc.py:85
2469
2629
  #, python-format
2470
2630
  msgid "Would create file %s."
2471
2631
  msgstr ""
2472
2632
 
2473
- #: sphinx/ext/apidoc.py:318
2633
+ #: sphinx/ext/apidoc.py:366
2474
2634
  msgid ""
2475
2635
  "\n"
2476
2636
  "Look recursively in <MODULE_PATH> for Python modules and packages and create\n"
@@ -2482,149 +2642,171 @@ msgid ""
2482
2642
  "Note: By default this script will not overwrite already created files."
2483
2643
  msgstr ""
2484
2644
 
2485
- #: sphinx/ext/apidoc.py:331
2645
+ #: sphinx/ext/apidoc.py:383
2486
2646
  msgid "path to module to document"
2487
2647
  msgstr ""
2488
2648
 
2489
- #: sphinx/ext/apidoc.py:333
2649
+ #: sphinx/ext/apidoc.py:387
2490
2650
  msgid ""
2491
2651
  "fnmatch-style file and/or directory patterns to exclude from generation"
2492
2652
  msgstr ""
2493
2653
 
2494
- #: sphinx/ext/apidoc.py:338
2654
+ #: sphinx/ext/apidoc.py:396
2495
2655
  msgid "directory to place all output"
2496
2656
  msgstr ""
2497
2657
 
2498
- #: sphinx/ext/apidoc.py:343
2658
+ #: sphinx/ext/apidoc.py:411
2499
2659
  msgid "maximum depth of submodules to show in the TOC (default: 4)"
2500
2660
  msgstr ""
2501
2661
 
2502
- #: sphinx/ext/apidoc.py:346
2662
+ #: sphinx/ext/apidoc.py:414
2503
2663
  msgid "overwrite existing files"
2504
2664
  msgstr ""
2505
2665
 
2506
- #: sphinx/ext/apidoc.py:349
2666
+ #: sphinx/ext/apidoc.py:422
2507
2667
  msgid ""
2508
2668
  "follow symbolic links. Powerful when combined with "
2509
2669
  "collective.recipe.omelette."
2510
2670
  msgstr ""
2511
2671
 
2512
- #: sphinx/ext/apidoc.py:352
2672
+ #: sphinx/ext/apidoc.py:431
2513
2673
  msgid "run the script without creating files"
2514
2674
  msgstr ""
2515
2675
 
2516
- #: sphinx/ext/apidoc.py:355
2676
+ #: sphinx/ext/apidoc.py:438
2517
2677
  msgid "put documentation for each module on its own page"
2518
2678
  msgstr ""
2519
2679
 
2520
- #: sphinx/ext/apidoc.py:358
2680
+ #: sphinx/ext/apidoc.py:445
2521
2681
  msgid "include \"_private\" modules"
2522
2682
  msgstr ""
2523
2683
 
2524
- #: sphinx/ext/apidoc.py:360
2684
+ #: sphinx/ext/apidoc.py:452
2525
2685
  msgid "filename of table of contents (default: modules)"
2526
2686
  msgstr ""
2527
2687
 
2528
- #: sphinx/ext/apidoc.py:362
2688
+ #: sphinx/ext/apidoc.py:459
2529
2689
  msgid "don't create a table of contents file"
2530
2690
  msgstr ""
2531
2691
 
2532
- #: sphinx/ext/apidoc.py:365
2692
+ #: sphinx/ext/apidoc.py:466
2533
2693
  msgid ""
2534
2694
  "don't create headings for the module/package packages (e.g. when the "
2535
2695
  "docstrings already contain them)"
2536
2696
  msgstr ""
2537
2697
 
2538
- #: sphinx/ext/apidoc.py:370
2698
+ #: sphinx/ext/apidoc.py:477
2539
2699
  msgid "put module documentation before submodule documentation"
2540
2700
  msgstr ""
2541
2701
 
2542
- #: sphinx/ext/apidoc.py:374
2702
+ #: sphinx/ext/apidoc.py:483
2543
2703
  msgid ""
2544
2704
  "interpret module paths according to PEP-0420 implicit namespaces "
2545
2705
  "specification"
2546
2706
  msgstr ""
2547
2707
 
2548
- #: sphinx/ext/apidoc.py:378
2708
+ #: sphinx/ext/apidoc.py:493
2549
2709
  msgid "file suffix (default: rst)"
2550
2710
  msgstr ""
2551
2711
 
2552
- #: sphinx/ext/apidoc.py:380
2712
+ #: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828
2713
+ msgid "Remove existing files in the output directory that were not generated"
2714
+ msgstr ""
2715
+
2716
+ #: sphinx/ext/apidoc.py:507
2553
2717
  msgid "generate a full project with sphinx-quickstart"
2554
2718
  msgstr ""
2555
2719
 
2556
- #: sphinx/ext/apidoc.py:383
2720
+ #: sphinx/ext/apidoc.py:514
2557
2721
  msgid "append module_path to sys.path, used when --full is given"
2558
2722
  msgstr ""
2559
2723
 
2560
- #: sphinx/ext/apidoc.py:385
2724
+ #: sphinx/ext/apidoc.py:521
2561
2725
  msgid "project name (default: root module name)"
2562
2726
  msgstr ""
2563
2727
 
2564
- #: sphinx/ext/apidoc.py:387
2728
+ #: sphinx/ext/apidoc.py:528
2565
2729
  msgid "project author(s), used when --full is given"
2566
2730
  msgstr ""
2567
2731
 
2568
- #: sphinx/ext/apidoc.py:389
2732
+ #: sphinx/ext/apidoc.py:535
2569
2733
  msgid "project version, used when --full is given"
2570
2734
  msgstr ""
2571
2735
 
2572
- #: sphinx/ext/apidoc.py:391
2736
+ #: sphinx/ext/apidoc.py:542
2573
2737
  msgid "project release, used when --full is given, defaults to --doc-version"
2574
2738
  msgstr ""
2575
2739
 
2576
- #: sphinx/ext/apidoc.py:394
2740
+ #: sphinx/ext/apidoc.py:545
2577
2741
  msgid "extension options"
2578
2742
  msgstr ""
2579
2743
 
2580
- #: sphinx/ext/apidoc.py:427
2744
+ #: sphinx/ext/apidoc.py:620
2581
2745
  #, python-format
2582
2746
  msgid "%s is not a directory."
2583
2747
  msgstr ""
2584
2748
 
2749
+ #: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862
2750
+ #, python-format
2751
+ msgid "Failed to remove %s: %s"
2752
+ msgstr ""
2753
+
2585
2754
  #: sphinx/ext/autosectionlabel.py:49
2586
2755
  #, python-format
2587
2756
  msgid "section \"%s\" gets labeled as \"%s\""
2588
2757
  msgstr ""
2589
2758
 
2590
- #: sphinx/ext/coverage.py:46
2759
+ #: sphinx/ext/coverage.py:47
2591
2760
  #, python-format
2592
2761
  msgid "invalid regex %r in %s"
2593
2762
  msgstr ""
2594
2763
 
2595
- #: sphinx/ext/coverage.py:75
2764
+ #: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280
2765
+ #, python-format
2766
+ msgid "module %s could not be imported: %s"
2767
+ msgstr ""
2768
+
2769
+ #: sphinx/ext/coverage.py:141
2770
+ #, python-format
2771
+ msgid ""
2772
+ "the following modules are documented but were not specified in "
2773
+ "coverage_modules: %s"
2774
+ msgstr ""
2775
+
2776
+ #: sphinx/ext/coverage.py:149
2777
+ msgid ""
2778
+ "the following modules are specified in coverage_modules but were not "
2779
+ "documented"
2780
+ msgstr ""
2781
+
2782
+ #: sphinx/ext/coverage.py:163
2596
2783
  #, python-format
2597
2784
  msgid ""
2598
2785
  "Testing of coverage in the sources finished, look at the results in "
2599
2786
  "%(outdir)spython.txt."
2600
2787
  msgstr ""
2601
2788
 
2602
- #: sphinx/ext/coverage.py:89
2789
+ #: sphinx/ext/coverage.py:177
2603
2790
  #, python-format
2604
2791
  msgid "invalid regex %r in coverage_c_regexes"
2605
2792
  msgstr ""
2606
2793
 
2607
- #: sphinx/ext/coverage.py:157
2794
+ #: sphinx/ext/coverage.py:245
2608
2795
  #, python-format
2609
2796
  msgid "undocumented c api: %s [%s] in file %s"
2610
2797
  msgstr ""
2611
2798
 
2612
- #: sphinx/ext/coverage.py:189
2613
- #, python-format
2614
- msgid "module %s could not be imported: %s"
2615
- msgstr ""
2616
-
2617
- #: sphinx/ext/coverage.py:340
2799
+ #: sphinx/ext/coverage.py:429
2618
2800
  #, python-format
2619
2801
  msgid "undocumented python function: %s :: %s"
2620
2802
  msgstr ""
2621
2803
 
2622
- #: sphinx/ext/coverage.py:356
2804
+ #: sphinx/ext/coverage.py:445
2623
2805
  #, python-format
2624
2806
  msgid "undocumented python class: %s :: %s"
2625
2807
  msgstr ""
2626
2808
 
2627
- #: sphinx/ext/coverage.py:369
2809
+ #: sphinx/ext/coverage.py:458
2628
2810
  #, python-format
2629
2811
  msgid "undocumented python method: %s :: %s :: %s"
2630
2812
  msgstr ""
@@ -2665,7 +2847,7 @@ msgstr ""
2665
2847
  msgid "ignoring invalid doctest code: %r"
2666
2848
  msgstr ""
2667
2849
 
2668
- #: sphinx/ext/duration.py:77
2850
+ #: sphinx/ext/duration.py:84
2669
2851
  msgid ""
2670
2852
  "====================== slowest reading durations ======================="
2671
2853
  msgstr ""
@@ -2741,7 +2923,7 @@ msgstr ""
2741
2923
  msgid "[graph]"
2742
2924
  msgstr ""
2743
2925
 
2744
- #: sphinx/ext/imgconverter.py:39
2926
+ #: sphinx/ext/imgconverter.py:40
2745
2927
  #, python-format
2746
2928
  msgid ""
2747
2929
  "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n"
@@ -2749,7 +2931,7 @@ msgid ""
2749
2931
  "Traceback: %s"
2750
2932
  msgstr ""
2751
2933
 
2752
- #: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72
2934
+ #: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73
2753
2935
  #, python-format
2754
2936
  msgid ""
2755
2937
  "convert exited with error:\n"
@@ -2759,99 +2941,39 @@ msgid ""
2759
2941
  "%r"
2760
2942
  msgstr ""
2761
2943
 
2762
- #: sphinx/ext/imgconverter.py:67
2944
+ #: sphinx/ext/imgconverter.py:68
2763
2945
  #, python-format
2764
2946
  msgid "convert command %r cannot be run, check the image_converter setting"
2765
2947
  msgstr ""
2766
2948
 
2767
- #: sphinx/ext/imgmath.py:158
2949
+ #: sphinx/ext/imgmath.py:159
2768
2950
  #, python-format
2769
2951
  msgid ""
2770
2952
  "LaTeX command %r cannot be run (needed for math display), check the "
2771
2953
  "imgmath_latex setting"
2772
2954
  msgstr ""
2773
2955
 
2774
- #: sphinx/ext/imgmath.py:173
2956
+ #: sphinx/ext/imgmath.py:174
2775
2957
  #, python-format
2776
2958
  msgid ""
2777
2959
  "%s command %r cannot be run (needed for math display), check the imgmath_%s "
2778
2960
  "setting"
2779
2961
  msgstr ""
2780
2962
 
2781
- #: sphinx/ext/imgmath.py:327
2963
+ #: sphinx/ext/imgmath.py:328
2782
2964
  #, python-format
2783
2965
  msgid "display latex %r: %s"
2784
2966
  msgstr ""
2785
2967
 
2786
- #: sphinx/ext/imgmath.py:361
2968
+ #: sphinx/ext/imgmath.py:362
2787
2969
  #, python-format
2788
2970
  msgid "inline latex %r: %s"
2789
2971
  msgstr ""
2790
2972
 
2791
- #: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53
2973
+ #: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53
2792
2974
  msgid "Link to this equation"
2793
2975
  msgstr ""
2794
2976
 
2795
- #: sphinx/ext/intersphinx.py:195
2796
- #, python-format
2797
- msgid "intersphinx inventory has moved: %s -> %s"
2798
- msgstr ""
2799
-
2800
- #: sphinx/ext/intersphinx.py:230
2801
- #, python-format
2802
- msgid "loading intersphinx inventory from %s..."
2803
- msgstr ""
2804
-
2805
- #: sphinx/ext/intersphinx.py:244
2806
- msgid ""
2807
- "encountered some issues with some of the inventories, but they had working "
2808
- "alternatives:"
2809
- msgstr ""
2810
-
2811
- #: sphinx/ext/intersphinx.py:250
2812
- msgid "failed to reach any of the inventories with the following issues:"
2813
- msgstr ""
2814
-
2815
- #: sphinx/ext/intersphinx.py:303
2816
- #, python-format
2817
- msgid "(in %s v%s)"
2818
- msgstr ""
2819
-
2820
- #: sphinx/ext/intersphinx.py:305
2821
- #, python-format
2822
- msgid "(in %s)"
2823
- msgstr ""
2824
-
2825
- #: sphinx/ext/intersphinx.py:538
2826
- #, python-format
2827
- msgid "inventory for external cross-reference not found: %r"
2828
- msgstr ""
2829
-
2830
- #: sphinx/ext/intersphinx.py:546
2831
- #, python-format
2832
- msgid "invalid external cross-reference suffix: %r"
2833
- msgstr ""
2834
-
2835
- #: sphinx/ext/intersphinx.py:557
2836
- #, python-format
2837
- msgid "domain for external cross-reference not found: %r"
2838
- msgstr ""
2839
-
2840
- #: sphinx/ext/intersphinx.py:750
2841
- #, python-format
2842
- msgid "external %s:%s reference target not found: %s"
2843
- msgstr ""
2844
-
2845
- #: sphinx/ext/intersphinx.py:775
2846
- #, python-format
2847
- msgid "intersphinx identifier %r is not string. Ignored"
2848
- msgstr ""
2849
-
2850
- #: sphinx/ext/intersphinx.py:797
2851
- #, python-format
2852
- msgid "Failed to read intersphinx_mapping[%s], ignored: %r"
2853
- msgstr ""
2854
-
2855
2977
  #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199
2856
2978
  msgid "[source]"
2857
2979
  msgstr ""
@@ -3027,23 +3149,23 @@ msgstr ""
3027
3149
  msgid "Failed to parse type_comment for %r: %s"
3028
3150
  msgstr ""
3029
3151
 
3030
- #: sphinx/ext/autosummary/__init__.py:251
3152
+ #: sphinx/ext/autosummary/__init__.py:252
3031
3153
  #, python-format
3032
3154
  msgid "autosummary references excluded document %r. Ignored."
3033
3155
  msgstr ""
3034
3156
 
3035
- #: sphinx/ext/autosummary/__init__.py:253
3157
+ #: sphinx/ext/autosummary/__init__.py:254
3036
3158
  #, python-format
3037
3159
  msgid ""
3038
3160
  "autosummary: stub file not found %r. Check your autosummary_generate "
3039
3161
  "setting."
3040
3162
  msgstr ""
3041
3163
 
3042
- #: sphinx/ext/autosummary/__init__.py:272
3164
+ #: sphinx/ext/autosummary/__init__.py:273
3043
3165
  msgid "A captioned autosummary requires :toctree: option. ignored."
3044
3166
  msgstr ""
3045
3167
 
3046
- #: sphinx/ext/autosummary/__init__.py:325
3168
+ #: sphinx/ext/autosummary/__init__.py:326
3047
3169
  #, python-format
3048
3170
  msgid ""
3049
3171
  "autosummary: failed to import %s.\n"
@@ -3051,46 +3173,52 @@ msgid ""
3051
3173
  "%s"
3052
3174
  msgstr ""
3053
3175
 
3054
- #: sphinx/ext/autosummary/__init__.py:339
3176
+ #: sphinx/ext/autosummary/__init__.py:340
3055
3177
  #, python-format
3056
3178
  msgid "failed to parse name %s"
3057
3179
  msgstr ""
3058
3180
 
3059
- #: sphinx/ext/autosummary/__init__.py:344
3181
+ #: sphinx/ext/autosummary/__init__.py:345
3060
3182
  #, python-format
3061
3183
  msgid "failed to import object %s"
3062
3184
  msgstr ""
3063
3185
 
3064
- #: sphinx/ext/autosummary/__init__.py:802
3186
+ #: sphinx/ext/autosummary/__init__.py:644
3187
+ #, python-format
3188
+ msgid ""
3189
+ "Summarised items should not include the current module. Replace %r with %r."
3190
+ msgstr ""
3191
+
3192
+ #: sphinx/ext/autosummary/__init__.py:808
3065
3193
  #, python-format
3066
3194
  msgid "autosummary_generate: file not found: %s"
3067
3195
  msgstr ""
3068
3196
 
3069
- #: sphinx/ext/autosummary/__init__.py:810
3197
+ #: sphinx/ext/autosummary/__init__.py:816
3070
3198
  msgid ""
3071
3199
  "autosummary generates .rst files internally. But your source_suffix does not"
3072
3200
  " contain .rst. Skipped."
3073
3201
  msgstr ""
3074
3202
 
3075
- #: sphinx/ext/autosummary/generate.py:200
3076
- #: sphinx/ext/autosummary/generate.py:358
3203
+ #: sphinx/ext/autosummary/generate.py:211
3204
+ #: sphinx/ext/autosummary/generate.py:387
3077
3205
  #, python-format
3078
3206
  msgid ""
3079
3207
  "autosummary: failed to determine %r to be documented, the following exception was raised:\n"
3080
3208
  "%s"
3081
3209
  msgstr ""
3082
3210
 
3083
- #: sphinx/ext/autosummary/generate.py:470
3211
+ #: sphinx/ext/autosummary/generate.py:516
3084
3212
  #, python-format
3085
3213
  msgid "[autosummary] generating autosummary for: %s"
3086
3214
  msgstr ""
3087
3215
 
3088
- #: sphinx/ext/autosummary/generate.py:474
3216
+ #: sphinx/ext/autosummary/generate.py:519
3089
3217
  #, python-format
3090
3218
  msgid "[autosummary] writing to %s"
3091
3219
  msgstr ""
3092
3220
 
3093
- #: sphinx/ext/autosummary/generate.py:517
3221
+ #: sphinx/ext/autosummary/generate.py:561
3094
3222
  #, python-format
3095
3223
  msgid ""
3096
3224
  "[autosummary] failed to import %s.\n"
@@ -3098,7 +3226,7 @@ msgid ""
3098
3226
  "%s"
3099
3227
  msgstr ""
3100
3228
 
3101
- #: sphinx/ext/autosummary/generate.py:690
3229
+ #: sphinx/ext/autosummary/generate.py:756
3102
3230
  msgid ""
3103
3231
  "\n"
3104
3232
  "Generate ReStructuredText using autosummary directives.\n"
@@ -3113,36 +3241,101 @@ msgid ""
3113
3241
  " pydoc sphinx.ext.autosummary\n"
3114
3242
  msgstr ""
3115
3243
 
3116
- #: sphinx/ext/autosummary/generate.py:707
3244
+ #: sphinx/ext/autosummary/generate.py:778
3117
3245
  msgid "source files to generate rST files for"
3118
3246
  msgstr ""
3119
3247
 
3120
- #: sphinx/ext/autosummary/generate.py:711
3248
+ #: sphinx/ext/autosummary/generate.py:786
3121
3249
  msgid "directory to place all output in"
3122
3250
  msgstr ""
3123
3251
 
3124
- #: sphinx/ext/autosummary/generate.py:714
3252
+ #: sphinx/ext/autosummary/generate.py:794
3125
3253
  #, python-format
3126
3254
  msgid "default suffix for files (default: %(default)s)"
3127
3255
  msgstr ""
3128
3256
 
3129
- #: sphinx/ext/autosummary/generate.py:718
3257
+ #: sphinx/ext/autosummary/generate.py:802
3130
3258
  #, python-format
3131
3259
  msgid "custom template directory (default: %(default)s)"
3132
3260
  msgstr ""
3133
3261
 
3134
- #: sphinx/ext/autosummary/generate.py:722
3262
+ #: sphinx/ext/autosummary/generate.py:810
3135
3263
  #, python-format
3136
3264
  msgid "document imported members (default: %(default)s)"
3137
3265
  msgstr ""
3138
3266
 
3139
- #: sphinx/ext/autosummary/generate.py:726
3267
+ #: sphinx/ext/autosummary/generate.py:818
3140
3268
  #, python-format
3141
3269
  msgid ""
3142
3270
  "document exactly the members in module __all__ attribute. (default: "
3143
3271
  "%(default)s)"
3144
3272
  msgstr ""
3145
3273
 
3274
+ #: sphinx/ext/intersphinx/_load.py:35
3275
+ #, python-format
3276
+ msgid "intersphinx identifier %r is not string. Ignored"
3277
+ msgstr ""
3278
+
3279
+ #: sphinx/ext/intersphinx/_load.py:57
3280
+ #, python-format
3281
+ msgid "Failed to read intersphinx_mapping[%s], ignored: %r"
3282
+ msgstr ""
3283
+
3284
+ #: sphinx/ext/intersphinx/_load.py:121
3285
+ #, python-format
3286
+ msgid "loading intersphinx inventory '%s' from %s..."
3287
+ msgstr ""
3288
+
3289
+ #: sphinx/ext/intersphinx/_load.py:136
3290
+ msgid ""
3291
+ "encountered some issues with some of the inventories, but they had working "
3292
+ "alternatives:"
3293
+ msgstr ""
3294
+
3295
+ #: sphinx/ext/intersphinx/_load.py:142
3296
+ msgid "failed to reach any of the inventories with the following issues:"
3297
+ msgstr ""
3298
+
3299
+ #: sphinx/ext/intersphinx/_load.py:166
3300
+ #, python-format
3301
+ msgid "intersphinx inventory has moved: %s -> %s"
3302
+ msgstr ""
3303
+
3304
+ #: sphinx/ext/intersphinx/_resolve.py:42
3305
+ #, python-format
3306
+ msgid "(in %s v%s)"
3307
+ msgstr ""
3308
+
3309
+ #: sphinx/ext/intersphinx/_resolve.py:44
3310
+ #, python-format
3311
+ msgid "(in %s)"
3312
+ msgstr ""
3313
+
3314
+ #: sphinx/ext/intersphinx/_resolve.py:85
3315
+ #, python-format
3316
+ msgid "inventory '%s': multiple matches found for %s:%s"
3317
+ msgstr ""
3318
+
3319
+ #: sphinx/ext/intersphinx/_resolve.py:281
3320
+ #, python-format
3321
+ msgid "inventory for external cross-reference not found: %r"
3322
+ msgstr ""
3323
+
3324
+ #: sphinx/ext/intersphinx/_resolve.py:289
3325
+ #, python-format
3326
+ msgid "invalid external cross-reference suffix: %r"
3327
+ msgstr ""
3328
+
3329
+ #: sphinx/ext/intersphinx/_resolve.py:300
3330
+ #, python-format
3331
+ msgid "domain for external cross-reference not found: %r"
3332
+ msgstr ""
3333
+
3334
+ #: sphinx/ext/intersphinx/_resolve.py:493
3335
+ #, python-format
3336
+ msgid "external %s:%s reference target not found: %s"
3337
+ msgstr ""
3338
+
3146
3339
  #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728
3147
3340
  msgid "Keyword Arguments"
3148
3341
  msgstr ""
@@ -3199,65 +3392,65 @@ msgstr ""
3199
3392
  msgid "malformed string literal (missing opening quote): %s"
3200
3393
  msgstr ""
3201
3394
 
3202
- #: sphinx/locale/__init__.py:228
3395
+ #: sphinx/locale/__init__.py:224
3203
3396
  msgid "Attention"
3204
3397
  msgstr ""
3205
3398
 
3206
- #: sphinx/locale/__init__.py:229
3399
+ #: sphinx/locale/__init__.py:225
3207
3400
  msgid "Caution"
3208
3401
  msgstr ""
3209
3402
 
3210
- #: sphinx/locale/__init__.py:230
3403
+ #: sphinx/locale/__init__.py:226
3211
3404
  msgid "Danger"
3212
3405
  msgstr ""
3213
3406
 
3214
- #: sphinx/locale/__init__.py:231
3407
+ #: sphinx/locale/__init__.py:227
3215
3408
  msgid "Error"
3216
3409
  msgstr ""
3217
3410
 
3218
- #: sphinx/locale/__init__.py:232
3411
+ #: sphinx/locale/__init__.py:228
3219
3412
  msgid "Hint"
3220
3413
  msgstr ""
3221
3414
 
3222
- #: sphinx/locale/__init__.py:233
3415
+ #: sphinx/locale/__init__.py:229
3223
3416
  msgid "Important"
3224
3417
  msgstr ""
3225
3418
 
3226
- #: sphinx/locale/__init__.py:234
3419
+ #: sphinx/locale/__init__.py:230
3227
3420
  msgid "Note"
3228
3421
  msgstr ""
3229
3422
 
3230
- #: sphinx/locale/__init__.py:235
3423
+ #: sphinx/locale/__init__.py:231
3231
3424
  msgid "See also"
3232
3425
  msgstr ""
3233
3426
 
3234
- #: sphinx/locale/__init__.py:236
3427
+ #: sphinx/locale/__init__.py:232
3235
3428
  msgid "Tip"
3236
3429
  msgstr ""
3237
3430
 
3238
- #: sphinx/locale/__init__.py:237
3431
+ #: sphinx/locale/__init__.py:233
3239
3432
  msgid "Warning"
3240
3433
  msgstr ""
3241
3434
 
3242
- #: sphinx/templates/latex/longtable.tex_t:52
3243
- #: sphinx/templates/latex/sphinxmessages.sty_t:8
3435
+ #: sphinx/templates/latex/longtable.tex.jinja:52
3436
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:8
3244
3437
  msgid "continued from previous page"
3245
3438
  msgstr ""
3246
3439
 
3247
- #: sphinx/templates/latex/longtable.tex_t:63
3248
- #: sphinx/templates/latex/sphinxmessages.sty_t:9
3440
+ #: sphinx/templates/latex/longtable.tex.jinja:63
3441
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:9
3249
3442
  msgid "continues on next page"
3250
3443
  msgstr ""
3251
3444
 
3252
- #: sphinx/templates/latex/sphinxmessages.sty_t:10
3445
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:10
3253
3446
  msgid "Non-alphabetical"
3254
3447
  msgstr ""
3255
3448
 
3256
- #: sphinx/templates/latex/sphinxmessages.sty_t:12
3449
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:12
3257
3450
  msgid "Numbers"
3258
3451
  msgstr ""
3259
3452
 
3260
- #: sphinx/templates/latex/sphinxmessages.sty_t:13
3453
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:13
3261
3454
  msgid "page"
3262
3455
  msgstr ""
3263
3456
 
@@ -3266,7 +3459,7 @@ msgstr ""
3266
3459
  msgid "Table of Contents"
3267
3460
  msgstr ""
3268
3461
 
3269
- #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141
3462
+ #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138
3270
3463
  #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23
3271
3464
  msgid "Search"
3272
3465
  msgstr ""
@@ -3324,12 +3517,12 @@ msgstr ""
3324
3517
  msgid "all functions, classes, terms"
3325
3518
  msgstr ""
3326
3519
 
3327
- #: sphinx/themes/basic/genindex-single.html:33
3520
+ #: sphinx/themes/basic/genindex-single.html:34
3328
3521
  #, python-format
3329
- msgid "Index &ndash; %(key)s"
3522
+ msgid "Index &#x2013; %(key)s"
3330
3523
  msgstr ""
3331
3524
 
3332
- #: sphinx/themes/basic/genindex-single.html:61
3525
+ #: sphinx/themes/basic/genindex-single.html:62
3333
3526
  #: sphinx/themes/basic/genindex-split.html:24
3334
3527
  #: sphinx/themes/basic/genindex-split.html:38
3335
3528
  #: sphinx/themes/basic/genindex.html:73
@@ -3348,31 +3541,31 @@ msgstr ""
3348
3541
  msgid "Navigation"
3349
3542
  msgstr ""
3350
3543
 
3351
- #: sphinx/themes/basic/layout.html:126
3544
+ #: sphinx/themes/basic/layout.html:123
3352
3545
  #, python-format
3353
3546
  msgid "Search within %(docstitle)s"
3354
3547
  msgstr ""
3355
3548
 
3356
- #: sphinx/themes/basic/layout.html:135
3549
+ #: sphinx/themes/basic/layout.html:132
3357
3550
  msgid "About these documents"
3358
3551
  msgstr ""
3359
3552
 
3360
- #: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188
3361
- #: sphinx/themes/basic/layout.html:190
3553
+ #: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185
3554
+ #: sphinx/themes/basic/layout.html:187
3362
3555
  msgid "Copyright"
3363
3556
  msgstr ""
3364
3557
 
3365
- #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200
3558
+ #: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197
3366
3559
  #, python-format
3367
3560
  msgid "&#169; %(copyright_prefix)s %(copyright)s."
3368
3561
  msgstr ""
3369
3562
 
3370
- #: sphinx/themes/basic/layout.html:212
3563
+ #: sphinx/themes/basic/layout.html:209
3371
3564
  #, python-format
3372
3565
  msgid "Last updated on %(last_updated)s."
3373
3566
  msgstr ""
3374
3567
 
3375
- #: sphinx/themes/basic/layout.html:215
3568
+ #: sphinx/themes/basic/layout.html:212
3376
3569
  #, python-format
3377
3570
  msgid ""
3378
3571
  "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
@@ -3475,7 +3668,7 @@ msgstr ""
3475
3668
  msgid "Preparing search..."
3476
3669
  msgstr ""
3477
3670
 
3478
- #: sphinx/themes/basic/static/searchtools.js:463
3671
+ #: sphinx/themes/basic/static/searchtools.js:464
3479
3672
  msgid ", in "
3480
3673
  msgstr ""
3481
3674
 
@@ -3484,11 +3677,11 @@ msgid "Hide Search Matches"
3484
3677
  msgstr ""
3485
3678
 
3486
3679
  #: sphinx/themes/classic/layout.html:20
3487
- #: sphinx/themes/classic/static/sidebar.js_t:57
3680
+ #: sphinx/themes/classic/static/sidebar.js.jinja:57
3488
3681
  msgid "Collapse sidebar"
3489
3682
  msgstr ""
3490
3683
 
3491
- #: sphinx/themes/classic/static/sidebar.js_t:48
3684
+ #: sphinx/themes/classic/static/sidebar.js.jinja:48
3492
3685
  msgid "Expand sidebar"
3493
3686
  msgstr ""
3494
3687
 
@@ -3564,17 +3757,17 @@ msgstr ""
3564
3757
  msgid "%r reference target not found: %s"
3565
3758
  msgstr ""
3566
3759
 
3567
- #: sphinx/transforms/post_transforms/images.py:89
3760
+ #: sphinx/transforms/post_transforms/images.py:83
3568
3761
  #, python-format
3569
3762
  msgid "Could not fetch remote image: %s [%d]"
3570
3763
  msgstr ""
3571
3764
 
3572
- #: sphinx/transforms/post_transforms/images.py:117
3765
+ #: sphinx/transforms/post_transforms/images.py:111
3573
3766
  #, python-format
3574
3767
  msgid "Could not fetch remote image: %s [%s]"
3575
3768
  msgstr ""
3576
3769
 
3577
- #: sphinx/transforms/post_transforms/images.py:135
3770
+ #: sphinx/transforms/post_transforms/images.py:127
3578
3771
  #, python-format
3579
3772
  msgid "Unknown image format: %s..."
3580
3773
  msgstr ""
@@ -3584,11 +3777,11 @@ msgstr ""
3584
3777
  msgid "undecodable source characters, replacing with \"?\": %r"
3585
3778
  msgstr ""
3586
3779
 
3587
- #: sphinx/util/display.py:78
3780
+ #: sphinx/util/display.py:80
3588
3781
  msgid "skipped"
3589
3782
  msgstr ""
3590
3783
 
3591
- #: sphinx/util/display.py:83
3784
+ #: sphinx/util/display.py:85
3592
3785
  msgid "failed"
3593
3786
  msgstr ""
3594
3787
 
@@ -3599,12 +3792,12 @@ msgid ""
3599
3792
  "not in the domain."
3600
3793
  msgstr ""
3601
3794
 
3602
- #: sphinx/util/docutils.py:295
3795
+ #: sphinx/util/docutils.py:261
3603
3796
  #, python-format
3604
3797
  msgid "unknown directive or role name: %s:%s"
3605
3798
  msgstr ""
3606
3799
 
3607
- #: sphinx/util/docutils.py:591
3800
+ #: sphinx/util/docutils.py:639
3608
3801
  #, python-format
3609
3802
  msgid "unknown node type: %r"
3610
3803
  msgstr ""
@@ -3631,18 +3824,23 @@ msgid ""
3631
3824
  "it directly: %s"
3632
3825
  msgstr ""
3633
3826
 
3634
- #: sphinx/util/nodes.py:386
3827
+ #: sphinx/util/inventory.py:168
3828
+ #, python-format
3829
+ msgid "inventory <%s> contains multiple definitions for %s"
3830
+ msgstr ""
3831
+
3832
+ #: sphinx/util/nodes.py:383
3635
3833
  #, python-format
3636
3834
  msgid ""
3637
3835
  "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
3638
3836
  msgstr ""
3639
3837
 
3640
- #: sphinx/util/nodes.py:439
3838
+ #: sphinx/util/nodes.py:436
3641
3839
  #, python-format
3642
3840
  msgid "toctree contains ref to nonexisting file %r"
3643
3841
  msgstr ""
3644
3842
 
3645
- #: sphinx/util/nodes.py:637
3843
+ #: sphinx/util/nodes.py:634
3646
3844
  #, python-format
3647
3845
  msgid "exception while evaluating only directive expression: %s"
3648
3846
  msgstr ""
@@ -3652,45 +3850,50 @@ msgstr ""
3652
3850
  msgid "default role %s not found"
3653
3851
  msgstr ""
3654
3852
 
3655
- #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109
3853
+ #: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108
3656
3854
  msgid "Link to this definition"
3657
3855
  msgstr ""
3658
3856
 
3659
- #: sphinx/writers/html5.py:397
3857
+ #: sphinx/writers/html5.py:398
3660
3858
  #, python-format
3661
3859
  msgid "numfig_format is not defined for %s"
3662
3860
  msgstr ""
3663
3861
 
3664
- #: sphinx/writers/html5.py:407
3862
+ #: sphinx/writers/html5.py:408
3665
3863
  #, python-format
3666
3864
  msgid "Any IDs not assigned for %s node"
3667
3865
  msgstr ""
3668
3866
 
3669
- #: sphinx/writers/html5.py:462
3867
+ #: sphinx/writers/html5.py:463
3670
3868
  msgid "Link to this term"
3671
3869
  msgstr ""
3672
3870
 
3673
- #: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501
3871
+ #: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502
3674
3872
  msgid "Link to this heading"
3675
3873
  msgstr ""
3676
3874
 
3677
- #: sphinx/writers/html5.py:505
3875
+ #: sphinx/writers/html5.py:506
3678
3876
  msgid "Link to this table"
3679
3877
  msgstr ""
3680
3878
 
3681
- #: sphinx/writers/html5.py:548
3879
+ #: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977
3880
+ #, python-format
3881
+ msgid "unsupported rubric heading level: %s"
3882
+ msgstr ""
3883
+
3884
+ #: sphinx/writers/html5.py:573
3682
3885
  msgid "Link to this code"
3683
3886
  msgstr ""
3684
3887
 
3685
- #: sphinx/writers/html5.py:550
3888
+ #: sphinx/writers/html5.py:575
3686
3889
  msgid "Link to this image"
3687
3890
  msgstr ""
3688
3891
 
3689
- #: sphinx/writers/html5.py:552
3892
+ #: sphinx/writers/html5.py:577
3690
3893
  msgid "Link to this toctree"
3691
3894
  msgstr ""
3692
3895
 
3693
- #: sphinx/writers/html5.py:688
3896
+ #: sphinx/writers/html5.py:713
3694
3897
  msgid "Could not obtain image size. :scale: option is ignored."
3695
3898
  msgstr ""
3696
3899
 
@@ -3703,31 +3906,36 @@ msgstr ""
3703
3906
  msgid "too large :maxdepth:, ignored."
3704
3907
  msgstr ""
3705
3908
 
3706
- #: sphinx/writers/latex.py:625
3909
+ #: sphinx/writers/latex.py:530
3910
+ #, python-format
3911
+ msgid "template %s not found; loading from legacy %s instead"
3912
+ msgstr ""
3913
+
3914
+ #: sphinx/writers/latex.py:634
3707
3915
  msgid "document title is not a single Text node"
3708
3916
  msgstr ""
3709
3917
 
3710
- #: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626
3918
+ #: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631
3711
3919
  msgid ""
3712
3920
  "encountered title node not in section, topic, table, admonition or sidebar"
3713
3921
  msgstr ""
3714
3922
 
3715
- #: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259
3716
- #: sphinx/writers/texinfo.py:641
3923
+ #: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259
3924
+ #: sphinx/writers/texinfo.py:646
3717
3925
  msgid "Footnotes"
3718
3926
  msgstr ""
3719
3927
 
3720
- #: sphinx/writers/latex.py:1028
3928
+ #: sphinx/writers/latex.py:1050
3721
3929
  msgid ""
3722
3930
  "both tabularcolumns and :widths: option are given. :widths: is ignored."
3723
3931
  msgstr ""
3724
3932
 
3725
- #: sphinx/writers/latex.py:1388
3933
+ #: sphinx/writers/latex.py:1410
3726
3934
  #, python-format
3727
3935
  msgid "dimension unit %s is invalid. Ignored."
3728
3936
  msgstr ""
3729
3937
 
3730
- #: sphinx/writers/latex.py:1722
3938
+ #: sphinx/writers/latex.py:1744
3731
3939
  #, python-format
3732
3940
  msgid "unknown index entry type %s found"
3733
3941
  msgstr ""
@@ -3741,11 +3949,11 @@ msgstr ""
3741
3949
  msgid "[image]"
3742
3950
  msgstr ""
3743
3951
 
3744
- #: sphinx/writers/texinfo.py:1197
3952
+ #: sphinx/writers/texinfo.py:1202
3745
3953
  msgid "caption not inside a figure."
3746
3954
  msgstr ""
3747
3955
 
3748
- #: sphinx/writers/texinfo.py:1284
3956
+ #: sphinx/writers/texinfo.py:1289
3749
3957
  #, python-format
3750
3958
  msgid "unimplemented node type: %r"
3751
3959
  msgstr ""