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