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