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

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

Potentially problematic release.


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

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