Sphinx 7.2.6__py3-none-any.whl → 7.3.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 (388) hide show
  1. sphinx/__init__.py +8 -9
  2. sphinx/addnodes.py +31 -28
  3. sphinx/application.py +9 -15
  4. sphinx/builders/__init__.py +5 -6
  5. sphinx/builders/_epub_base.py +17 -9
  6. sphinx/builders/changes.py +10 -5
  7. sphinx/builders/dirhtml.py +4 -2
  8. sphinx/builders/dummy.py +3 -2
  9. sphinx/builders/epub3.py +5 -3
  10. sphinx/builders/gettext.py +24 -7
  11. sphinx/builders/html/__init__.py +88 -96
  12. sphinx/builders/html/_assets.py +16 -16
  13. sphinx/builders/html/transforms.py +4 -2
  14. sphinx/builders/latex/__init__.py +40 -33
  15. sphinx/builders/latex/nodes.py +6 -2
  16. sphinx/builders/latex/transforms.py +17 -8
  17. sphinx/builders/latex/util.py +1 -1
  18. sphinx/builders/linkcheck.py +86 -27
  19. sphinx/builders/manpage.py +8 -6
  20. sphinx/builders/singlehtml.py +5 -4
  21. sphinx/builders/texinfo.py +18 -14
  22. sphinx/builders/text.py +3 -2
  23. sphinx/builders/xml.py +5 -2
  24. sphinx/cmd/build.py +119 -76
  25. sphinx/cmd/make_mode.py +4 -9
  26. sphinx/cmd/quickstart.py +13 -16
  27. sphinx/config.py +432 -250
  28. sphinx/deprecation.py +23 -13
  29. sphinx/directives/__init__.py +8 -8
  30. sphinx/directives/code.py +7 -7
  31. sphinx/directives/other.py +23 -13
  32. sphinx/directives/patches.py +7 -6
  33. sphinx/domains/__init__.py +2 -2
  34. sphinx/domains/c/__init__.py +796 -0
  35. sphinx/domains/c/_ast.py +1421 -0
  36. sphinx/domains/c/_ids.py +65 -0
  37. sphinx/domains/c/_parser.py +1048 -0
  38. sphinx/domains/c/_symbol.py +700 -0
  39. sphinx/domains/changeset.py +11 -7
  40. sphinx/domains/citation.py +5 -2
  41. sphinx/domains/cpp/__init__.py +1089 -0
  42. sphinx/domains/cpp/_ast.py +3635 -0
  43. sphinx/domains/cpp/_ids.py +537 -0
  44. sphinx/domains/cpp/_parser.py +2117 -0
  45. sphinx/domains/cpp/_symbol.py +1092 -0
  46. sphinx/domains/index.py +6 -4
  47. sphinx/domains/javascript.py +16 -13
  48. sphinx/domains/math.py +9 -4
  49. sphinx/domains/python/__init__.py +890 -0
  50. sphinx/domains/python/_annotations.py +507 -0
  51. sphinx/domains/python/_object.py +426 -0
  52. sphinx/domains/rst.py +12 -7
  53. sphinx/domains/{std.py → std/__init__.py} +19 -16
  54. sphinx/environment/__init__.py +21 -19
  55. sphinx/environment/adapters/indexentries.py +2 -2
  56. sphinx/environment/adapters/toctree.py +10 -9
  57. sphinx/environment/collectors/__init__.py +6 -3
  58. sphinx/environment/collectors/asset.py +4 -3
  59. sphinx/environment/collectors/dependencies.py +3 -2
  60. sphinx/environment/collectors/metadata.py +6 -5
  61. sphinx/environment/collectors/title.py +3 -2
  62. sphinx/environment/collectors/toctree.py +5 -4
  63. sphinx/errors.py +13 -2
  64. sphinx/events.py +14 -9
  65. sphinx/ext/apidoc.py +9 -11
  66. sphinx/ext/autodoc/__init__.py +105 -71
  67. sphinx/ext/autodoc/directive.py +7 -6
  68. sphinx/ext/autodoc/importer.py +102 -36
  69. sphinx/ext/autodoc/mock.py +7 -5
  70. sphinx/ext/autodoc/preserve_defaults.py +4 -3
  71. sphinx/ext/autodoc/type_comment.py +2 -1
  72. sphinx/ext/autodoc/typehints.py +5 -4
  73. sphinx/ext/autosectionlabel.py +3 -2
  74. sphinx/ext/autosummary/__init__.py +21 -17
  75. sphinx/ext/autosummary/generate.py +9 -9
  76. sphinx/ext/coverage.py +26 -20
  77. sphinx/ext/doctest.py +38 -33
  78. sphinx/ext/duration.py +1 -0
  79. sphinx/ext/extlinks.py +4 -3
  80. sphinx/ext/githubpages.py +3 -2
  81. sphinx/ext/graphviz.py +10 -7
  82. sphinx/ext/ifconfig.py +5 -5
  83. sphinx/ext/imgconverter.py +6 -5
  84. sphinx/ext/imgmath.py +9 -8
  85. sphinx/ext/inheritance_diagram.py +31 -31
  86. sphinx/ext/intersphinx.py +140 -23
  87. sphinx/ext/linkcode.py +3 -2
  88. sphinx/ext/mathjax.py +2 -1
  89. sphinx/ext/napoleon/__init__.py +12 -7
  90. sphinx/ext/napoleon/docstring.py +34 -32
  91. sphinx/ext/todo.py +10 -7
  92. sphinx/ext/viewcode.py +12 -11
  93. sphinx/extension.py +18 -8
  94. sphinx/highlighting.py +39 -20
  95. sphinx/io.py +17 -8
  96. sphinx/jinja2glue.py +16 -15
  97. sphinx/locale/__init__.py +30 -23
  98. sphinx/locale/ar/LC_MESSAGES/sphinx.mo +0 -0
  99. sphinx/locale/ar/LC_MESSAGES/sphinx.po +818 -761
  100. sphinx/locale/bg/LC_MESSAGES/sphinx.mo +0 -0
  101. sphinx/locale/bg/LC_MESSAGES/sphinx.po +811 -754
  102. sphinx/locale/bn/LC_MESSAGES/sphinx.mo +0 -0
  103. sphinx/locale/bn/LC_MESSAGES/sphinx.po +835 -778
  104. sphinx/locale/ca/LC_MESSAGES/sphinx.mo +0 -0
  105. sphinx/locale/ca/LC_MESSAGES/sphinx.po +864 -807
  106. sphinx/locale/cak/LC_MESSAGES/sphinx.mo +0 -0
  107. sphinx/locale/cak/LC_MESSAGES/sphinx.po +816 -759
  108. sphinx/locale/cs/LC_MESSAGES/sphinx.mo +0 -0
  109. sphinx/locale/cs/LC_MESSAGES/sphinx.po +837 -780
  110. sphinx/locale/cy/LC_MESSAGES/sphinx.mo +0 -0
  111. sphinx/locale/cy/LC_MESSAGES/sphinx.po +819 -762
  112. sphinx/locale/da/LC_MESSAGES/sphinx.mo +0 -0
  113. sphinx/locale/da/LC_MESSAGES/sphinx.po +838 -781
  114. sphinx/locale/de/LC_MESSAGES/sphinx.mo +0 -0
  115. sphinx/locale/de/LC_MESSAGES/sphinx.po +838 -781
  116. sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo +0 -0
  117. sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +811 -754
  118. sphinx/locale/el/LC_MESSAGES/sphinx.mo +0 -0
  119. sphinx/locale/el/LC_MESSAGES/sphinx.po +853 -796
  120. sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo +0 -0
  121. sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +811 -754
  122. sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +0 -0
  123. sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +811 -754
  124. sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +0 -0
  125. sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +856 -799
  126. sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +0 -0
  127. sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +811 -754
  128. sphinx/locale/eo/LC_MESSAGES/sphinx.mo +0 -0
  129. sphinx/locale/eo/LC_MESSAGES/sphinx.po +820 -763
  130. sphinx/locale/es/LC_MESSAGES/sphinx.mo +0 -0
  131. sphinx/locale/es/LC_MESSAGES/sphinx.po +856 -799
  132. sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo +0 -0
  133. sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +811 -754
  134. sphinx/locale/et/LC_MESSAGES/sphinx.mo +0 -0
  135. sphinx/locale/et/LC_MESSAGES/sphinx.po +845 -788
  136. sphinx/locale/eu/LC_MESSAGES/sphinx.mo +0 -0
  137. sphinx/locale/eu/LC_MESSAGES/sphinx.po +837 -780
  138. sphinx/locale/fa/LC_MESSAGES/sphinx.mo +0 -0
  139. sphinx/locale/fa/LC_MESSAGES/sphinx.po +854 -797
  140. sphinx/locale/fi/LC_MESSAGES/sphinx.mo +0 -0
  141. sphinx/locale/fi/LC_MESSAGES/sphinx.po +816 -759
  142. sphinx/locale/fr/LC_MESSAGES/sphinx.js +1 -1
  143. sphinx/locale/fr/LC_MESSAGES/sphinx.mo +0 -0
  144. sphinx/locale/fr/LC_MESSAGES/sphinx.po +904 -847
  145. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +0 -0
  146. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +811 -754
  147. sphinx/locale/gl/LC_MESSAGES/sphinx.js +54 -54
  148. sphinx/locale/gl/LC_MESSAGES/sphinx.mo +0 -0
  149. sphinx/locale/gl/LC_MESSAGES/sphinx.po +1506 -1449
  150. sphinx/locale/he/LC_MESSAGES/sphinx.js +1 -1
  151. sphinx/locale/he/LC_MESSAGES/sphinx.mo +0 -0
  152. sphinx/locale/he/LC_MESSAGES/sphinx.po +823 -766
  153. sphinx/locale/hi/LC_MESSAGES/sphinx.mo +0 -0
  154. sphinx/locale/hi/LC_MESSAGES/sphinx.po +853 -796
  155. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +0 -0
  156. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +811 -754
  157. sphinx/locale/hr/LC_MESSAGES/sphinx.mo +0 -0
  158. sphinx/locale/hr/LC_MESSAGES/sphinx.po +844 -787
  159. sphinx/locale/hu/LC_MESSAGES/sphinx.mo +0 -0
  160. sphinx/locale/hu/LC_MESSAGES/sphinx.po +837 -780
  161. sphinx/locale/id/LC_MESSAGES/sphinx.mo +0 -0
  162. sphinx/locale/id/LC_MESSAGES/sphinx.po +854 -797
  163. sphinx/locale/is/LC_MESSAGES/sphinx.mo +0 -0
  164. sphinx/locale/is/LC_MESSAGES/sphinx.po +811 -754
  165. sphinx/locale/it/LC_MESSAGES/sphinx.mo +0 -0
  166. sphinx/locale/it/LC_MESSAGES/sphinx.po +837 -780
  167. sphinx/locale/ja/LC_MESSAGES/sphinx.mo +0 -0
  168. sphinx/locale/ja/LC_MESSAGES/sphinx.po +853 -796
  169. sphinx/locale/ka/LC_MESSAGES/sphinx.mo +0 -0
  170. sphinx/locale/ka/LC_MESSAGES/sphinx.po +848 -791
  171. sphinx/locale/ko/LC_MESSAGES/sphinx.mo +0 -0
  172. sphinx/locale/ko/LC_MESSAGES/sphinx.po +855 -798
  173. sphinx/locale/lt/LC_MESSAGES/sphinx.mo +0 -0
  174. sphinx/locale/lt/LC_MESSAGES/sphinx.po +837 -780
  175. sphinx/locale/lv/LC_MESSAGES/sphinx.mo +0 -0
  176. sphinx/locale/lv/LC_MESSAGES/sphinx.po +837 -780
  177. sphinx/locale/mk/LC_MESSAGES/sphinx.mo +0 -0
  178. sphinx/locale/mk/LC_MESSAGES/sphinx.po +825 -768
  179. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +27 -27
  180. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +0 -0
  181. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +876 -818
  182. sphinx/locale/ne/LC_MESSAGES/sphinx.mo +0 -0
  183. sphinx/locale/ne/LC_MESSAGES/sphinx.po +837 -780
  184. sphinx/locale/nl/LC_MESSAGES/sphinx.mo +0 -0
  185. sphinx/locale/nl/LC_MESSAGES/sphinx.po +844 -787
  186. sphinx/locale/pl/LC_MESSAGES/sphinx.mo +0 -0
  187. sphinx/locale/pl/LC_MESSAGES/sphinx.po +845 -788
  188. sphinx/locale/pt/LC_MESSAGES/sphinx.mo +0 -0
  189. sphinx/locale/pt/LC_MESSAGES/sphinx.po +811 -754
  190. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +0 -0
  191. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +908 -851
  192. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +0 -0
  193. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +837 -780
  194. sphinx/locale/ro/LC_MESSAGES/sphinx.mo +0 -0
  195. sphinx/locale/ro/LC_MESSAGES/sphinx.po +837 -780
  196. sphinx/locale/ru/LC_MESSAGES/sphinx.mo +0 -0
  197. sphinx/locale/ru/LC_MESSAGES/sphinx.po +838 -781
  198. sphinx/locale/si/LC_MESSAGES/sphinx.mo +0 -0
  199. sphinx/locale/si/LC_MESSAGES/sphinx.po +823 -766
  200. sphinx/locale/sk/LC_MESSAGES/sphinx.mo +0 -0
  201. sphinx/locale/sk/LC_MESSAGES/sphinx.po +854 -797
  202. sphinx/locale/sl/LC_MESSAGES/sphinx.mo +0 -0
  203. sphinx/locale/sl/LC_MESSAGES/sphinx.po +832 -775
  204. sphinx/locale/sphinx.pot +813 -755
  205. sphinx/locale/sq/LC_MESSAGES/sphinx.js +1 -1
  206. sphinx/locale/sq/LC_MESSAGES/sphinx.mo +0 -0
  207. sphinx/locale/sq/LC_MESSAGES/sphinx.po +865 -808
  208. sphinx/locale/sr/LC_MESSAGES/sphinx.mo +0 -0
  209. sphinx/locale/sr/LC_MESSAGES/sphinx.po +835 -778
  210. sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo +0 -0
  211. sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo +0 -0
  212. sphinx/locale/sv/LC_MESSAGES/sphinx.mo +0 -0
  213. sphinx/locale/sv/LC_MESSAGES/sphinx.po +837 -780
  214. sphinx/locale/ta/LC_MESSAGES/sphinx.js +54 -54
  215. sphinx/locale/ta/LC_MESSAGES/sphinx.mo +0 -0
  216. sphinx/locale/ta/LC_MESSAGES/sphinx.po +1530 -1473
  217. sphinx/locale/te/LC_MESSAGES/sphinx.mo +0 -0
  218. sphinx/locale/te/LC_MESSAGES/sphinx.po +811 -754
  219. sphinx/locale/tr/LC_MESSAGES/sphinx.mo +0 -0
  220. sphinx/locale/tr/LC_MESSAGES/sphinx.po +853 -796
  221. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +0 -0
  222. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +833 -776
  223. sphinx/locale/ur/LC_MESSAGES/sphinx.mo +0 -0
  224. sphinx/locale/ur/LC_MESSAGES/sphinx.po +811 -754
  225. sphinx/locale/vi/LC_MESSAGES/sphinx.mo +0 -0
  226. sphinx/locale/vi/LC_MESSAGES/sphinx.po +837 -780
  227. sphinx/locale/yue/LC_MESSAGES/sphinx.mo +0 -0
  228. sphinx/locale/yue/LC_MESSAGES/sphinx.po +811 -754
  229. sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo +0 -0
  230. sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +855 -798
  231. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +0 -0
  232. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +811 -754
  233. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +1 -1
  234. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +0 -0
  235. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +879 -822
  236. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +0 -0
  237. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +811 -754
  238. sphinx/parsers.py +7 -5
  239. sphinx/project.py +18 -11
  240. sphinx/pycode/__init__.py +6 -5
  241. sphinx/pycode/ast.py +23 -8
  242. sphinx/pycode/parser.py +6 -5
  243. sphinx/registry.py +12 -6
  244. sphinx/roles.py +103 -57
  245. sphinx/search/__init__.py +17 -18
  246. sphinx/search/da.py +2 -2
  247. sphinx/search/de.py +2 -2
  248. sphinx/search/en.py +1 -1
  249. sphinx/search/es.py +2 -2
  250. sphinx/search/fi.py +2 -2
  251. sphinx/search/fr.py +2 -2
  252. sphinx/search/hu.py +2 -2
  253. sphinx/search/it.py +2 -2
  254. sphinx/search/ja.py +13 -22
  255. sphinx/search/nl.py +2 -2
  256. sphinx/search/no.py +2 -2
  257. sphinx/search/pt.py +2 -2
  258. sphinx/search/ro.py +1 -1
  259. sphinx/search/ru.py +2 -2
  260. sphinx/search/sv.py +2 -2
  261. sphinx/search/tr.py +1 -1
  262. sphinx/search/zh.py +2 -3
  263. sphinx/templates/graphviz/graphviz.css +1 -1
  264. sphinx/testing/fixtures.py +41 -24
  265. sphinx/testing/path.py +1 -1
  266. sphinx/testing/util.py +142 -53
  267. sphinx/texinputs/sphinx.xdy +1 -1
  268. sphinx/texinputs/sphinxlatextables.sty +1 -1
  269. sphinx/texinputs/sphinxpackagesubstitutefont.sty +21 -0
  270. sphinx/themes/agogo/layout.html +4 -4
  271. sphinx/themes/agogo/static/agogo.css_t +1 -1
  272. sphinx/themes/agogo/theme.toml +22 -0
  273. sphinx/themes/basic/defindex.html +1 -1
  274. sphinx/themes/basic/domainindex.html +1 -1
  275. sphinx/themes/basic/genindex-single.html +1 -1
  276. sphinx/themes/basic/genindex-split.html +1 -1
  277. sphinx/themes/basic/genindex.html +1 -1
  278. sphinx/themes/basic/globaltoc.html +1 -1
  279. sphinx/themes/basic/layout.html +1 -1
  280. sphinx/themes/basic/localtoc.html +1 -1
  281. sphinx/themes/basic/page.html +1 -1
  282. sphinx/themes/basic/relations.html +1 -1
  283. sphinx/themes/basic/search.html +5 -20
  284. sphinx/themes/basic/searchbox.html +3 -3
  285. sphinx/themes/basic/searchfield.html +3 -3
  286. sphinx/themes/basic/sourcelink.html +1 -1
  287. sphinx/themes/basic/static/basic.css_t +1 -1
  288. sphinx/themes/basic/static/doctools.js +1 -1
  289. sphinx/themes/basic/static/language_data.js_t +2 -2
  290. sphinx/themes/basic/static/searchtools.js +105 -60
  291. sphinx/themes/basic/theme.toml +23 -0
  292. sphinx/themes/bizstyle/layout.html +1 -6
  293. sphinx/themes/bizstyle/static/bizstyle.css_t +1 -1
  294. sphinx/themes/bizstyle/static/bizstyle.js_t +1 -1
  295. sphinx/themes/bizstyle/static/css3-mediaqueries_src.js +3 -3
  296. sphinx/themes/bizstyle/theme.toml +12 -0
  297. sphinx/themes/classic/layout.html +1 -1
  298. sphinx/themes/classic/static/classic.css_t +1 -1
  299. sphinx/themes/classic/static/sidebar.js_t +1 -1
  300. sphinx/themes/classic/theme.toml +34 -0
  301. sphinx/themes/default/theme.toml +2 -0
  302. sphinx/themes/epub/epub-cover.html +1 -1
  303. sphinx/themes/epub/layout.html +1 -1
  304. sphinx/themes/epub/static/epub.css_t +1 -1
  305. sphinx/themes/epub/theme.toml +10 -0
  306. sphinx/themes/haiku/layout.html +3 -3
  307. sphinx/themes/haiku/static/haiku.css_t +2 -2
  308. sphinx/themes/haiku/theme.toml +16 -0
  309. sphinx/themes/nature/static/nature.css_t +1 -1
  310. sphinx/themes/nature/theme.toml +6 -0
  311. sphinx/themes/nonav/layout.html +1 -1
  312. sphinx/themes/nonav/static/nonav.css_t +1 -1
  313. sphinx/themes/nonav/theme.toml +10 -0
  314. sphinx/themes/pyramid/static/epub.css_t +1 -1
  315. sphinx/themes/pyramid/static/pyramid.css_t +1 -1
  316. sphinx/themes/pyramid/theme.toml +6 -0
  317. sphinx/themes/scrolls/artwork/logo.svg +1 -1
  318. sphinx/themes/scrolls/layout.html +2 -2
  319. sphinx/themes/scrolls/static/scrolls.css_t +1 -1
  320. sphinx/themes/scrolls/theme.toml +15 -0
  321. sphinx/themes/sphinxdoc/static/sphinxdoc.css_t +1 -1
  322. sphinx/themes/sphinxdoc/theme.toml +6 -0
  323. sphinx/themes/traditional/static/traditional.css_t +1 -1
  324. sphinx/themes/traditional/theme.toml +9 -0
  325. sphinx/theming.py +427 -131
  326. sphinx/transforms/__init__.py +21 -24
  327. sphinx/transforms/compact_bullet_list.py +5 -5
  328. sphinx/transforms/i18n.py +30 -28
  329. sphinx/transforms/post_transforms/__init__.py +9 -7
  330. sphinx/transforms/post_transforms/code.py +4 -1
  331. sphinx/transforms/post_transforms/images.py +17 -13
  332. sphinx/transforms/references.py +3 -1
  333. sphinx/util/__init__.py +15 -11
  334. sphinx/util/_io.py +34 -0
  335. sphinx/util/_pathlib.py +23 -18
  336. sphinx/util/build_phase.py +1 -0
  337. sphinx/util/cfamily.py +19 -11
  338. sphinx/util/console.py +101 -21
  339. sphinx/util/display.py +3 -2
  340. sphinx/util/docfields.py +12 -8
  341. sphinx/util/docutils.py +21 -35
  342. sphinx/util/exceptions.py +3 -2
  343. sphinx/util/fileutil.py +5 -5
  344. sphinx/util/http_date.py +9 -2
  345. sphinx/util/i18n.py +40 -9
  346. sphinx/util/inspect.py +317 -245
  347. sphinx/util/inventory.py +22 -5
  348. sphinx/util/logging.py +81 -7
  349. sphinx/util/matching.py +2 -1
  350. sphinx/util/math.py +1 -2
  351. sphinx/util/nodes.py +39 -29
  352. sphinx/util/osutil.py +25 -6
  353. sphinx/util/parallel.py +6 -1
  354. sphinx/util/requests.py +8 -5
  355. sphinx/util/rst.py +8 -6
  356. sphinx/util/tags.py +3 -3
  357. sphinx/util/template.py +8 -3
  358. sphinx/util/typing.py +76 -42
  359. sphinx/versioning.py +6 -2
  360. sphinx/writers/html.py +1 -1
  361. sphinx/writers/html5.py +17 -13
  362. sphinx/writers/latex.py +12 -12
  363. sphinx/writers/manpage.py +13 -7
  364. sphinx/writers/texinfo.py +13 -10
  365. sphinx/writers/text.py +13 -23
  366. sphinx/writers/xml.py +1 -1
  367. sphinx-7.2.6.dist-info/LICENSE → sphinx-7.3.0.dist-info/LICENSE.rst +1 -1
  368. {sphinx-7.2.6.dist-info → sphinx-7.3.0.dist-info}/METADATA +13 -12
  369. sphinx-7.3.0.dist-info/RECORD +581 -0
  370. sphinx/domains/c.py +0 -3906
  371. sphinx/domains/cpp.py +0 -8233
  372. sphinx/domains/python.py +0 -1769
  373. sphinx/themes/agogo/theme.conf +0 -20
  374. sphinx/themes/basic/theme.conf +0 -16
  375. sphinx/themes/bizstyle/theme.conf +0 -10
  376. sphinx/themes/classic/theme.conf +0 -32
  377. sphinx/themes/default/theme.conf +0 -2
  378. sphinx/themes/epub/theme.conf +0 -8
  379. sphinx/themes/haiku/theme.conf +0 -14
  380. sphinx/themes/nature/theme.conf +0 -4
  381. sphinx/themes/nonav/theme.conf +0 -8
  382. sphinx/themes/pyramid/theme.conf +0 -4
  383. sphinx/themes/scrolls/theme.conf +0 -13
  384. sphinx/themes/sphinxdoc/theme.conf +0 -4
  385. sphinx/themes/traditional/theme.conf +0 -7
  386. sphinx-7.2.6.dist-info/RECORD +0 -569
  387. {sphinx-7.2.6.dist-info → sphinx-7.3.0.dist-info}/WHEEL +0 -0
  388. {sphinx-7.2.6.dist-info → sphinx-7.3.0.dist-info}/entry_points.txt +0 -0
sphinx/locale/sphinx.pot CHANGED
@@ -1,21 +1,21 @@
1
1
  # Translations template for Sphinx.
2
- # Copyright (C) 2023 ORGANIZATION
2
+ # Copyright (C) 2024 ORGANIZATION
3
3
  # This file is distributed under the same license as the Sphinx project.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Sphinx 7.2.2\n"
9
+ "Project-Id-Version: Sphinx 7.3.0\n"
10
10
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11
- "POT-Creation-Date: 2023-08-17 16:40+0000\n"
11
+ "POT-Creation-Date: 2024-04-16 21:54+0000\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=utf-8\n"
17
17
  "Content-Transfer-Encoding: 8bit\n"
18
- "Generated-By: Babel 2.12.1\n"
18
+ "Generated-By: Babel 2.14.0\n"
19
19
 
20
20
  #: sphinx/application.py:157
21
21
  #, python-format
@@ -36,104 +36,104 @@ msgstr ""
36
36
  msgid "Running Sphinx v%s"
37
37
  msgstr ""
38
38
 
39
- #: sphinx/application.py:223
39
+ #: sphinx/application.py:219
40
40
  #, python-format
41
41
  msgid ""
42
42
  "This project needs at least Sphinx v%s and therefore cannot be built with"
43
43
  " this version."
44
44
  msgstr ""
45
45
 
46
- #: sphinx/application.py:239
46
+ #: sphinx/application.py:235
47
47
  msgid "making output directory"
48
48
  msgstr ""
49
49
 
50
- #: sphinx/application.py:244 sphinx/registry.py:444
50
+ #: sphinx/application.py:240 sphinx/registry.py:450
51
51
  #, python-format
52
52
  msgid "while setting up extension %s:"
53
53
  msgstr ""
54
54
 
55
- #: sphinx/application.py:250
55
+ #: sphinx/application.py:246
56
56
  msgid ""
57
57
  "'setup' as currently defined in conf.py isn't a Python callable. Please "
58
58
  "modify its definition to make it a callable function. This is needed for "
59
59
  "conf.py to behave as a Sphinx extension."
60
60
  msgstr ""
61
61
 
62
- #: sphinx/application.py:281
62
+ #: sphinx/application.py:277
63
63
  #, python-format
64
64
  msgid "loading translations [%s]... "
65
65
  msgstr ""
66
66
 
67
- #: sphinx/application.py:298 sphinx/util/display.py:84
67
+ #: sphinx/application.py:294 sphinx/util/display.py:85
68
68
  msgid "done"
69
69
  msgstr ""
70
70
 
71
- #: sphinx/application.py:300
71
+ #: sphinx/application.py:296
72
72
  msgid "not available for built-in messages"
73
73
  msgstr ""
74
74
 
75
- #: sphinx/application.py:314
75
+ #: sphinx/application.py:310
76
76
  msgid "loading pickled environment"
77
77
  msgstr ""
78
78
 
79
- #: sphinx/application.py:322
79
+ #: sphinx/application.py:318
80
80
  #, python-format
81
81
  msgid "failed: %s"
82
82
  msgstr ""
83
83
 
84
- #: sphinx/application.py:336
84
+ #: sphinx/application.py:332
85
85
  msgid "No builder selected, using default: html"
86
86
  msgstr ""
87
87
 
88
- #: sphinx/application.py:369
88
+ #: sphinx/application.py:365
89
89
  msgid "succeeded"
90
90
  msgstr ""
91
91
 
92
- #: sphinx/application.py:370
92
+ #: sphinx/application.py:366
93
93
  msgid "finished with problems"
94
94
  msgstr ""
95
95
 
96
- #: sphinx/application.py:374
96
+ #: sphinx/application.py:370
97
97
  #, python-format
98
98
  msgid "build %s, %s warning (with warnings treated as errors)."
99
99
  msgstr ""
100
100
 
101
- #: sphinx/application.py:376
101
+ #: sphinx/application.py:372
102
102
  #, python-format
103
103
  msgid "build %s, %s warnings (with warnings treated as errors)."
104
104
  msgstr ""
105
105
 
106
- #: sphinx/application.py:379
106
+ #: sphinx/application.py:375
107
107
  #, python-format
108
108
  msgid "build %s, %s warning."
109
109
  msgstr ""
110
110
 
111
- #: sphinx/application.py:381
111
+ #: sphinx/application.py:377
112
112
  #, python-format
113
113
  msgid "build %s, %s warnings."
114
114
  msgstr ""
115
115
 
116
- #: sphinx/application.py:385
116
+ #: sphinx/application.py:381
117
117
  #, python-format
118
118
  msgid "build %s."
119
119
  msgstr ""
120
120
 
121
- #: sphinx/application.py:616
121
+ #: sphinx/application.py:610
122
122
  #, python-format
123
123
  msgid "node class %r is already registered, its visitors will be overridden"
124
124
  msgstr ""
125
125
 
126
- #: sphinx/application.py:695
126
+ #: sphinx/application.py:689
127
127
  #, python-format
128
128
  msgid "directive %r is already registered, it will be overridden"
129
129
  msgstr ""
130
130
 
131
- #: sphinx/application.py:717 sphinx/application.py:739
131
+ #: sphinx/application.py:711 sphinx/application.py:733
132
132
  #, python-format
133
133
  msgid "role %r is already registered, it will be overridden"
134
134
  msgstr ""
135
135
 
136
- #: sphinx/application.py:1288
136
+ #: sphinx/application.py:1282
137
137
  #, python-format
138
138
  msgid ""
139
139
  "the %s extension does not declare if it is safe for parallel reading, "
@@ -141,12 +141,12 @@ msgid ""
141
141
  "explicit"
142
142
  msgstr ""
143
143
 
144
- #: sphinx/application.py:1292
144
+ #: sphinx/application.py:1286
145
145
  #, python-format
146
146
  msgid "the %s extension is not safe for parallel reading"
147
147
  msgstr ""
148
148
 
149
- #: sphinx/application.py:1295
149
+ #: sphinx/application.py:1289
150
150
  #, python-format
151
151
  msgid ""
152
152
  "the %s extension does not declare if it is safe for parallel writing, "
@@ -154,71 +154,76 @@ msgid ""
154
154
  "explicit"
155
155
  msgstr ""
156
156
 
157
- #: sphinx/application.py:1299
157
+ #: sphinx/application.py:1293
158
158
  #, python-format
159
159
  msgid "the %s extension is not safe for parallel writing"
160
160
  msgstr ""
161
161
 
162
- #: sphinx/application.py:1307 sphinx/application.py:1311
162
+ #: sphinx/application.py:1301 sphinx/application.py:1305
163
163
  #, python-format
164
164
  msgid "doing serial %s"
165
165
  msgstr ""
166
166
 
167
- #: sphinx/config.py:179
167
+ #: sphinx/config.py:309
168
168
  #, python-format
169
169
  msgid "config directory doesn't contain a conf.py file (%s)"
170
170
  msgstr ""
171
171
 
172
- #: sphinx/config.py:188
172
+ #: sphinx/config.py:318
173
173
  msgid ""
174
174
  "Invalid configuration value found: 'language = None'. Update your "
175
175
  "configuration to a valid language code. Falling back to 'en' (English)."
176
176
  msgstr ""
177
177
 
178
- #: sphinx/config.py:217
178
+ #: sphinx/config.py:341
179
179
  #, python-format
180
180
  msgid ""
181
181
  "cannot override dictionary config setting %r, ignoring (use %r to set "
182
182
  "individual elements)"
183
183
  msgstr ""
184
184
 
185
- #: sphinx/config.py:226
185
+ #: sphinx/config.py:350
186
186
  #, python-format
187
187
  msgid "invalid number %r for config value %r, ignoring"
188
188
  msgstr ""
189
189
 
190
- #: sphinx/config.py:231
190
+ #: sphinx/config.py:355
191
191
  #, python-format
192
192
  msgid "cannot override config setting %r with unsupported type, ignoring"
193
193
  msgstr ""
194
194
 
195
- #: sphinx/config.py:260
195
+ #: sphinx/config.py:378
196
196
  #, python-format
197
197
  msgid "unknown config value %r in override, ignoring"
198
198
  msgstr ""
199
199
 
200
- #: sphinx/config.py:288
200
+ #: sphinx/config.py:418
201
201
  #, python-format
202
- msgid "No such config value: %s"
202
+ msgid "No such config value: %r"
203
203
  msgstr ""
204
204
 
205
- #: sphinx/config.py:312
205
+ #: sphinx/config.py:440
206
206
  #, python-format
207
207
  msgid "Config value %r already present"
208
208
  msgstr ""
209
209
 
210
- #: sphinx/config.py:360
210
+ #: sphinx/config.py:473
211
+ #, python-format
212
+ msgid "cannot cache unpickable configuration value: %r"
213
+ msgstr ""
214
+
215
+ #: sphinx/config.py:509
211
216
  #, python-format
212
217
  msgid "There is a syntax error in your configuration file: %s\n"
213
218
  msgstr ""
214
219
 
215
- #: sphinx/config.py:363
220
+ #: sphinx/config.py:512
216
221
  msgid ""
217
222
  "The configuration file (or one of the modules it imports) called "
218
223
  "sys.exit()"
219
224
  msgstr ""
220
225
 
221
- #: sphinx/config.py:370
226
+ #: sphinx/config.py:519
222
227
  #, python-format
223
228
  msgid ""
224
229
  "There is a programmable error in your configuration file:\n"
@@ -226,290 +231,327 @@ msgid ""
226
231
  "%s"
227
232
  msgstr ""
228
233
 
229
- #: sphinx/config.py:393
234
+ #: sphinx/config.py:540
235
+ #, python-format
236
+ msgid "Failed to convert %r to a set or tuple"
237
+ msgstr ""
238
+
239
+ #: sphinx/config.py:565
230
240
  #, python-format
231
241
  msgid ""
232
242
  "The config value `source_suffix' expects a string, list of strings, or "
233
243
  "dictionary. But `%r' is given."
234
244
  msgstr ""
235
245
 
236
- #: sphinx/config.py:413
246
+ #: sphinx/config.py:585
237
247
  #, python-format
238
248
  msgid "Section %s"
239
249
  msgstr ""
240
250
 
241
- #: sphinx/config.py:414
251
+ #: sphinx/config.py:586
242
252
  #, python-format
243
253
  msgid "Fig. %s"
244
254
  msgstr ""
245
255
 
246
- #: sphinx/config.py:415
256
+ #: sphinx/config.py:587
247
257
  #, python-format
248
258
  msgid "Table %s"
249
259
  msgstr ""
250
260
 
251
- #: sphinx/config.py:416
261
+ #: sphinx/config.py:588
252
262
  #, python-format
253
263
  msgid "Listing %s"
254
264
  msgstr ""
255
265
 
256
- #: sphinx/config.py:488
266
+ #: sphinx/config.py:663
257
267
  msgid ""
258
268
  "The config value `{name}` has to be a one of {candidates}, but "
259
269
  "`{current}` is given."
260
270
  msgstr ""
261
271
 
262
- #: sphinx/config.py:506
272
+ #: sphinx/config.py:687
263
273
  msgid ""
264
274
  "The config value `{name}' has type `{current.__name__}'; expected "
265
275
  "{permitted}."
266
276
  msgstr ""
267
277
 
268
- #: sphinx/config.py:518
278
+ #: sphinx/config.py:700
269
279
  msgid ""
270
280
  "The config value `{name}' has type `{current.__name__}', defaults to "
271
281
  "`{default.__name__}'."
272
282
  msgstr ""
273
283
 
274
- #: sphinx/config.py:528
284
+ #: sphinx/config.py:711
275
285
  #, python-format
276
286
  msgid "primary_domain %r not found, ignored."
277
287
  msgstr ""
278
288
 
279
- #: sphinx/config.py:540
289
+ #: sphinx/config.py:723
280
290
  msgid ""
281
291
  "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add "
282
292
  "\"root_doc = 'contents'\" to your conf.py."
283
293
  msgstr ""
284
294
 
285
- #: sphinx/events.py:63
295
+ #: sphinx/events.py:64
286
296
  #, python-format
287
297
  msgid "Event %r already present"
288
298
  msgstr ""
289
299
 
290
- #: sphinx/events.py:69
300
+ #: sphinx/events.py:70
291
301
  #, python-format
292
302
  msgid "Unknown event name: %s"
293
303
  msgstr ""
294
304
 
295
- #: sphinx/events.py:107
305
+ #: sphinx/events.py:109
296
306
  #, python-format
297
307
  msgid "Handler %r for event %r threw an exception"
298
308
  msgstr ""
299
309
 
300
- #: sphinx/extension.py:53
310
+ #: sphinx/extension.py:55
301
311
  #, python-format
302
312
  msgid ""
303
313
  "The %s extension is required by needs_extensions settings, but it is not "
304
314
  "loaded."
305
315
  msgstr ""
306
316
 
307
- #: sphinx/extension.py:69
317
+ #: sphinx/extension.py:76
308
318
  #, python-format
309
319
  msgid ""
310
320
  "This project needs the extension %s at least in version %s and therefore "
311
321
  "cannot be built with the loaded version (%s)."
312
322
  msgstr ""
313
323
 
314
- #: sphinx/highlighting.py:149
324
+ #: sphinx/highlighting.py:155
315
325
  #, python-format
316
326
  msgid "Pygments lexer name %r is not known"
317
327
  msgstr ""
318
328
 
319
- #: sphinx/highlighting.py:176
329
+ #: sphinx/highlighting.py:189
320
330
  #, python-format
321
331
  msgid ""
322
332
  "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
323
333
  "Retrying in relaxed mode."
324
334
  msgstr ""
325
335
 
326
- #: sphinx/project.py:65
336
+ #: sphinx/project.py:66
327
337
  #, python-format
328
338
  msgid ""
329
339
  "multiple files found for the document \"%s\": %r\n"
330
340
  "Use %r for the build."
331
341
  msgstr ""
332
342
 
333
- #: sphinx/project.py:74
343
+ #: sphinx/project.py:81
334
344
  #, python-format
335
345
  msgid "Ignored unreadable document %r."
336
346
  msgstr ""
337
347
 
338
- #: sphinx/registry.py:136
348
+ #: sphinx/registry.py:142
339
349
  #, python-format
340
350
  msgid "Builder class %s has no \"name\" attribute"
341
351
  msgstr ""
342
352
 
343
- #: sphinx/registry.py:138
353
+ #: sphinx/registry.py:144
344
354
  #, python-format
345
355
  msgid "Builder %r already exists (in module %s)"
346
356
  msgstr ""
347
357
 
348
- #: sphinx/registry.py:151
358
+ #: sphinx/registry.py:157
349
359
  #, python-format
350
360
  msgid "Builder name %s not registered or available through entry point"
351
361
  msgstr ""
352
362
 
353
- #: sphinx/registry.py:158
363
+ #: sphinx/registry.py:164
354
364
  #, python-format
355
365
  msgid "Builder name %s not registered"
356
366
  msgstr ""
357
367
 
358
- #: sphinx/registry.py:165
368
+ #: sphinx/registry.py:171
359
369
  #, python-format
360
370
  msgid "domain %s already registered"
361
371
  msgstr ""
362
372
 
363
- #: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212
373
+ #: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218
364
374
  #, python-format
365
375
  msgid "domain %s not yet registered"
366
376
  msgstr ""
367
377
 
368
- #: sphinx/registry.py:192
378
+ #: sphinx/registry.py:198
369
379
  #, python-format
370
380
  msgid "The %r directive is already registered to domain %s"
371
381
  msgstr ""
372
382
 
373
- #: sphinx/registry.py:204
383
+ #: sphinx/registry.py:210
374
384
  #, python-format
375
385
  msgid "The %r role is already registered to domain %s"
376
386
  msgstr ""
377
387
 
378
- #: sphinx/registry.py:215
388
+ #: sphinx/registry.py:221
379
389
  #, python-format
380
390
  msgid "The %r index is already registered to domain %s"
381
391
  msgstr ""
382
392
 
383
- #: sphinx/registry.py:246
393
+ #: sphinx/registry.py:252
384
394
  #, python-format
385
395
  msgid "The %r object_type is already registered"
386
396
  msgstr ""
387
397
 
388
- #: sphinx/registry.py:272
398
+ #: sphinx/registry.py:278
389
399
  #, python-format
390
400
  msgid "The %r crossref_type is already registered"
391
401
  msgstr ""
392
402
 
393
- #: sphinx/registry.py:279
403
+ #: sphinx/registry.py:285
394
404
  #, python-format
395
405
  msgid "source_suffix %r is already registered"
396
406
  msgstr ""
397
407
 
398
- #: sphinx/registry.py:288
408
+ #: sphinx/registry.py:294
399
409
  #, python-format
400
410
  msgid "source_parser for %r is already registered"
401
411
  msgstr ""
402
412
 
403
- #: sphinx/registry.py:296
413
+ #: sphinx/registry.py:302
404
414
  #, python-format
405
415
  msgid "Source parser for %s not registered"
406
416
  msgstr ""
407
417
 
408
- #: sphinx/registry.py:312
418
+ #: sphinx/registry.py:318
409
419
  #, python-format
410
420
  msgid "Translator for %r already exists"
411
421
  msgstr ""
412
422
 
413
- #: sphinx/registry.py:328
423
+ #: sphinx/registry.py:334
414
424
  #, python-format
415
425
  msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
416
426
  msgstr ""
417
427
 
418
- #: sphinx/registry.py:411
428
+ #: sphinx/registry.py:417
419
429
  #, python-format
420
430
  msgid "enumerable_node %r already registered"
421
431
  msgstr ""
422
432
 
423
- #: sphinx/registry.py:423
433
+ #: sphinx/registry.py:429
424
434
  #, python-format
425
435
  msgid "math renderer %s is already registered"
426
436
  msgstr ""
427
437
 
428
- #: sphinx/registry.py:438
438
+ #: sphinx/registry.py:444
429
439
  #, python-format
430
440
  msgid ""
431
441
  "the extension %r was already merged with Sphinx since version %s; this "
432
442
  "extension is ignored."
433
443
  msgstr ""
434
444
 
435
- #: sphinx/registry.py:449
445
+ #: sphinx/registry.py:455
436
446
  msgid "Original exception:\n"
437
447
  msgstr ""
438
448
 
439
- #: sphinx/registry.py:450
449
+ #: sphinx/registry.py:456
440
450
  #, python-format
441
451
  msgid "Could not import extension %s"
442
452
  msgstr ""
443
453
 
444
- #: sphinx/registry.py:455
454
+ #: sphinx/registry.py:461
445
455
  #, python-format
446
456
  msgid ""
447
457
  "extension %r has no setup() function; is it really a Sphinx extension "
448
458
  "module?"
449
459
  msgstr ""
450
460
 
451
- #: sphinx/registry.py:464
461
+ #: sphinx/registry.py:470
452
462
  #, python-format
453
463
  msgid ""
454
464
  "The %s extension used by this project needs at least Sphinx v%s; it "
455
465
  "therefore cannot be built with this version."
456
466
  msgstr ""
457
467
 
458
- #: sphinx/registry.py:472
468
+ #: sphinx/registry.py:478
459
469
  #, python-format
460
470
  msgid ""
461
471
  "extension %r returned an unsupported object from its setup() function; it"
462
472
  " should return None or a metadata dictionary"
463
473
  msgstr ""
464
474
 
465
- #: sphinx/roles.py:178
475
+ #: sphinx/roles.py:201
466
476
  #, python-format
467
477
  msgid "Python Enhancement Proposals; PEP %s"
468
478
  msgstr ""
469
479
 
470
- #: sphinx/roles.py:194
480
+ #: sphinx/roles.py:222
471
481
  #, python-format
472
482
  msgid "invalid PEP number %s"
473
483
  msgstr ""
474
484
 
475
- #: sphinx/roles.py:228
485
+ #: sphinx/roles.py:257
476
486
  #, python-format
477
487
  msgid "invalid RFC number %s"
478
488
  msgstr ""
479
489
 
480
- #: sphinx/theming.py:77
490
+ #: sphinx/theming.py:125
481
491
  #, python-format
482
- msgid "theme %r doesn't have \"theme\" setting"
492
+ msgid "setting %s.%s occurs in none of the searched theme configs"
483
493
  msgstr ""
484
494
 
485
- #: sphinx/theming.py:79
495
+ #: sphinx/theming.py:140
486
496
  #, python-format
487
- msgid "theme %r doesn't have \"inherit\" setting"
497
+ msgid "unsupported theme option %r given"
488
498
  msgstr ""
489
499
 
490
- #: sphinx/theming.py:85
500
+ #: sphinx/theming.py:206
491
501
  #, python-format
492
- msgid "no theme named %r found, inherited by %r"
502
+ msgid "file %r on theme path is not a valid zipfile or contains no theme"
493
503
  msgstr ""
494
504
 
495
- #: sphinx/theming.py:108
505
+ #: sphinx/theming.py:226
496
506
  #, python-format
497
- msgid "setting %s.%s occurs in none of the searched theme configs"
507
+ msgid "no theme named %r found (missing theme.toml?)"
498
508
  msgstr ""
499
509
 
500
- #: sphinx/theming.py:127
510
+ #: sphinx/theming.py:259
501
511
  #, python-format
502
- msgid "unsupported theme option %r given"
512
+ msgid "The %r theme has circular inheritance"
503
513
  msgstr ""
504
514
 
505
- #: sphinx/theming.py:216
515
+ #: sphinx/theming.py:262
506
516
  #, python-format
507
- msgid "file %r on theme path is not a valid zipfile or contains no theme"
517
+ msgid ""
518
+ "The %r theme inherits from %r, which is not a loaded theme. Loaded themes"
519
+ " are: %s"
508
520
  msgstr ""
509
521
 
510
- #: sphinx/theming.py:230
522
+ #: sphinx/theming.py:269
511
523
  #, python-format
512
- msgid "no theme named %r found (missing theme.conf?)"
524
+ msgid "The %r theme has too many ancestors"
525
+ msgstr ""
526
+
527
+ #: sphinx/theming.py:295
528
+ #, python-format
529
+ msgid "no theme configuration file found in %r"
530
+ msgstr ""
531
+
532
+ #: sphinx/theming.py:323 sphinx/theming.py:374
533
+ #, python-format
534
+ msgid "theme %r doesn't have the \"theme\" table"
535
+ msgstr ""
536
+
537
+ #: sphinx/theming.py:327
538
+ #, python-format
539
+ msgid "The %r theme \"[theme]\" table is not a table"
540
+ msgstr ""
541
+
542
+ #: sphinx/theming.py:331 sphinx/theming.py:377
543
+ #, python-format
544
+ msgid "The %r theme must define the \"theme.inherit\" setting"
545
+ msgstr ""
546
+
547
+ #: sphinx/theming.py:335
548
+ #, python-format
549
+ msgid "The %r theme \"[options]\" table is not a table"
550
+ msgstr ""
551
+
552
+ #: sphinx/theming.py:353
553
+ #, python-format
554
+ msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
513
555
  msgstr ""
514
556
 
515
557
  #: sphinx/builders/__init__.py:183
@@ -526,8 +568,8 @@ msgstr ""
526
568
  msgid "building [mo]: "
527
569
  msgstr ""
528
570
 
529
- #: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575
530
- #: sphinx/builders/__init__.py:602
571
+ #: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574
572
+ #: sphinx/builders/__init__.py:601
531
573
  msgid "writing output... "
532
574
  msgstr ""
533
575
 
@@ -575,7 +617,7 @@ msgstr ""
575
617
  msgid "targets for %d source files that are out of date"
576
618
  msgstr ""
577
619
 
578
- #: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236
620
+ #: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243
579
621
  #, python-format
580
622
  msgid "building [%s]: "
581
623
  msgstr ""
@@ -584,50 +626,50 @@ msgstr ""
584
626
  msgid "looking for now-outdated files... "
585
627
  msgstr ""
586
628
 
587
- #: sphinx/builders/__init__.py:321
629
+ #: sphinx/builders/__init__.py:320
588
630
  #, python-format
589
631
  msgid "%d found"
590
632
  msgstr ""
591
633
 
592
- #: sphinx/builders/__init__.py:323
634
+ #: sphinx/builders/__init__.py:322
593
635
  msgid "none found"
594
636
  msgstr ""
595
637
 
596
- #: sphinx/builders/__init__.py:328
638
+ #: sphinx/builders/__init__.py:327
597
639
  msgid "pickling environment"
598
640
  msgstr ""
599
641
 
600
- #: sphinx/builders/__init__.py:334
642
+ #: sphinx/builders/__init__.py:333
601
643
  msgid "checking consistency"
602
644
  msgstr ""
603
645
 
604
- #: sphinx/builders/__init__.py:338
646
+ #: sphinx/builders/__init__.py:337
605
647
  msgid "no targets are out of date."
606
648
  msgstr ""
607
649
 
608
- #: sphinx/builders/__init__.py:377
650
+ #: sphinx/builders/__init__.py:376
609
651
  msgid "updating environment: "
610
652
  msgstr ""
611
653
 
612
- #: sphinx/builders/__init__.py:398
654
+ #: sphinx/builders/__init__.py:397
613
655
  #, python-format
614
656
  msgid "%s added, %s changed, %s removed"
615
657
  msgstr ""
616
658
 
617
- #: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448
659
+ #: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447
618
660
  msgid "reading sources... "
619
661
  msgstr ""
620
662
 
621
- #: sphinx/builders/__init__.py:550
663
+ #: sphinx/builders/__init__.py:549
622
664
  #, python-format
623
665
  msgid "docnames to write: %s"
624
666
  msgstr ""
625
667
 
626
- #: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156
668
+ #: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157
627
669
  msgid "preparing documents"
628
670
  msgstr ""
629
671
 
630
- #: sphinx/builders/__init__.py:562
672
+ #: sphinx/builders/__init__.py:561
631
673
  msgid "copying assets"
632
674
  msgstr ""
633
675
 
@@ -636,36 +678,36 @@ msgstr ""
636
678
  msgid "duplicated ToC entry found: %s"
637
679
  msgstr ""
638
680
 
639
- #: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750
640
- #: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183
681
+ #: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758
682
+ #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187
641
683
  msgid "copying images... "
642
684
  msgstr ""
643
685
 
644
- #: sphinx/builders/_epub_base.py:410
686
+ #: sphinx/builders/_epub_base.py:411
645
687
  #, python-format
646
688
  msgid "cannot read image file %r: copying it instead"
647
689
  msgstr ""
648
690
 
649
- #: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758
650
- #: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193
691
+ #: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766
692
+ #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197
651
693
  #, python-format
652
694
  msgid "cannot copy image file %r: %s"
653
695
  msgstr ""
654
696
 
655
- #: sphinx/builders/_epub_base.py:433
697
+ #: sphinx/builders/_epub_base.py:434
656
698
  #, python-format
657
699
  msgid "cannot write image file %r: %s"
658
700
  msgstr ""
659
701
 
660
- #: sphinx/builders/_epub_base.py:443
702
+ #: sphinx/builders/_epub_base.py:444
661
703
  msgid "Pillow not found - copying image files"
662
704
  msgstr ""
663
705
 
664
- #: sphinx/builders/_epub_base.py:469
706
+ #: sphinx/builders/_epub_base.py:470
665
707
  msgid "writing mimetype file..."
666
708
  msgstr ""
667
709
 
668
- #: sphinx/builders/_epub_base.py:474
710
+ #: sphinx/builders/_epub_base.py:475
669
711
  msgid "writing META-INF/container.xml file..."
670
712
  msgstr ""
671
713
 
@@ -673,476 +715,476 @@ msgstr ""
673
715
  msgid "writing content.opf file..."
674
716
  msgstr ""
675
717
 
676
- #: sphinx/builders/_epub_base.py:531
718
+ #: sphinx/builders/_epub_base.py:539
677
719
  #, python-format
678
720
  msgid "unknown mimetype for %s, ignoring"
679
721
  msgstr ""
680
722
 
681
- #: sphinx/builders/_epub_base.py:678
723
+ #: sphinx/builders/_epub_base.py:686
682
724
  msgid "writing toc.ncx file..."
683
725
  msgstr ""
684
726
 
685
- #: sphinx/builders/_epub_base.py:703
727
+ #: sphinx/builders/_epub_base.py:711
686
728
  #, python-format
687
729
  msgid "writing %s file..."
688
730
  msgstr ""
689
731
 
690
- #: sphinx/builders/changes.py:30
732
+ #: sphinx/builders/changes.py:32
691
733
  #, python-format
692
734
  msgid "The overview file is in %(outdir)s."
693
735
  msgstr ""
694
736
 
695
- #: sphinx/builders/changes.py:56
737
+ #: sphinx/builders/changes.py:59
696
738
  #, python-format
697
739
  msgid "no changes in version %s."
698
740
  msgstr ""
699
741
 
700
- #: sphinx/builders/changes.py:58
742
+ #: sphinx/builders/changes.py:61
701
743
  msgid "writing summary file..."
702
744
  msgstr ""
703
745
 
704
- #: sphinx/builders/changes.py:73
746
+ #: sphinx/builders/changes.py:76
705
747
  msgid "Builtins"
706
748
  msgstr ""
707
749
 
708
- #: sphinx/builders/changes.py:75
750
+ #: sphinx/builders/changes.py:78
709
751
  msgid "Module level"
710
752
  msgstr ""
711
753
 
712
- #: sphinx/builders/changes.py:118
754
+ #: sphinx/builders/changes.py:123
713
755
  msgid "copying source files..."
714
756
  msgstr ""
715
757
 
716
- #: sphinx/builders/changes.py:125
758
+ #: sphinx/builders/changes.py:130
717
759
  #, python-format
718
760
  msgid "could not read %r for changelog creation"
719
761
  msgstr ""
720
762
 
721
- #: sphinx/builders/dummy.py:18
763
+ #: sphinx/builders/dummy.py:19
722
764
  msgid "The dummy builder generates no files."
723
765
  msgstr ""
724
766
 
725
- #: sphinx/builders/epub3.py:79
767
+ #: sphinx/builders/epub3.py:81
726
768
  #, python-format
727
769
  msgid "The ePub file is in %(outdir)s."
728
770
  msgstr ""
729
771
 
730
- #: sphinx/builders/epub3.py:183
772
+ #: sphinx/builders/epub3.py:185
731
773
  msgid "writing nav.xhtml file..."
732
774
  msgstr ""
733
775
 
734
- #: sphinx/builders/epub3.py:209
776
+ #: sphinx/builders/epub3.py:211
735
777
  msgid ""
736
778
  "conf value \"epub_language\" (or \"language\") should not be empty for "
737
779
  "EPUB3"
738
780
  msgstr ""
739
781
 
740
- #: sphinx/builders/epub3.py:213
782
+ #: sphinx/builders/epub3.py:215
741
783
  msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
742
784
  msgstr ""
743
785
 
744
- #: sphinx/builders/epub3.py:216
786
+ #: sphinx/builders/epub3.py:218
745
787
  msgid ""
746
788
  "conf value \"epub_title\" (or \"html_title\") should not be empty for "
747
789
  "EPUB3"
748
790
  msgstr ""
749
791
 
750
- #: sphinx/builders/epub3.py:220
792
+ #: sphinx/builders/epub3.py:222
751
793
  msgid "conf value \"epub_author\" should not be empty for EPUB3"
752
794
  msgstr ""
753
795
 
754
- #: sphinx/builders/epub3.py:223
796
+ #: sphinx/builders/epub3.py:225
755
797
  msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
756
798
  msgstr ""
757
799
 
758
- #: sphinx/builders/epub3.py:226
800
+ #: sphinx/builders/epub3.py:228
759
801
  msgid "conf value \"epub_description\" should not be empty for EPUB3"
760
802
  msgstr ""
761
803
 
762
- #: sphinx/builders/epub3.py:229
804
+ #: sphinx/builders/epub3.py:231
763
805
  msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
764
806
  msgstr ""
765
807
 
766
- #: sphinx/builders/epub3.py:232
808
+ #: sphinx/builders/epub3.py:234
767
809
  msgid ""
768
810
  "conf value \"epub_copyright\" (or \"copyright\")should not be empty for "
769
811
  "EPUB3"
770
812
  msgstr ""
771
813
 
772
- #: sphinx/builders/epub3.py:236
814
+ #: sphinx/builders/epub3.py:238
773
815
  msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
774
816
  msgstr ""
775
817
 
776
- #: sphinx/builders/epub3.py:239
818
+ #: sphinx/builders/epub3.py:241
777
819
  msgid "conf value \"version\" should not be empty for EPUB3"
778
820
  msgstr ""
779
821
 
780
- #: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189
822
+ #: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187
781
823
  #, python-format
782
824
  msgid "invalid css_file: %r, ignored"
783
825
  msgstr ""
784
826
 
785
- #: sphinx/builders/gettext.py:215
827
+ #: sphinx/builders/gettext.py:222
786
828
  #, python-format
787
829
  msgid "The message catalogs are in %(outdir)s."
788
830
  msgstr ""
789
831
 
790
- #: sphinx/builders/gettext.py:237
832
+ #: sphinx/builders/gettext.py:244
791
833
  #, python-format
792
834
  msgid "targets for %d template files"
793
835
  msgstr ""
794
836
 
795
- #: sphinx/builders/gettext.py:241
837
+ #: sphinx/builders/gettext.py:248
796
838
  msgid "reading templates... "
797
839
  msgstr ""
798
840
 
799
- #: sphinx/builders/gettext.py:275
841
+ #: sphinx/builders/gettext.py:282
800
842
  msgid "writing message catalogs... "
801
843
  msgstr ""
802
844
 
803
- #: sphinx/builders/linkcheck.py:60
845
+ #: sphinx/builders/linkcheck.py:59
804
846
  #, python-format
805
847
  msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
806
848
  msgstr ""
807
849
 
808
- #: sphinx/builders/linkcheck.py:109
850
+ #: sphinx/builders/linkcheck.py:137
809
851
  #, python-format
810
852
  msgid "broken link: %s (%s)"
811
853
  msgstr ""
812
854
 
813
- #: sphinx/builders/linkcheck.py:606
855
+ #: sphinx/builders/linkcheck.py:660
814
856
  #, python-format
815
857
  msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
816
858
  msgstr ""
817
859
 
818
- #: sphinx/builders/manpage.py:35
860
+ #: sphinx/builders/manpage.py:37
819
861
  #, python-format
820
862
  msgid "The manual pages are in %(outdir)s."
821
863
  msgstr ""
822
864
 
823
- #: sphinx/builders/manpage.py:42
865
+ #: sphinx/builders/manpage.py:44
824
866
  msgid "no \"man_pages\" config value found; no manual pages will be written"
825
867
  msgstr ""
826
868
 
827
- #: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51
828
- #: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110
869
+ #: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53
870
+ #: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112
829
871
  msgid "writing"
830
872
  msgstr ""
831
873
 
832
- #: sphinx/builders/manpage.py:66
874
+ #: sphinx/builders/manpage.py:68
833
875
  #, python-format
834
876
  msgid "\"man_pages\" config value references unknown document %s"
835
877
  msgstr ""
836
878
 
837
- #: sphinx/builders/singlehtml.py:32
879
+ #: sphinx/builders/singlehtml.py:34
838
880
  #, python-format
839
881
  msgid "The HTML page is in %(outdir)s."
840
882
  msgstr ""
841
883
 
842
- #: sphinx/builders/singlehtml.py:159
884
+ #: sphinx/builders/singlehtml.py:160
843
885
  msgid "assembling single document"
844
886
  msgstr ""
845
887
 
846
- #: sphinx/builders/singlehtml.py:177
888
+ #: sphinx/builders/singlehtml.py:178
847
889
  msgid "writing additional files"
848
890
  msgstr ""
849
891
 
850
- #: sphinx/builders/texinfo.py:46
892
+ #: sphinx/builders/texinfo.py:48
851
893
  #, python-format
852
894
  msgid "The Texinfo files are in %(outdir)s."
853
895
  msgstr ""
854
896
 
855
- #: sphinx/builders/texinfo.py:48
897
+ #: sphinx/builders/texinfo.py:50
856
898
  msgid ""
857
899
  "\n"
858
900
  "Run 'make' in that directory to run these through makeinfo\n"
859
901
  "(use 'make info' here to do that automatically)."
860
902
  msgstr ""
861
903
 
862
- #: sphinx/builders/texinfo.py:75
904
+ #: sphinx/builders/texinfo.py:77
863
905
  msgid "no \"texinfo_documents\" config value found; no documents will be written"
864
906
  msgstr ""
865
907
 
866
- #: sphinx/builders/texinfo.py:83
908
+ #: sphinx/builders/texinfo.py:85
867
909
  #, python-format
868
910
  msgid "\"texinfo_documents\" config value references unknown document %s"
869
911
  msgstr ""
870
912
 
871
- #: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106
913
+ #: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108
872
914
  #, python-format
873
915
  msgid "processing %s"
874
916
  msgstr ""
875
917
 
876
- #: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159
918
+ #: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161
877
919
  msgid "resolving references..."
878
920
  msgstr ""
879
921
 
880
- #: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168
922
+ #: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171
881
923
  msgid " (in "
882
924
  msgstr ""
883
925
 
884
- #: sphinx/builders/texinfo.py:198
926
+ #: sphinx/builders/texinfo.py:202
885
927
  msgid "copying Texinfo support files"
886
928
  msgstr ""
887
929
 
888
- #: sphinx/builders/texinfo.py:202
930
+ #: sphinx/builders/texinfo.py:206
889
931
  #, python-format
890
932
  msgid "error writing file Makefile: %s"
891
933
  msgstr ""
892
934
 
893
- #: sphinx/builders/text.py:29
935
+ #: sphinx/builders/text.py:30
894
936
  #, python-format
895
937
  msgid "The text files are in %(outdir)s."
896
938
  msgstr ""
897
939
 
898
- #: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76
899
- #: sphinx/builders/xml.py:94
940
+ #: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77
941
+ #: sphinx/builders/xml.py:96
900
942
  #, python-format
901
943
  msgid "error writing file %s: %s"
902
944
  msgstr ""
903
945
 
904
- #: sphinx/builders/xml.py:34
946
+ #: sphinx/builders/xml.py:36
905
947
  #, python-format
906
948
  msgid "The XML files are in %(outdir)s."
907
949
  msgstr ""
908
950
 
909
- #: sphinx/builders/xml.py:106
951
+ #: sphinx/builders/xml.py:109
910
952
  #, python-format
911
953
  msgid "The pseudo-XML files are in %(outdir)s."
912
954
  msgstr ""
913
955
 
914
- #: sphinx/builders/html/__init__.py:122
956
+ #: sphinx/builders/html/__init__.py:130
915
957
  #, python-format
916
958
  msgid "build info file is broken: %r"
917
959
  msgstr ""
918
960
 
919
- #: sphinx/builders/html/__init__.py:159
961
+ #: sphinx/builders/html/__init__.py:168
920
962
  #, python-format
921
963
  msgid "The HTML pages are in %(outdir)s."
922
964
  msgstr ""
923
965
 
924
- #: sphinx/builders/html/__init__.py:385
966
+ #: sphinx/builders/html/__init__.py:394
925
967
  #, python-format
926
968
  msgid "Failed to read build info file: %r"
927
969
  msgstr ""
928
970
 
929
- #: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187
930
- #: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100
931
- #: sphinx/writers/texinfo.py:225
971
+ #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189
972
+ #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101
973
+ #: sphinx/writers/texinfo.py:227
932
974
  #, python-format
933
975
  msgid "%b %d, %Y"
934
976
  msgstr ""
935
977
 
936
- #: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30
978
+ #: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30
937
979
  msgid "General Index"
938
980
  msgstr ""
939
981
 
940
- #: sphinx/builders/html/__init__.py:497
982
+ #: sphinx/builders/html/__init__.py:506
941
983
  msgid "index"
942
984
  msgstr ""
943
985
 
944
- #: sphinx/builders/html/__init__.py:569
986
+ #: sphinx/builders/html/__init__.py:579
945
987
  msgid "next"
946
988
  msgstr ""
947
989
 
948
- #: sphinx/builders/html/__init__.py:578
990
+ #: sphinx/builders/html/__init__.py:588
949
991
  msgid "previous"
950
992
  msgstr ""
951
993
 
952
- #: sphinx/builders/html/__init__.py:674
994
+ #: sphinx/builders/html/__init__.py:684
953
995
  msgid "generating indices"
954
996
  msgstr ""
955
997
 
956
- #: sphinx/builders/html/__init__.py:689
998
+ #: sphinx/builders/html/__init__.py:699
957
999
  msgid "writing additional pages"
958
1000
  msgstr ""
959
1001
 
960
- #: sphinx/builders/html/__init__.py:768
1002
+ #: sphinx/builders/html/__init__.py:776
961
1003
  msgid "copying downloadable files... "
962
1004
  msgstr ""
963
1005
 
964
- #: sphinx/builders/html/__init__.py:776
1006
+ #: sphinx/builders/html/__init__.py:784
965
1007
  #, python-format
966
1008
  msgid "cannot copy downloadable file %r: %s"
967
1009
  msgstr ""
968
1010
 
969
- #: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821
1011
+ #: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829
970
1012
  #, python-format
971
1013
  msgid "Failed to copy a file in html_static_file: %s: %r"
972
1014
  msgstr ""
973
1015
 
974
- #: sphinx/builders/html/__init__.py:842
1016
+ #: sphinx/builders/html/__init__.py:850
975
1017
  msgid "copying static files"
976
1018
  msgstr ""
977
1019
 
978
- #: sphinx/builders/html/__init__.py:858
1020
+ #: sphinx/builders/html/__init__.py:866
979
1021
  #, python-format
980
1022
  msgid "cannot copy static file %r"
981
1023
  msgstr ""
982
1024
 
983
- #: sphinx/builders/html/__init__.py:863
1025
+ #: sphinx/builders/html/__init__.py:871
984
1026
  msgid "copying extra files"
985
1027
  msgstr ""
986
1028
 
987
- #: sphinx/builders/html/__init__.py:869
1029
+ #: sphinx/builders/html/__init__.py:877
988
1030
  #, python-format
989
1031
  msgid "cannot copy extra file %r"
990
1032
  msgstr ""
991
1033
 
992
- #: sphinx/builders/html/__init__.py:876
1034
+ #: sphinx/builders/html/__init__.py:884
993
1035
  #, python-format
994
1036
  msgid "Failed to write build info file: %r"
995
1037
  msgstr ""
996
1038
 
997
- #: sphinx/builders/html/__init__.py:925
1039
+ #: sphinx/builders/html/__init__.py:933
998
1040
  msgid ""
999
1041
  "search index couldn't be loaded, but not all documents will be built: the"
1000
1042
  " index will be incomplete."
1001
1043
  msgstr ""
1002
1044
 
1003
- #: sphinx/builders/html/__init__.py:986
1045
+ #: sphinx/builders/html/__init__.py:978
1004
1046
  #, python-format
1005
1047
  msgid "page %s matches two patterns in html_sidebars: %r and %r"
1006
1048
  msgstr ""
1007
1049
 
1008
- #: sphinx/builders/html/__init__.py:1123
1050
+ #: sphinx/builders/html/__init__.py:1121
1009
1051
  #, python-format
1010
1052
  msgid ""
1011
1053
  "a Unicode error occurred when rendering the page %s. Please make sure all"
1012
1054
  " config values that contain non-ASCII content are Unicode strings."
1013
1055
  msgstr ""
1014
1056
 
1015
- #: sphinx/builders/html/__init__.py:1128
1057
+ #: sphinx/builders/html/__init__.py:1126
1016
1058
  #, python-format
1017
1059
  msgid ""
1018
1060
  "An error happened in rendering the page %s.\n"
1019
1061
  "Reason: %r"
1020
1062
  msgstr ""
1021
1063
 
1022
- #: sphinx/builders/html/__init__.py:1156
1064
+ #: sphinx/builders/html/__init__.py:1154
1023
1065
  msgid "dumping object inventory"
1024
1066
  msgstr ""
1025
1067
 
1026
- #: sphinx/builders/html/__init__.py:1164
1068
+ #: sphinx/builders/html/__init__.py:1162
1027
1069
  #, python-format
1028
1070
  msgid "dumping search index in %s"
1029
1071
  msgstr ""
1030
1072
 
1031
- #: sphinx/builders/html/__init__.py:1212
1073
+ #: sphinx/builders/html/__init__.py:1210
1032
1074
  #, python-format
1033
1075
  msgid "invalid js_file: %r, ignored"
1034
1076
  msgstr ""
1035
1077
 
1036
- #: sphinx/builders/html/__init__.py:1240
1078
+ #: sphinx/builders/html/__init__.py:1238
1037
1079
  msgid "Many math_renderers are registered. But no math_renderer is selected."
1038
1080
  msgstr ""
1039
1081
 
1040
- #: sphinx/builders/html/__init__.py:1243
1082
+ #: sphinx/builders/html/__init__.py:1241
1041
1083
  #, python-format
1042
1084
  msgid "Unknown math_renderer %r is given."
1043
1085
  msgstr ""
1044
1086
 
1045
- #: sphinx/builders/html/__init__.py:1251
1087
+ #: sphinx/builders/html/__init__.py:1249
1046
1088
  #, python-format
1047
1089
  msgid "html_extra_path entry %r does not exist"
1048
1090
  msgstr ""
1049
1091
 
1050
- #: sphinx/builders/html/__init__.py:1255
1092
+ #: sphinx/builders/html/__init__.py:1253
1051
1093
  #, python-format
1052
1094
  msgid "html_extra_path entry %r is placed inside outdir"
1053
1095
  msgstr ""
1054
1096
 
1055
- #: sphinx/builders/html/__init__.py:1264
1097
+ #: sphinx/builders/html/__init__.py:1262
1056
1098
  #, python-format
1057
1099
  msgid "html_static_path entry %r does not exist"
1058
1100
  msgstr ""
1059
1101
 
1060
- #: sphinx/builders/html/__init__.py:1268
1102
+ #: sphinx/builders/html/__init__.py:1266
1061
1103
  #, python-format
1062
1104
  msgid "html_static_path entry %r is placed inside outdir"
1063
1105
  msgstr ""
1064
1106
 
1065
- #: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437
1107
+ #: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444
1066
1108
  #, python-format
1067
1109
  msgid "logo file %r does not exist"
1068
1110
  msgstr ""
1069
1111
 
1070
- #: sphinx/builders/html/__init__.py:1286
1112
+ #: sphinx/builders/html/__init__.py:1284
1071
1113
  #, python-format
1072
1114
  msgid "favicon file %r does not exist"
1073
1115
  msgstr ""
1074
1116
 
1075
- #: sphinx/builders/html/__init__.py:1293
1117
+ #: sphinx/builders/html/__init__.py:1291
1076
1118
  msgid ""
1077
1119
  "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected "
1078
1120
  "in configuration options)"
1079
1121
  msgstr ""
1080
1122
 
1081
- #: sphinx/builders/html/__init__.py:1308
1123
+ #: sphinx/builders/html/__init__.py:1306
1082
1124
  #, python-format
1083
1125
  msgid "%s %s documentation"
1084
1126
  msgstr ""
1085
1127
 
1086
- #: sphinx/builders/latex/__init__.py:113
1128
+ #: sphinx/builders/latex/__init__.py:115
1087
1129
  #, python-format
1088
1130
  msgid "The LaTeX files are in %(outdir)s."
1089
1131
  msgstr ""
1090
1132
 
1091
- #: sphinx/builders/latex/__init__.py:115
1133
+ #: sphinx/builders/latex/__init__.py:117
1092
1134
  msgid ""
1093
1135
  "\n"
1094
1136
  "Run 'make' in that directory to run these through (pdf)latex\n"
1095
1137
  "(use `make latexpdf' here to do that automatically)."
1096
1138
  msgstr ""
1097
1139
 
1098
- #: sphinx/builders/latex/__init__.py:150
1140
+ #: sphinx/builders/latex/__init__.py:152
1099
1141
  msgid "no \"latex_documents\" config value found; no documents will be written"
1100
1142
  msgstr ""
1101
1143
 
1102
- #: sphinx/builders/latex/__init__.py:158
1144
+ #: sphinx/builders/latex/__init__.py:160
1103
1145
  #, python-format
1104
1146
  msgid "\"latex_documents\" config value references unknown document %s"
1105
1147
  msgstr ""
1106
1148
 
1107
- #: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557
1108
- #: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106
1149
+ #: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559
1150
+ #: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106
1109
1151
  #: sphinx/themes/basic/genindex-single.html:30
1110
1152
  #: sphinx/themes/basic/genindex-single.html:55
1111
1153
  #: sphinx/themes/basic/genindex-split.html:11
1112
1154
  #: sphinx/themes/basic/genindex-split.html:14
1113
1155
  #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
1114
1156
  #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138
1115
- #: sphinx/writers/texinfo.py:493
1157
+ #: sphinx/writers/texinfo.py:497
1116
1158
  msgid "Index"
1117
1159
  msgstr ""
1118
1160
 
1119
- #: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91
1161
+ #: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91
1120
1162
  msgid "Release"
1121
1163
  msgstr ""
1122
1164
 
1123
- #: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370
1165
+ #: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370
1124
1166
  #, python-format
1125
1167
  msgid "no Babel option known for language %r"
1126
1168
  msgstr ""
1127
1169
 
1128
- #: sphinx/builders/latex/__init__.py:387
1170
+ #: sphinx/builders/latex/__init__.py:394
1129
1171
  msgid "copying TeX support files"
1130
1172
  msgstr ""
1131
1173
 
1132
- #: sphinx/builders/latex/__init__.py:403
1174
+ #: sphinx/builders/latex/__init__.py:410
1133
1175
  msgid "copying TeX support files..."
1134
1176
  msgstr ""
1135
1177
 
1136
- #: sphinx/builders/latex/__init__.py:416
1178
+ #: sphinx/builders/latex/__init__.py:423
1137
1179
  msgid "copying additional files"
1138
1180
  msgstr ""
1139
1181
 
1140
- #: sphinx/builders/latex/__init__.py:459
1182
+ #: sphinx/builders/latex/__init__.py:466
1141
1183
  #, python-format
1142
1184
  msgid "Unknown configure key: latex_elements[%r], ignored."
1143
1185
  msgstr ""
1144
1186
 
1145
- #: sphinx/builders/latex/__init__.py:467
1187
+ #: sphinx/builders/latex/__init__.py:474
1146
1188
  #, python-format
1147
1189
  msgid "Unknown theme option: latex_theme_options[%r], ignored."
1148
1190
  msgstr ""
@@ -1157,15 +1199,15 @@ msgstr ""
1157
1199
  msgid "%r doesn't have \"%s\" setting"
1158
1200
  msgstr ""
1159
1201
 
1160
- #: sphinx/builders/latex/transforms.py:117
1202
+ #: sphinx/builders/latex/transforms.py:120
1161
1203
  msgid "Failed to get a docname!"
1162
1204
  msgstr ""
1163
1205
 
1164
- #: sphinx/builders/latex/transforms.py:118
1206
+ #: sphinx/builders/latex/transforms.py:121
1165
1207
  msgid "Failed to get a docname for source {source!r}!"
1166
1208
  msgstr ""
1167
1209
 
1168
- #: sphinx/builders/latex/transforms.py:479
1210
+ #: sphinx/builders/latex/transforms.py:482
1169
1211
  #, python-format
1170
1212
  msgid "No footnote was found for given reference node %r"
1171
1213
  msgstr ""
@@ -1224,8 +1266,8 @@ msgstr ""
1224
1266
  msgid "job number should be a positive number"
1225
1267
  msgstr ""
1226
1268
 
1227
- #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477
1228
- #: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689
1269
+ #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474
1270
+ #: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689
1229
1271
  msgid "For more information, visit <https://www.sphinx-doc.org/>."
1230
1272
  msgstr ""
1231
1273
 
@@ -1261,7 +1303,9 @@ msgid "path to output directory"
1261
1303
  msgstr ""
1262
1304
 
1263
1305
  #: sphinx/cmd/build.py:143
1264
- msgid "a list of specific files to rebuild. Ignored if -a is specified"
1306
+ msgid ""
1307
+ "(optional) a list of specific files to rebuild. Ignored if --write-all is"
1308
+ " specified"
1265
1309
  msgstr ""
1266
1310
 
1267
1311
  #: sphinx/cmd/build.py:146
@@ -1269,214 +1313,220 @@ msgid "general options"
1269
1313
  msgstr ""
1270
1314
 
1271
1315
  #: sphinx/cmd/build.py:149
1272
- msgid "builder to use (default: html)"
1316
+ msgid "builder to use (default: 'html')"
1273
1317
  msgstr ""
1274
1318
 
1275
- #: sphinx/cmd/build.py:151
1276
- msgid "write all files (default: only write new and changed files)"
1319
+ #: sphinx/cmd/build.py:152
1320
+ msgid ""
1321
+ "run in parallel with N processes, when possible. 'auto' uses the number "
1322
+ "of CPU cores"
1277
1323
  msgstr ""
1278
1324
 
1279
- #: sphinx/cmd/build.py:154
1280
- msgid "don't use a saved environment, always read all files"
1325
+ #: sphinx/cmd/build.py:155
1326
+ msgid "write all files (default: only write new and changed files)"
1281
1327
  msgstr ""
1282
1328
 
1283
- #: sphinx/cmd/build.py:157
1284
- msgid ""
1285
- "path for the cached environment and doctree files (default: "
1286
- "OUTPUTDIR/.doctrees)"
1329
+ #: sphinx/cmd/build.py:158
1330
+ msgid "don't use a saved environment, always read all files"
1287
1331
  msgstr ""
1288
1332
 
1289
1333
  #: sphinx/cmd/build.py:161
1290
- msgid ""
1291
- "build in parallel with N processes where possible (special value \"auto\""
1292
- " will set N to cpu-count)"
1334
+ msgid "path options"
1293
1335
  msgstr ""
1294
1336
 
1295
- #: sphinx/cmd/build.py:165
1337
+ #: sphinx/cmd/build.py:163
1296
1338
  msgid ""
1297
- "path where configuration file (conf.py) is located (default: same as "
1298
- "SOURCEDIR)"
1339
+ "directory for doctree and environment files (default: "
1340
+ "OUTPUT_DIR/.doctrees)"
1299
1341
  msgstr ""
1300
1342
 
1301
- #: sphinx/cmd/build.py:168
1302
- msgid "use no config file at all, only -D options"
1343
+ #: sphinx/cmd/build.py:166
1344
+ msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
1303
1345
  msgstr ""
1304
1346
 
1305
1347
  #: sphinx/cmd/build.py:171
1306
- msgid "override a setting in configuration file"
1348
+ msgid "use no configuration file, only use settings from -D options"
1307
1349
  msgstr ""
1308
1350
 
1309
1351
  #: sphinx/cmd/build.py:174
1310
- msgid "pass a value into HTML templates"
1352
+ msgid "override a setting in configuration file"
1311
1353
  msgstr ""
1312
1354
 
1313
1355
  #: sphinx/cmd/build.py:177
1314
- msgid "define tag: include \"only\" blocks with TAG"
1356
+ msgid "pass a value into HTML templates"
1315
1357
  msgstr ""
1316
1358
 
1317
- #: sphinx/cmd/build.py:179
1318
- msgid "nit-picky mode, warn about all missing references"
1359
+ #: sphinx/cmd/build.py:180
1360
+ msgid "define tag: include \"only\" blocks with TAG"
1319
1361
  msgstr ""
1320
1362
 
1321
1363
  #: sphinx/cmd/build.py:182
1322
- msgid "console output options"
1364
+ msgid "nit-picky mode: warn about all missing references"
1323
1365
  msgstr ""
1324
1366
 
1325
1367
  #: sphinx/cmd/build.py:184
1368
+ msgid "console output options"
1369
+ msgstr ""
1370
+
1371
+ #: sphinx/cmd/build.py:187
1326
1372
  msgid "increase verbosity (can be repeated)"
1327
1373
  msgstr ""
1328
1374
 
1329
- #: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342
1375
+ #: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340
1330
1376
  msgid "no output on stdout, just warnings on stderr"
1331
1377
  msgstr ""
1332
1378
 
1333
- #: sphinx/cmd/build.py:188
1379
+ #: sphinx/cmd/build.py:191
1334
1380
  msgid "no output at all, not even warnings"
1335
1381
  msgstr ""
1336
1382
 
1337
- #: sphinx/cmd/build.py:191
1383
+ #: sphinx/cmd/build.py:194
1338
1384
  msgid "do emit colored output (default: auto-detect)"
1339
1385
  msgstr ""
1340
1386
 
1341
- #: sphinx/cmd/build.py:194
1387
+ #: sphinx/cmd/build.py:197
1342
1388
  msgid "do not emit colored output (default: auto-detect)"
1343
1389
  msgstr ""
1344
1390
 
1345
- #: sphinx/cmd/build.py:197
1391
+ #: sphinx/cmd/build.py:199
1392
+ msgid "warning control options"
1393
+ msgstr ""
1394
+
1395
+ #: sphinx/cmd/build.py:201
1346
1396
  msgid "write warnings (and errors) to given file"
1347
1397
  msgstr ""
1348
1398
 
1349
- #: sphinx/cmd/build.py:199
1399
+ #: sphinx/cmd/build.py:203
1350
1400
  msgid "turn warnings into errors"
1351
1401
  msgstr ""
1352
1402
 
1353
- #: sphinx/cmd/build.py:201
1354
- msgid "with -W, keep going when getting warnings"
1403
+ #: sphinx/cmd/build.py:205
1404
+ msgid "with --fail-on-warning, keep going when getting warnings"
1355
1405
  msgstr ""
1356
1406
 
1357
- #: sphinx/cmd/build.py:203
1407
+ #: sphinx/cmd/build.py:207
1358
1408
  msgid "show full traceback on exception"
1359
1409
  msgstr ""
1360
1410
 
1361
- #: sphinx/cmd/build.py:205
1411
+ #: sphinx/cmd/build.py:209
1362
1412
  msgid "run Pdb on exception"
1363
1413
  msgstr ""
1364
1414
 
1365
- #: sphinx/cmd/build.py:229
1415
+ #: sphinx/cmd/build.py:244
1366
1416
  msgid "cannot combine -a option and filenames"
1367
1417
  msgstr ""
1368
1418
 
1369
- #: sphinx/cmd/build.py:250
1419
+ #: sphinx/cmd/build.py:276
1370
1420
  #, python-format
1371
1421
  msgid "cannot open warning file %r: %s"
1372
1422
  msgstr ""
1373
1423
 
1374
- #: sphinx/cmd/build.py:264
1424
+ #: sphinx/cmd/build.py:296
1375
1425
  msgid "-D option argument must be in the form name=value"
1376
1426
  msgstr ""
1377
1427
 
1378
- #: sphinx/cmd/build.py:271
1428
+ #: sphinx/cmd/build.py:303
1379
1429
  msgid "-A option argument must be in the form name=value"
1380
1430
  msgstr ""
1381
1431
 
1382
- #: sphinx/cmd/quickstart.py:48
1432
+ #: sphinx/cmd/quickstart.py:42
1383
1433
  msgid "automatically insert docstrings from modules"
1384
1434
  msgstr ""
1385
1435
 
1386
- #: sphinx/cmd/quickstart.py:49
1436
+ #: sphinx/cmd/quickstart.py:43
1387
1437
  msgid "automatically test code snippets in doctest blocks"
1388
1438
  msgstr ""
1389
1439
 
1390
- #: sphinx/cmd/quickstart.py:50
1440
+ #: sphinx/cmd/quickstart.py:44
1391
1441
  msgid "link between Sphinx documentation of different projects"
1392
1442
  msgstr ""
1393
1443
 
1394
- #: sphinx/cmd/quickstart.py:51
1444
+ #: sphinx/cmd/quickstart.py:45
1395
1445
  msgid "write \"todo\" entries that can be shown or hidden on build"
1396
1446
  msgstr ""
1397
1447
 
1398
- #: sphinx/cmd/quickstart.py:52
1448
+ #: sphinx/cmd/quickstart.py:46
1399
1449
  msgid "checks for documentation coverage"
1400
1450
  msgstr ""
1401
1451
 
1402
- #: sphinx/cmd/quickstart.py:53
1452
+ #: sphinx/cmd/quickstart.py:47
1403
1453
  msgid "include math, rendered as PNG or SVG images"
1404
1454
  msgstr ""
1405
1455
 
1406
- #: sphinx/cmd/quickstart.py:54
1456
+ #: sphinx/cmd/quickstart.py:48
1407
1457
  msgid "include math, rendered in the browser by MathJax"
1408
1458
  msgstr ""
1409
1459
 
1410
- #: sphinx/cmd/quickstart.py:55
1460
+ #: sphinx/cmd/quickstart.py:49
1411
1461
  msgid "conditional inclusion of content based on config values"
1412
1462
  msgstr ""
1413
1463
 
1414
- #: sphinx/cmd/quickstart.py:56
1464
+ #: sphinx/cmd/quickstart.py:50
1415
1465
  msgid "include links to the source code of documented Python objects"
1416
1466
  msgstr ""
1417
1467
 
1418
- #: sphinx/cmd/quickstart.py:57
1468
+ #: sphinx/cmd/quickstart.py:51
1419
1469
  msgid "create .nojekyll file to publish the document on GitHub pages"
1420
1470
  msgstr ""
1421
1471
 
1422
- #: sphinx/cmd/quickstart.py:99
1472
+ #: sphinx/cmd/quickstart.py:93
1423
1473
  msgid "Please enter a valid path name."
1424
1474
  msgstr ""
1425
1475
 
1426
- #: sphinx/cmd/quickstart.py:115
1476
+ #: sphinx/cmd/quickstart.py:109
1427
1477
  msgid "Please enter some text."
1428
1478
  msgstr ""
1429
1479
 
1430
- #: sphinx/cmd/quickstart.py:122
1480
+ #: sphinx/cmd/quickstart.py:116
1431
1481
  #, python-format
1432
1482
  msgid "Please enter one of %s."
1433
1483
  msgstr ""
1434
1484
 
1435
- #: sphinx/cmd/quickstart.py:129
1485
+ #: sphinx/cmd/quickstart.py:123
1436
1486
  msgid "Please enter either 'y' or 'n'."
1437
1487
  msgstr ""
1438
1488
 
1439
- #: sphinx/cmd/quickstart.py:135
1489
+ #: sphinx/cmd/quickstart.py:129
1440
1490
  msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
1441
1491
  msgstr ""
1442
1492
 
1443
- #: sphinx/cmd/quickstart.py:215
1493
+ #: sphinx/cmd/quickstart.py:208
1444
1494
  #, python-format
1445
1495
  msgid "Welcome to the Sphinx %s quickstart utility."
1446
1496
  msgstr ""
1447
1497
 
1448
- #: sphinx/cmd/quickstart.py:217
1498
+ #: sphinx/cmd/quickstart.py:210
1449
1499
  msgid ""
1450
1500
  "Please enter values for the following settings (just press Enter to\n"
1451
1501
  "accept a default value, if one is given in brackets)."
1452
1502
  msgstr ""
1453
1503
 
1454
- #: sphinx/cmd/quickstart.py:222
1504
+ #: sphinx/cmd/quickstart.py:215
1455
1505
  #, python-format
1456
1506
  msgid "Selected root path: %s"
1457
1507
  msgstr ""
1458
1508
 
1459
- #: sphinx/cmd/quickstart.py:225
1509
+ #: sphinx/cmd/quickstart.py:218
1460
1510
  msgid "Enter the root path for documentation."
1461
1511
  msgstr ""
1462
1512
 
1463
- #: sphinx/cmd/quickstart.py:226
1513
+ #: sphinx/cmd/quickstart.py:219
1464
1514
  msgid "Root path for the documentation"
1465
1515
  msgstr ""
1466
1516
 
1467
- #: sphinx/cmd/quickstart.py:231
1517
+ #: sphinx/cmd/quickstart.py:224
1468
1518
  msgid "Error: an existing conf.py has been found in the selected root path."
1469
1519
  msgstr ""
1470
1520
 
1471
- #: sphinx/cmd/quickstart.py:233
1521
+ #: sphinx/cmd/quickstart.py:226
1472
1522
  msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
1473
1523
  msgstr ""
1474
1524
 
1475
- #: sphinx/cmd/quickstart.py:235
1525
+ #: sphinx/cmd/quickstart.py:228
1476
1526
  msgid "Please enter a new root path (or just Enter to exit)"
1477
1527
  msgstr ""
1478
1528
 
1479
- #: sphinx/cmd/quickstart.py:242
1529
+ #: sphinx/cmd/quickstart.py:235
1480
1530
  msgid ""
1481
1531
  "You have two options for placing the build directory for Sphinx output.\n"
1482
1532
  "Either, you use a directory \"_build\" within the root path, or you "
@@ -1484,11 +1534,11 @@ msgid ""
1484
1534
  "\"source\" and \"build\" directories within the root path."
1485
1535
  msgstr ""
1486
1536
 
1487
- #: sphinx/cmd/quickstart.py:245
1537
+ #: sphinx/cmd/quickstart.py:238
1488
1538
  msgid "Separate source and build directories (y/n)"
1489
1539
  msgstr ""
1490
1540
 
1491
- #: sphinx/cmd/quickstart.py:249
1541
+ #: sphinx/cmd/quickstart.py:242
1492
1542
  msgid ""
1493
1543
  "Inside the root directory, two more directories will be created; "
1494
1544
  "\"_templates\"\n"
@@ -1498,23 +1548,23 @@ msgid ""
1498
1548
  "underscore."
1499
1549
  msgstr ""
1500
1550
 
1501
- #: sphinx/cmd/quickstart.py:252
1551
+ #: sphinx/cmd/quickstart.py:245
1502
1552
  msgid "Name prefix for templates and static dir"
1503
1553
  msgstr ""
1504
1554
 
1505
- #: sphinx/cmd/quickstart.py:256
1555
+ #: sphinx/cmd/quickstart.py:249
1506
1556
  msgid "The project name will occur in several places in the built documentation."
1507
1557
  msgstr ""
1508
1558
 
1509
- #: sphinx/cmd/quickstart.py:257
1559
+ #: sphinx/cmd/quickstart.py:250
1510
1560
  msgid "Project name"
1511
1561
  msgstr ""
1512
1562
 
1513
- #: sphinx/cmd/quickstart.py:259
1563
+ #: sphinx/cmd/quickstart.py:252
1514
1564
  msgid "Author name(s)"
1515
1565
  msgstr ""
1516
1566
 
1517
- #: sphinx/cmd/quickstart.py:263
1567
+ #: sphinx/cmd/quickstart.py:256
1518
1568
  msgid ""
1519
1569
  "Sphinx has the notion of a \"version\" and a \"release\" for the\n"
1520
1570
  "software. Each version can have multiple releases. For example, for\n"
@@ -1523,15 +1573,15 @@ msgid ""
1523
1573
  "just set both to the same value."
1524
1574
  msgstr ""
1525
1575
 
1526
- #: sphinx/cmd/quickstart.py:268
1576
+ #: sphinx/cmd/quickstart.py:261
1527
1577
  msgid "Project version"
1528
1578
  msgstr ""
1529
1579
 
1530
- #: sphinx/cmd/quickstart.py:270
1580
+ #: sphinx/cmd/quickstart.py:263
1531
1581
  msgid "Project release"
1532
1582
  msgstr ""
1533
1583
 
1534
- #: sphinx/cmd/quickstart.py:274
1584
+ #: sphinx/cmd/quickstart.py:267
1535
1585
  msgid ""
1536
1586
  "If the documents are to be written in a language other than English,\n"
1537
1587
  "you can select a language here by its language code. Sphinx will then\n"
@@ -1542,21 +1592,21 @@ msgid ""
1542
1592
  "language."
1543
1593
  msgstr ""
1544
1594
 
1545
- #: sphinx/cmd/quickstart.py:282
1595
+ #: sphinx/cmd/quickstart.py:275
1546
1596
  msgid "Project language"
1547
1597
  msgstr ""
1548
1598
 
1549
- #: sphinx/cmd/quickstart.py:288
1599
+ #: sphinx/cmd/quickstart.py:281
1550
1600
  msgid ""
1551
1601
  "The file name suffix for source files. Commonly, this is either \".txt\"\n"
1552
1602
  "or \".rst\". Only files with this suffix are considered documents."
1553
1603
  msgstr ""
1554
1604
 
1555
- #: sphinx/cmd/quickstart.py:290
1605
+ #: sphinx/cmd/quickstart.py:283
1556
1606
  msgid "Source file suffix"
1557
1607
  msgstr ""
1558
1608
 
1559
- #: sphinx/cmd/quickstart.py:294
1609
+ #: sphinx/cmd/quickstart.py:287
1560
1610
  msgid ""
1561
1611
  "One document is special in that it is considered the top node of the\n"
1562
1612
  "\"contents tree\", that is, it is the root of the hierarchical structure\n"
@@ -1564,36 +1614,36 @@ msgid ""
1564
1614
  "document is a custom template, you can also set this to another filename."
1565
1615
  msgstr ""
1566
1616
 
1567
- #: sphinx/cmd/quickstart.py:298
1617
+ #: sphinx/cmd/quickstart.py:291
1568
1618
  msgid "Name of your master document (without suffix)"
1569
1619
  msgstr ""
1570
1620
 
1571
- #: sphinx/cmd/quickstart.py:303
1621
+ #: sphinx/cmd/quickstart.py:296
1572
1622
  #, python-format
1573
1623
  msgid ""
1574
1624
  "Error: the master file %s has already been found in the selected root "
1575
1625
  "path."
1576
1626
  msgstr ""
1577
1627
 
1578
- #: sphinx/cmd/quickstart.py:305
1628
+ #: sphinx/cmd/quickstart.py:298
1579
1629
  msgid "sphinx-quickstart will not overwrite the existing file."
1580
1630
  msgstr ""
1581
1631
 
1582
- #: sphinx/cmd/quickstart.py:307
1632
+ #: sphinx/cmd/quickstart.py:300
1583
1633
  msgid "Please enter a new file name, or rename the existing file and press Enter"
1584
1634
  msgstr ""
1585
1635
 
1586
- #: sphinx/cmd/quickstart.py:311
1636
+ #: sphinx/cmd/quickstart.py:304
1587
1637
  msgid "Indicate which of the following Sphinx extensions should be enabled:"
1588
1638
  msgstr ""
1589
1639
 
1590
- #: sphinx/cmd/quickstart.py:319
1640
+ #: sphinx/cmd/quickstart.py:312
1591
1641
  msgid ""
1592
1642
  "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has"
1593
1643
  " been deselected."
1594
1644
  msgstr ""
1595
1645
 
1596
- #: sphinx/cmd/quickstart.py:325
1646
+ #: sphinx/cmd/quickstart.py:318
1597
1647
  msgid ""
1598
1648
  "A Makefile and a Windows command file can be generated for you so that "
1599
1649
  "you\n"
@@ -1601,29 +1651,29 @@ msgid ""
1601
1651
  "directly."
1602
1652
  msgstr ""
1603
1653
 
1604
- #: sphinx/cmd/quickstart.py:328
1654
+ #: sphinx/cmd/quickstart.py:321
1605
1655
  msgid "Create Makefile? (y/n)"
1606
1656
  msgstr ""
1607
1657
 
1608
- #: sphinx/cmd/quickstart.py:331
1658
+ #: sphinx/cmd/quickstart.py:324
1609
1659
  msgid "Create Windows command file? (y/n)"
1610
1660
  msgstr ""
1611
1661
 
1612
- #: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93
1662
+ #: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93
1613
1663
  #, python-format
1614
1664
  msgid "Creating file %s."
1615
1665
  msgstr ""
1616
1666
 
1617
- #: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90
1667
+ #: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90
1618
1668
  #, python-format
1619
1669
  msgid "File %s already exists, skipping."
1620
1670
  msgstr ""
1621
1671
 
1622
- #: sphinx/cmd/quickstart.py:422
1672
+ #: sphinx/cmd/quickstart.py:418
1623
1673
  msgid "Finished: An initial directory structure has been created."
1624
1674
  msgstr ""
1625
1675
 
1626
- #: sphinx/cmd/quickstart.py:424
1676
+ #: sphinx/cmd/quickstart.py:420
1627
1677
  #, python-format
1628
1678
  msgid ""
1629
1679
  "You should now populate your master file %s and create other "
@@ -1631,26 +1681,26 @@ msgid ""
1631
1681
  "source files. "
1632
1682
  msgstr ""
1633
1683
 
1634
- #: sphinx/cmd/quickstart.py:427
1684
+ #: sphinx/cmd/quickstart.py:423
1635
1685
  msgid ""
1636
1686
  "Use the Makefile to build the docs, like so:\n"
1637
1687
  " make builder"
1638
1688
  msgstr ""
1639
1689
 
1640
- #: sphinx/cmd/quickstart.py:430
1690
+ #: sphinx/cmd/quickstart.py:426
1641
1691
  #, python-format
1642
1692
  msgid ""
1643
1693
  "Use the sphinx-build command to build the docs, like so:\n"
1644
1694
  " sphinx-build -b builder %s %s"
1645
1695
  msgstr ""
1646
1696
 
1647
- #: sphinx/cmd/quickstart.py:432
1697
+ #: sphinx/cmd/quickstart.py:428
1648
1698
  msgid ""
1649
1699
  "where \"builder\" is one of the supported builders, e.g. html, latex or "
1650
1700
  "linkcheck."
1651
1701
  msgstr ""
1652
1702
 
1653
- #: sphinx/cmd/quickstart.py:467
1703
+ #: sphinx/cmd/quickstart.py:464
1654
1704
  msgid ""
1655
1705
  "\n"
1656
1706
  "Generate required files for a Sphinx project.\n"
@@ -1661,136 +1711,136 @@ msgid ""
1661
1711
  "Makefile to be used with sphinx-build.\n"
1662
1712
  msgstr ""
1663
1713
 
1664
- #: sphinx/cmd/quickstart.py:482
1714
+ #: sphinx/cmd/quickstart.py:479
1665
1715
  msgid "quiet mode"
1666
1716
  msgstr ""
1667
1717
 
1668
- #: sphinx/cmd/quickstart.py:487
1718
+ #: sphinx/cmd/quickstart.py:484
1669
1719
  msgid "project root"
1670
1720
  msgstr ""
1671
1721
 
1672
- #: sphinx/cmd/quickstart.py:489
1722
+ #: sphinx/cmd/quickstart.py:486
1673
1723
  msgid "Structure options"
1674
1724
  msgstr ""
1675
1725
 
1676
- #: sphinx/cmd/quickstart.py:491
1726
+ #: sphinx/cmd/quickstart.py:488
1677
1727
  msgid "if specified, separate source and build dirs"
1678
1728
  msgstr ""
1679
1729
 
1680
- #: sphinx/cmd/quickstart.py:493
1730
+ #: sphinx/cmd/quickstart.py:490
1681
1731
  msgid "if specified, create build dir under source dir"
1682
1732
  msgstr ""
1683
1733
 
1684
- #: sphinx/cmd/quickstart.py:495
1734
+ #: sphinx/cmd/quickstart.py:492
1685
1735
  msgid "replacement for dot in _templates etc."
1686
1736
  msgstr ""
1687
1737
 
1688
- #: sphinx/cmd/quickstart.py:497
1738
+ #: sphinx/cmd/quickstart.py:494
1689
1739
  msgid "Project basic options"
1690
1740
  msgstr ""
1691
1741
 
1692
- #: sphinx/cmd/quickstart.py:499
1742
+ #: sphinx/cmd/quickstart.py:496
1693
1743
  msgid "project name"
1694
1744
  msgstr ""
1695
1745
 
1696
- #: sphinx/cmd/quickstart.py:501
1746
+ #: sphinx/cmd/quickstart.py:498
1697
1747
  msgid "author names"
1698
1748
  msgstr ""
1699
1749
 
1700
- #: sphinx/cmd/quickstart.py:503
1750
+ #: sphinx/cmd/quickstart.py:500
1701
1751
  msgid "version of project"
1702
1752
  msgstr ""
1703
1753
 
1704
- #: sphinx/cmd/quickstart.py:505
1754
+ #: sphinx/cmd/quickstart.py:502
1705
1755
  msgid "release of project"
1706
1756
  msgstr ""
1707
1757
 
1708
- #: sphinx/cmd/quickstart.py:507
1758
+ #: sphinx/cmd/quickstart.py:504
1709
1759
  msgid "document language"
1710
1760
  msgstr ""
1711
1761
 
1712
- #: sphinx/cmd/quickstart.py:509
1762
+ #: sphinx/cmd/quickstart.py:506
1713
1763
  msgid "source file suffix"
1714
1764
  msgstr ""
1715
1765
 
1716
- #: sphinx/cmd/quickstart.py:511
1766
+ #: sphinx/cmd/quickstart.py:508
1717
1767
  msgid "master document name"
1718
1768
  msgstr ""
1719
1769
 
1720
- #: sphinx/cmd/quickstart.py:513
1770
+ #: sphinx/cmd/quickstart.py:510
1721
1771
  msgid "use epub"
1722
1772
  msgstr ""
1723
1773
 
1724
- #: sphinx/cmd/quickstart.py:515
1774
+ #: sphinx/cmd/quickstart.py:512
1725
1775
  msgid "Extension options"
1726
1776
  msgstr ""
1727
1777
 
1728
- #: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402
1778
+ #: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400
1729
1779
  #, python-format
1730
1780
  msgid "enable %s extension"
1731
1781
  msgstr ""
1732
1782
 
1733
- #: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398
1783
+ #: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396
1734
1784
  msgid "enable arbitrary extensions"
1735
1785
  msgstr ""
1736
1786
 
1737
- #: sphinx/cmd/quickstart.py:523
1787
+ #: sphinx/cmd/quickstart.py:520
1738
1788
  msgid "Makefile and Batchfile creation"
1739
1789
  msgstr ""
1740
1790
 
1741
- #: sphinx/cmd/quickstart.py:525
1791
+ #: sphinx/cmd/quickstart.py:522
1742
1792
  msgid "create makefile"
1743
1793
  msgstr ""
1744
1794
 
1745
- #: sphinx/cmd/quickstart.py:527
1795
+ #: sphinx/cmd/quickstart.py:524
1746
1796
  msgid "do not create makefile"
1747
1797
  msgstr ""
1748
1798
 
1749
- #: sphinx/cmd/quickstart.py:529
1799
+ #: sphinx/cmd/quickstart.py:526
1750
1800
  msgid "create batchfile"
1751
1801
  msgstr ""
1752
1802
 
1753
- #: sphinx/cmd/quickstart.py:532
1803
+ #: sphinx/cmd/quickstart.py:529
1754
1804
  msgid "do not create batchfile"
1755
1805
  msgstr ""
1756
1806
 
1757
- #: sphinx/cmd/quickstart.py:535
1807
+ #: sphinx/cmd/quickstart.py:532
1758
1808
  msgid "use make-mode for Makefile/make.bat"
1759
1809
  msgstr ""
1760
1810
 
1761
- #: sphinx/cmd/quickstart.py:538
1811
+ #: sphinx/cmd/quickstart.py:535
1762
1812
  msgid "do not use make-mode for Makefile/make.bat"
1763
1813
  msgstr ""
1764
1814
 
1765
- #: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404
1815
+ #: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402
1766
1816
  msgid "Project templating"
1767
1817
  msgstr ""
1768
1818
 
1769
- #: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407
1819
+ #: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405
1770
1820
  msgid "template directory for template files"
1771
1821
  msgstr ""
1772
1822
 
1773
- #: sphinx/cmd/quickstart.py:546
1823
+ #: sphinx/cmd/quickstart.py:543
1774
1824
  msgid "define a template variable"
1775
1825
  msgstr ""
1776
1826
 
1777
- #: sphinx/cmd/quickstart.py:579
1827
+ #: sphinx/cmd/quickstart.py:576
1778
1828
  msgid ""
1779
1829
  "\"quiet\" is specified, but any of \"project\" or \"author\" is not "
1780
1830
  "specified."
1781
1831
  msgstr ""
1782
1832
 
1783
- #: sphinx/cmd/quickstart.py:593
1833
+ #: sphinx/cmd/quickstart.py:590
1784
1834
  msgid "Error: specified path is not a directory, or sphinx files already exist."
1785
1835
  msgstr ""
1786
1836
 
1787
- #: sphinx/cmd/quickstart.py:595
1837
+ #: sphinx/cmd/quickstart.py:592
1788
1838
  msgid ""
1789
1839
  "sphinx-quickstart only generate into a empty directory. Please specify a "
1790
1840
  "new root path."
1791
1841
  msgstr ""
1792
1842
 
1793
- #: sphinx/cmd/quickstart.py:610
1843
+ #: sphinx/cmd/quickstart.py:607
1794
1844
  #, python-format
1795
1845
  msgid "Invalid template variable: %s"
1796
1846
  msgstr ""
@@ -1841,47 +1891,47 @@ msgstr ""
1841
1891
  msgid "Line spec %r: no lines pulled from include file %r"
1842
1892
  msgstr ""
1843
1893
 
1844
- #: sphinx/directives/other.py:116
1894
+ #: sphinx/directives/other.py:120
1845
1895
  #, python-format
1846
1896
  msgid "toctree glob pattern %r didn't match any documents"
1847
1897
  msgstr ""
1848
1898
 
1849
- #: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323
1899
+ #: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324
1850
1900
  #, python-format
1851
1901
  msgid "toctree contains reference to excluded document %r"
1852
1902
  msgstr ""
1853
1903
 
1854
- #: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327
1904
+ #: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328
1855
1905
  #, python-format
1856
1906
  msgid "toctree contains reference to nonexisting document %r"
1857
1907
  msgstr ""
1858
1908
 
1859
- #: sphinx/directives/other.py:156
1909
+ #: sphinx/directives/other.py:160
1860
1910
  #, python-format
1861
1911
  msgid "duplicated entry found in toctree: %s"
1862
1912
  msgstr ""
1863
1913
 
1864
- #: sphinx/directives/other.py:188
1914
+ #: sphinx/directives/other.py:193
1865
1915
  msgid "Section author: "
1866
1916
  msgstr ""
1867
1917
 
1868
- #: sphinx/directives/other.py:190
1918
+ #: sphinx/directives/other.py:195
1869
1919
  msgid "Module author: "
1870
1920
  msgstr ""
1871
1921
 
1872
- #: sphinx/directives/other.py:192
1922
+ #: sphinx/directives/other.py:197
1873
1923
  msgid "Code author: "
1874
1924
  msgstr ""
1875
1925
 
1876
- #: sphinx/directives/other.py:194
1926
+ #: sphinx/directives/other.py:199
1877
1927
  msgid "Author: "
1878
1928
  msgstr ""
1879
1929
 
1880
- #: sphinx/directives/other.py:266
1930
+ #: sphinx/directives/other.py:275
1881
1931
  msgid ".. acks content is not a list"
1882
1932
  msgstr ""
1883
1933
 
1884
- #: sphinx/directives/other.py:291
1934
+ #: sphinx/directives/other.py:301
1885
1935
  msgid ".. hlist content is not a list"
1886
1936
  msgstr ""
1887
1937
 
@@ -1896,433 +1946,438 @@ msgstr ""
1896
1946
  msgid "%s %s"
1897
1947
  msgstr ""
1898
1948
 
1899
- #: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318
1949
+ #: sphinx/domains/changeset.py:23
1900
1950
  #, python-format
1901
- msgid ""
1902
- "Duplicate C declaration, also defined at %s:%s.\n"
1903
- "Declaration is '.. c:%s:: %s'."
1951
+ msgid "Added in version %s"
1904
1952
  msgstr ""
1905
1953
 
1906
- #: sphinx/domains/c.py:3257
1954
+ #: sphinx/domains/changeset.py:24
1907
1955
  #, python-format
1908
- msgid "%s (C %s)"
1956
+ msgid "Changed in version %s"
1909
1957
  msgstr ""
1910
1958
 
1911
- #: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496
1912
- #: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760
1913
- msgid "Parameters"
1959
+ #: sphinx/domains/changeset.py:25
1960
+ #, python-format
1961
+ msgid "Deprecated since version %s"
1914
1962
  msgstr ""
1915
1963
 
1916
- #: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502
1917
- msgid "Return values"
1964
+ #: sphinx/domains/changeset.py:26
1965
+ #, python-format
1966
+ msgid "Removed in version %s"
1918
1967
  msgstr ""
1919
1968
 
1920
- #: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505
1921
- #: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694
1922
- msgid "Returns"
1969
+ #: sphinx/domains/citation.py:71
1970
+ #, python-format
1971
+ msgid "duplicate citation %s, other instance in %s"
1923
1972
  msgstr ""
1924
1973
 
1925
- #: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261
1926
- #: sphinx/domains/python.py:696
1927
- msgid "Return type"
1974
+ #: sphinx/domains/citation.py:82
1975
+ #, python-format
1976
+ msgid "Citation [%s] is not referenced."
1928
1977
  msgstr ""
1929
1978
 
1930
- #: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909
1931
- msgid "member"
1979
+ #: sphinx/domains/javascript.py:165
1980
+ #, python-format
1981
+ msgid "%s() (built-in function)"
1932
1982
  msgstr ""
1933
1983
 
1934
- #: sphinx/domains/c.py:3731
1935
- msgid "variable"
1984
+ #: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240
1985
+ #, python-format
1986
+ msgid "%s() (%s method)"
1936
1987
  msgstr ""
1937
1988
 
1938
- #: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908
1939
- #: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454
1940
- msgid "function"
1989
+ #: sphinx/domains/javascript.py:168
1990
+ #, python-format
1991
+ msgid "%s() (class)"
1941
1992
  msgstr ""
1942
1993
 
1943
- #: sphinx/domains/c.py:3733
1944
- msgid "macro"
1994
+ #: sphinx/domains/javascript.py:170
1995
+ #, python-format
1996
+ msgid "%s (global variable or constant)"
1945
1997
  msgstr ""
1946
1998
 
1947
- #: sphinx/domains/c.py:3734
1948
- msgid "struct"
1999
+ #: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325
2000
+ #, python-format
2001
+ msgid "%s (%s attribute)"
1949
2002
  msgstr ""
1950
2003
 
1951
- #: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907
1952
- msgid "union"
2004
+ #: sphinx/domains/javascript.py:255
2005
+ msgid "Arguments"
1953
2006
  msgstr ""
1954
2007
 
1955
- #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912
1956
- msgid "enum"
2008
+ #: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258
2009
+ msgid "Throws"
1957
2010
  msgstr ""
1958
2011
 
1959
- #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913
1960
- msgid "enumerator"
2012
+ #: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361
2013
+ #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175
2014
+ msgid "Returns"
1961
2015
  msgstr ""
1962
2016
 
1963
- #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910
1964
- msgid "type"
2017
+ #: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263
2018
+ #: sphinx/domains/python/_object.py:177
2019
+ msgid "Return type"
1965
2020
  msgstr ""
1966
2021
 
1967
- #: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915
1968
- msgid "function parameter"
2022
+ #: sphinx/domains/javascript.py:331
2023
+ #, python-format
2024
+ msgid "%s (module)"
1969
2025
  msgstr ""
1970
2026
 
1971
- #: sphinx/domains/changeset.py:23
1972
- #, python-format
1973
- msgid "New in version %s"
2027
+ #: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764
2028
+ #: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574
2029
+ msgid "function"
1974
2030
  msgstr ""
1975
2031
 
1976
- #: sphinx/domains/changeset.py:24
1977
- #, python-format
1978
- msgid "Changed in version %s"
2032
+ #: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578
2033
+ msgid "method"
1979
2034
  msgstr ""
1980
2035
 
1981
- #: sphinx/domains/changeset.py:25
1982
- #, python-format
1983
- msgid "Deprecated since version %s"
2036
+ #: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370
2037
+ #: sphinx/domains/python/__init__.py:576
2038
+ msgid "class"
2039
+ msgstr ""
2040
+
2041
+ #: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575
2042
+ msgid "data"
1984
2043
  msgstr ""
1985
2044
 
1986
- #: sphinx/domains/citation.py:70
2045
+ #: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581
2046
+ msgid "attribute"
2047
+ msgstr ""
2048
+
2049
+ #: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583
2050
+ msgid "module"
2051
+ msgstr ""
2052
+
2053
+ #: sphinx/domains/javascript.py:404
1987
2054
  #, python-format
1988
- msgid "duplicate citation %s, other instance in %s"
2055
+ msgid "duplicate %s description of %s, other %s in %s"
1989
2056
  msgstr ""
1990
2057
 
1991
- #: sphinx/domains/citation.py:81
2058
+ #: sphinx/domains/math.py:63
1992
2059
  #, python-format
1993
- msgid "Citation [%s] is not referenced."
2060
+ msgid "duplicate label of equation %s, other instance in %s"
1994
2061
  msgstr ""
1995
2062
 
1996
- #: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423
2063
+ #: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252
1997
2064
  #, python-format
1998
- msgid ""
1999
- "Duplicate C++ declaration, also defined at %s:%s.\n"
2000
- "Declaration is '.. cpp:%s:: %s'."
2065
+ msgid "Invalid math_eqref_format: %r"
2001
2066
  msgstr ""
2002
2067
 
2003
- #: sphinx/domains/cpp.py:7218
2004
- msgid "Template Parameters"
2068
+ #: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184
2069
+ #, python-format
2070
+ msgid "%s (directive)"
2005
2071
  msgstr ""
2006
2072
 
2007
- #: sphinx/domains/cpp.py:7340
2073
+ #: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189
2008
2074
  #, python-format
2009
- msgid "%s (C++ %s)"
2075
+ msgid ":%s: (directive option)"
2010
2076
  msgstr ""
2011
2077
 
2012
- #: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256
2013
- msgid "Throws"
2078
+ #: sphinx/domains/rst.py:213
2079
+ #, python-format
2080
+ msgid "%s (role)"
2014
2081
  msgstr ""
2015
2082
 
2016
- #: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367
2017
- #: sphinx/domains/python.py:1456
2018
- msgid "class"
2083
+ #: sphinx/domains/rst.py:223
2084
+ msgid "directive"
2019
2085
  msgstr ""
2020
2086
 
2021
- #: sphinx/domains/cpp.py:7911
2022
- msgid "concept"
2087
+ #: sphinx/domains/rst.py:224
2088
+ msgid "directive-option"
2023
2089
  msgstr ""
2024
2090
 
2025
- #: sphinx/domains/cpp.py:7916
2026
- msgid "template parameter"
2091
+ #: sphinx/domains/rst.py:225
2092
+ msgid "role"
2027
2093
  msgstr ""
2028
2094
 
2029
- #: sphinx/domains/javascript.py:164
2095
+ #: sphinx/domains/rst.py:247
2030
2096
  #, python-format
2031
- msgid "%s() (built-in function)"
2097
+ msgid "duplicate description of %s %s, other instance in %s"
2032
2098
  msgstr ""
2033
2099
 
2034
- #: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121
2100
+ #: sphinx/domains/c/__init__.py:146
2035
2101
  #, python-format
2036
- msgid "%s() (%s method)"
2102
+ msgid "%s (C %s)"
2037
2103
  msgstr ""
2038
2104
 
2039
- #: sphinx/domains/javascript.py:167
2105
+ #: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552
2040
2106
  #, python-format
2041
- msgid "%s() (class)"
2107
+ msgid ""
2108
+ "Duplicate C declaration, also defined at %s:%s.\n"
2109
+ "Declaration is '.. c:%s:: %s'."
2042
2110
  msgstr ""
2043
2111
 
2044
- #: sphinx/domains/javascript.py:169
2045
- #, python-format
2046
- msgid "%s (global variable or constant)"
2112
+ #: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344
2113
+ #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762
2114
+ msgid "Parameters"
2047
2115
  msgstr ""
2048
2116
 
2049
- #: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206
2050
- #, python-format
2051
- msgid "%s (%s attribute)"
2117
+ #: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357
2118
+ msgid "Return values"
2052
2119
  msgstr ""
2053
2120
 
2054
- #: sphinx/domains/javascript.py:253
2055
- msgid "Arguments"
2121
+ #: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765
2122
+ msgid "member"
2056
2123
  msgstr ""
2057
2124
 
2058
- #: sphinx/domains/javascript.py:329
2059
- #, python-format
2060
- msgid "%s (module)"
2125
+ #: sphinx/domains/c/__init__.py:621
2126
+ msgid "variable"
2061
2127
  msgstr ""
2062
2128
 
2063
- #: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458
2064
- msgid "method"
2129
+ #: sphinx/domains/c/__init__.py:623
2130
+ msgid "macro"
2065
2131
  msgstr ""
2066
2132
 
2067
- #: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455
2068
- msgid "data"
2133
+ #: sphinx/domains/c/__init__.py:624
2134
+ msgid "struct"
2069
2135
  msgstr ""
2070
2136
 
2071
- #: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461
2072
- msgid "attribute"
2137
+ #: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763
2138
+ msgid "union"
2073
2139
  msgstr ""
2074
2140
 
2075
- #: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463
2076
- msgid "module"
2141
+ #: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768
2142
+ msgid "enum"
2077
2143
  msgstr ""
2078
2144
 
2079
- #: sphinx/domains/javascript.py:401
2080
- #, python-format
2081
- msgid "duplicate %s description of %s, other %s in %s"
2145
+ #: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769
2146
+ msgid "enumerator"
2147
+ msgstr ""
2148
+
2149
+ #: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766
2150
+ msgid "type"
2082
2151
  msgstr ""
2083
2152
 
2084
- #: sphinx/domains/math.py:61
2153
+ #: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771
2154
+ msgid "function parameter"
2155
+ msgstr ""
2156
+
2157
+ #: sphinx/domains/cpp/__init__.py:63
2158
+ msgid "Template Parameters"
2159
+ msgstr ""
2160
+
2161
+ #: sphinx/domains/cpp/__init__.py:185
2085
2162
  #, python-format
2086
- msgid "duplicate label of equation %s, other instance in %s"
2163
+ msgid "%s (C++ %s)"
2087
2164
  msgstr ""
2088
2165
 
2089
- #: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252
2166
+ #: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790
2090
2167
  #, python-format
2091
- msgid "Invalid math_eqref_format: %r"
2168
+ msgid ""
2169
+ "Duplicate C++ declaration, also defined at %s:%s.\n"
2170
+ "Declaration is '.. cpp:%s:: %s'."
2092
2171
  msgstr ""
2093
2172
 
2094
- #: sphinx/domains/python.py:687
2095
- msgid "Variables"
2173
+ #: sphinx/domains/cpp/__init__.py:767
2174
+ msgid "concept"
2096
2175
  msgstr ""
2097
2176
 
2098
- #: sphinx/domains/python.py:691
2099
- msgid "Raises"
2177
+ #: sphinx/domains/cpp/__init__.py:772
2178
+ msgid "template parameter"
2100
2179
  msgstr ""
2101
2180
 
2102
- #: sphinx/domains/python.py:975 sphinx/domains/python.py:1112
2181
+ #: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231
2103
2182
  #, python-format
2104
2183
  msgid "%s() (in module %s)"
2105
2184
  msgstr ""
2106
2185
 
2107
- #: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202
2108
- #: sphinx/domains/python.py:1253
2186
+ #: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321
2187
+ #: sphinx/domains/python/__init__.py:372
2109
2188
  #, python-format
2110
2189
  msgid "%s (in module %s)"
2111
2190
  msgstr ""
2112
2191
 
2113
- #: sphinx/domains/python.py:1037
2192
+ #: sphinx/domains/python/__init__.py:156
2114
2193
  #, python-format
2115
2194
  msgid "%s (built-in variable)"
2116
2195
  msgstr ""
2117
2196
 
2118
- #: sphinx/domains/python.py:1062
2197
+ #: sphinx/domains/python/__init__.py:181
2119
2198
  #, python-format
2120
2199
  msgid "%s (built-in class)"
2121
2200
  msgstr ""
2122
2201
 
2123
- #: sphinx/domains/python.py:1063
2202
+ #: sphinx/domains/python/__init__.py:182
2124
2203
  #, python-format
2125
2204
  msgid "%s (class in %s)"
2126
2205
  msgstr ""
2127
2206
 
2128
- #: sphinx/domains/python.py:1117
2207
+ #: sphinx/domains/python/__init__.py:236
2129
2208
  #, python-format
2130
2209
  msgid "%s() (%s class method)"
2131
2210
  msgstr ""
2132
2211
 
2133
- #: sphinx/domains/python.py:1119
2212
+ #: sphinx/domains/python/__init__.py:238
2134
2213
  #, python-format
2135
2214
  msgid "%s() (%s static method)"
2136
2215
  msgstr ""
2137
2216
 
2138
- #: sphinx/domains/python.py:1257
2217
+ #: sphinx/domains/python/__init__.py:376
2139
2218
  #, python-format
2140
2219
  msgid "%s (%s property)"
2141
2220
  msgstr ""
2142
2221
 
2143
- #: sphinx/domains/python.py:1383
2222
+ #: sphinx/domains/python/__init__.py:502
2144
2223
  msgid "Python Module Index"
2145
2224
  msgstr ""
2146
2225
 
2147
- #: sphinx/domains/python.py:1384
2226
+ #: sphinx/domains/python/__init__.py:503
2148
2227
  msgid "modules"
2149
2228
  msgstr ""
2150
2229
 
2151
- #: sphinx/domains/python.py:1433
2230
+ #: sphinx/domains/python/__init__.py:552
2152
2231
  msgid "Deprecated"
2153
2232
  msgstr ""
2154
2233
 
2155
- #: sphinx/domains/python.py:1457
2234
+ #: sphinx/domains/python/__init__.py:577
2156
2235
  msgid "exception"
2157
2236
  msgstr ""
2158
2237
 
2159
- #: sphinx/domains/python.py:1459
2238
+ #: sphinx/domains/python/__init__.py:579
2160
2239
  msgid "class method"
2161
2240
  msgstr ""
2162
2241
 
2163
- #: sphinx/domains/python.py:1460
2242
+ #: sphinx/domains/python/__init__.py:580
2164
2243
  msgid "static method"
2165
2244
  msgstr ""
2166
2245
 
2167
- #: sphinx/domains/python.py:1462
2246
+ #: sphinx/domains/python/__init__.py:582
2168
2247
  msgid "property"
2169
2248
  msgstr ""
2170
2249
 
2171
- #: sphinx/domains/python.py:1520
2250
+ #: sphinx/domains/python/__init__.py:640
2172
2251
  #, python-format
2173
2252
  msgid ""
2174
2253
  "duplicate object description of %s, other instance in %s, use :no-index: "
2175
2254
  "for one of them"
2176
2255
  msgstr ""
2177
2256
 
2178
- #: sphinx/domains/python.py:1640
2257
+ #: sphinx/domains/python/__init__.py:760
2179
2258
  #, python-format
2180
2259
  msgid "more than one target found for cross-reference %r: %s"
2181
2260
  msgstr ""
2182
2261
 
2183
- #: sphinx/domains/python.py:1701
2262
+ #: sphinx/domains/python/__init__.py:821
2184
2263
  msgid " (deprecated)"
2185
2264
  msgstr ""
2186
2265
 
2187
- #: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181
2188
- #, python-format
2189
- msgid "%s (directive)"
2190
- msgstr ""
2191
-
2192
- #: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186
2193
- #, python-format
2194
- msgid ":%s: (directive option)"
2195
- msgstr ""
2196
-
2197
- #: sphinx/domains/rst.py:209
2198
- #, python-format
2199
- msgid "%s (role)"
2200
- msgstr ""
2201
-
2202
- #: sphinx/domains/rst.py:218
2203
- msgid "directive"
2204
- msgstr ""
2205
-
2206
- #: sphinx/domains/rst.py:219
2207
- msgid "directive-option"
2208
- msgstr ""
2209
-
2210
- #: sphinx/domains/rst.py:220
2211
- msgid "role"
2266
+ #: sphinx/domains/python/_object.py:168
2267
+ msgid "Variables"
2212
2268
  msgstr ""
2213
2269
 
2214
- #: sphinx/domains/rst.py:242
2215
- #, python-format
2216
- msgid "duplicate description of %s %s, other instance in %s"
2270
+ #: sphinx/domains/python/_object.py:172
2271
+ msgid "Raises"
2217
2272
  msgstr ""
2218
2273
 
2219
- #: sphinx/domains/std.py:79 sphinx/domains/std.py:96
2274
+ #: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97
2220
2275
  #, python-format
2221
2276
  msgid "environment variable; %s"
2222
2277
  msgstr ""
2223
2278
 
2224
- #: sphinx/domains/std.py:155
2279
+ #: sphinx/domains/std/__init__.py:157
2225
2280
  #, python-format
2226
2281
  msgid ""
2227
2282
  "Malformed option description %r, should look like \"opt\", \"-opt args\","
2228
2283
  " \"--opt args\", \"/opt args\" or \"+opt args\""
2229
2284
  msgstr ""
2230
2285
 
2231
- #: sphinx/domains/std.py:226
2286
+ #: sphinx/domains/std/__init__.py:228
2232
2287
  #, python-format
2233
2288
  msgid "%s command line option"
2234
2289
  msgstr ""
2235
2290
 
2236
- #: sphinx/domains/std.py:228
2291
+ #: sphinx/domains/std/__init__.py:230
2237
2292
  msgid "command line option"
2238
2293
  msgstr ""
2239
2294
 
2240
- #: sphinx/domains/std.py:346
2295
+ #: sphinx/domains/std/__init__.py:348
2241
2296
  msgid "glossary term must be preceded by empty line"
2242
2297
  msgstr ""
2243
2298
 
2244
- #: sphinx/domains/std.py:354
2299
+ #: sphinx/domains/std/__init__.py:356
2245
2300
  msgid "glossary terms must not be separated by empty lines"
2246
2301
  msgstr ""
2247
2302
 
2248
- #: sphinx/domains/std.py:360 sphinx/domains/std.py:373
2303
+ #: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375
2249
2304
  msgid "glossary seems to be misformatted, check indentation"
2250
2305
  msgstr ""
2251
2306
 
2252
- #: sphinx/domains/std.py:516
2307
+ #: sphinx/domains/std/__init__.py:518
2253
2308
  msgid "glossary term"
2254
2309
  msgstr ""
2255
2310
 
2256
- #: sphinx/domains/std.py:517
2311
+ #: sphinx/domains/std/__init__.py:519
2257
2312
  msgid "grammar token"
2258
2313
  msgstr ""
2259
2314
 
2260
- #: sphinx/domains/std.py:518
2315
+ #: sphinx/domains/std/__init__.py:520
2261
2316
  msgid "reference label"
2262
2317
  msgstr ""
2263
2318
 
2264
- #: sphinx/domains/std.py:520
2319
+ #: sphinx/domains/std/__init__.py:522
2265
2320
  msgid "environment variable"
2266
2321
  msgstr ""
2267
2322
 
2268
- #: sphinx/domains/std.py:521
2323
+ #: sphinx/domains/std/__init__.py:523
2269
2324
  msgid "program option"
2270
2325
  msgstr ""
2271
2326
 
2272
- #: sphinx/domains/std.py:522
2327
+ #: sphinx/domains/std/__init__.py:524
2273
2328
  msgid "document"
2274
2329
  msgstr ""
2275
2330
 
2276
- #: sphinx/domains/std.py:558 sphinx/domains/std.py:570
2331
+ #: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572
2277
2332
  msgid "Module Index"
2278
2333
  msgstr ""
2279
2334
 
2280
- #: sphinx/domains/std.py:559 sphinx/domains/std.py:571
2335
+ #: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573
2281
2336
  #: sphinx/themes/basic/defindex.html:25
2282
2337
  msgid "Search Page"
2283
2338
  msgstr ""
2284
2339
 
2285
- #: sphinx/domains/std.py:614 sphinx/domains/std.py:720
2286
- #: sphinx/ext/autosectionlabel.py:52
2340
+ #: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722
2341
+ #: sphinx/ext/autosectionlabel.py:53
2287
2342
  #, python-format
2288
2343
  msgid "duplicate label %s, other instance in %s"
2289
2344
  msgstr ""
2290
2345
 
2291
- #: sphinx/domains/std.py:633
2346
+ #: sphinx/domains/std/__init__.py:635
2292
2347
  #, python-format
2293
2348
  msgid "duplicate %s description of %s, other instance in %s"
2294
2349
  msgstr ""
2295
2350
 
2296
- #: sphinx/domains/std.py:839
2351
+ #: sphinx/domains/std/__init__.py:841
2297
2352
  msgid "numfig is disabled. :numref: is ignored."
2298
2353
  msgstr ""
2299
2354
 
2300
- #: sphinx/domains/std.py:847
2355
+ #: sphinx/domains/std/__init__.py:849
2301
2356
  #, python-format
2302
2357
  msgid "Failed to create a cross reference. Any number is not assigned: %s"
2303
2358
  msgstr ""
2304
2359
 
2305
- #: sphinx/domains/std.py:859
2360
+ #: sphinx/domains/std/__init__.py:861
2306
2361
  #, python-format
2307
2362
  msgid "the link has no caption: %s"
2308
2363
  msgstr ""
2309
2364
 
2310
- #: sphinx/domains/std.py:873
2365
+ #: sphinx/domains/std/__init__.py:875
2311
2366
  #, python-format
2312
2367
  msgid "invalid numfig_format: %s (%r)"
2313
2368
  msgstr ""
2314
2369
 
2315
- #: sphinx/domains/std.py:876
2370
+ #: sphinx/domains/std/__init__.py:878
2316
2371
  #, python-format
2317
2372
  msgid "invalid numfig_format: %s"
2318
2373
  msgstr ""
2319
2374
 
2320
- #: sphinx/domains/std.py:1106
2375
+ #: sphinx/domains/std/__init__.py:1109
2321
2376
  #, python-format
2322
2377
  msgid "undefined label: %r"
2323
2378
  msgstr ""
2324
2379
 
2325
- #: sphinx/domains/std.py:1108
2380
+ #: sphinx/domains/std/__init__.py:1111
2326
2381
  #, python-format
2327
2382
  msgid "Failed to create a cross reference. A title or caption not found: %r"
2328
2383
  msgstr ""
@@ -2339,35 +2394,35 @@ msgstr ""
2339
2394
  msgid "extensions changed"
2340
2395
  msgstr ""
2341
2396
 
2342
- #: sphinx/environment/__init__.py:276
2397
+ #: sphinx/environment/__init__.py:279
2343
2398
  msgid "build environment version not current"
2344
2399
  msgstr ""
2345
2400
 
2346
- #: sphinx/environment/__init__.py:278
2401
+ #: sphinx/environment/__init__.py:281
2347
2402
  msgid "source directory has changed"
2348
2403
  msgstr ""
2349
2404
 
2350
- #: sphinx/environment/__init__.py:357
2405
+ #: sphinx/environment/__init__.py:360
2351
2406
  msgid ""
2352
2407
  "This environment is incompatible with the selected builder, please choose"
2353
2408
  " another doctree directory."
2354
2409
  msgstr ""
2355
2410
 
2356
- #: sphinx/environment/__init__.py:456
2411
+ #: sphinx/environment/__init__.py:459
2357
2412
  #, python-format
2358
2413
  msgid "Failed to scan documents in %s: %r"
2359
2414
  msgstr ""
2360
2415
 
2361
- #: sphinx/environment/__init__.py:593
2416
+ #: sphinx/environment/__init__.py:596
2362
2417
  #, python-format
2363
2418
  msgid "Domain %r is not registered"
2364
2419
  msgstr ""
2365
2420
 
2366
- #: sphinx/environment/__init__.py:727
2421
+ #: sphinx/environment/__init__.py:730
2367
2422
  msgid "document isn't included in any toctree"
2368
2423
  msgstr ""
2369
2424
 
2370
- #: sphinx/environment/__init__.py:764
2425
+ #: sphinx/environment/__init__.py:766
2371
2426
  msgid "self referenced toctree found. Ignored."
2372
2427
  msgstr ""
2373
2428
 
@@ -2391,39 +2446,39 @@ msgstr ""
2391
2446
  msgid "Symbols"
2392
2447
  msgstr ""
2393
2448
 
2394
- #: sphinx/environment/adapters/toctree.py:296
2449
+ #: sphinx/environment/adapters/toctree.py:297
2395
2450
  #, python-format
2396
2451
  msgid "circular toctree references detected, ignoring: %s <- %s"
2397
2452
  msgstr ""
2398
2453
 
2399
- #: sphinx/environment/adapters/toctree.py:316
2454
+ #: sphinx/environment/adapters/toctree.py:317
2400
2455
  #, python-format
2401
2456
  msgid ""
2402
2457
  "toctree contains reference to document %r that doesn't have a title: no "
2403
2458
  "link will be generated"
2404
2459
  msgstr ""
2405
2460
 
2406
- #: sphinx/environment/adapters/toctree.py:325
2461
+ #: sphinx/environment/adapters/toctree.py:326
2407
2462
  #, python-format
2408
2463
  msgid "toctree contains reference to non-included document %r"
2409
2464
  msgstr ""
2410
2465
 
2411
- #: sphinx/environment/collectors/asset.py:88
2466
+ #: sphinx/environment/collectors/asset.py:89
2412
2467
  #, python-format
2413
2468
  msgid "image file not readable: %s"
2414
2469
  msgstr ""
2415
2470
 
2416
- #: sphinx/environment/collectors/asset.py:107
2471
+ #: sphinx/environment/collectors/asset.py:108
2417
2472
  #, python-format
2418
2473
  msgid "image file %s not readable: %s"
2419
2474
  msgstr ""
2420
2475
 
2421
- #: sphinx/environment/collectors/asset.py:133
2476
+ #: sphinx/environment/collectors/asset.py:134
2422
2477
  #, python-format
2423
2478
  msgid "download file not readable: %s"
2424
2479
  msgstr ""
2425
2480
 
2426
- #: sphinx/environment/collectors/toctree.py:224
2481
+ #: sphinx/environment/collectors/toctree.py:225
2427
2482
  #, python-format
2428
2483
  msgid "%s is already assigned section numbers (nested numbered toctree?)"
2429
2484
  msgstr ""
@@ -2433,7 +2488,7 @@ msgstr ""
2433
2488
  msgid "Would create file %s."
2434
2489
  msgstr ""
2435
2490
 
2436
- #: sphinx/ext/apidoc.py:320
2491
+ #: sphinx/ext/apidoc.py:318
2437
2492
  msgid ""
2438
2493
  "\n"
2439
2494
  "Look recursively in <MODULE_PATH> for Python modules and packages and "
@@ -2448,148 +2503,148 @@ msgid ""
2448
2503
  "Note: By default this script will not overwrite already created files."
2449
2504
  msgstr ""
2450
2505
 
2451
- #: sphinx/ext/apidoc.py:333
2506
+ #: sphinx/ext/apidoc.py:331
2452
2507
  msgid "path to module to document"
2453
2508
  msgstr ""
2454
2509
 
2455
- #: sphinx/ext/apidoc.py:335
2510
+ #: sphinx/ext/apidoc.py:333
2456
2511
  msgid "fnmatch-style file and/or directory patterns to exclude from generation"
2457
2512
  msgstr ""
2458
2513
 
2459
- #: sphinx/ext/apidoc.py:340
2514
+ #: sphinx/ext/apidoc.py:338
2460
2515
  msgid "directory to place all output"
2461
2516
  msgstr ""
2462
2517
 
2463
- #: sphinx/ext/apidoc.py:345
2518
+ #: sphinx/ext/apidoc.py:343
2464
2519
  msgid "maximum depth of submodules to show in the TOC (default: 4)"
2465
2520
  msgstr ""
2466
2521
 
2467
- #: sphinx/ext/apidoc.py:348
2522
+ #: sphinx/ext/apidoc.py:346
2468
2523
  msgid "overwrite existing files"
2469
2524
  msgstr ""
2470
2525
 
2471
- #: sphinx/ext/apidoc.py:351
2526
+ #: sphinx/ext/apidoc.py:349
2472
2527
  msgid ""
2473
2528
  "follow symbolic links. Powerful when combined with "
2474
2529
  "collective.recipe.omelette."
2475
2530
  msgstr ""
2476
2531
 
2477
- #: sphinx/ext/apidoc.py:354
2532
+ #: sphinx/ext/apidoc.py:352
2478
2533
  msgid "run the script without creating files"
2479
2534
  msgstr ""
2480
2535
 
2481
- #: sphinx/ext/apidoc.py:357
2536
+ #: sphinx/ext/apidoc.py:355
2482
2537
  msgid "put documentation for each module on its own page"
2483
2538
  msgstr ""
2484
2539
 
2485
- #: sphinx/ext/apidoc.py:360
2540
+ #: sphinx/ext/apidoc.py:358
2486
2541
  msgid "include \"_private\" modules"
2487
2542
  msgstr ""
2488
2543
 
2489
- #: sphinx/ext/apidoc.py:362
2544
+ #: sphinx/ext/apidoc.py:360
2490
2545
  msgid "filename of table of contents (default: modules)"
2491
2546
  msgstr ""
2492
2547
 
2493
- #: sphinx/ext/apidoc.py:364
2548
+ #: sphinx/ext/apidoc.py:362
2494
2549
  msgid "don't create a table of contents file"
2495
2550
  msgstr ""
2496
2551
 
2497
- #: sphinx/ext/apidoc.py:367
2552
+ #: sphinx/ext/apidoc.py:365
2498
2553
  msgid ""
2499
2554
  "don't create headings for the module/package packages (e.g. when the "
2500
2555
  "docstrings already contain them)"
2501
2556
  msgstr ""
2502
2557
 
2503
- #: sphinx/ext/apidoc.py:372
2558
+ #: sphinx/ext/apidoc.py:370
2504
2559
  msgid "put module documentation before submodule documentation"
2505
2560
  msgstr ""
2506
2561
 
2507
- #: sphinx/ext/apidoc.py:376
2562
+ #: sphinx/ext/apidoc.py:374
2508
2563
  msgid ""
2509
2564
  "interpret module paths according to PEP-0420 implicit namespaces "
2510
2565
  "specification"
2511
2566
  msgstr ""
2512
2567
 
2513
- #: sphinx/ext/apidoc.py:380
2568
+ #: sphinx/ext/apidoc.py:378
2514
2569
  msgid "file suffix (default: rst)"
2515
2570
  msgstr ""
2516
2571
 
2517
- #: sphinx/ext/apidoc.py:382
2572
+ #: sphinx/ext/apidoc.py:380
2518
2573
  msgid "generate a full project with sphinx-quickstart"
2519
2574
  msgstr ""
2520
2575
 
2521
- #: sphinx/ext/apidoc.py:385
2576
+ #: sphinx/ext/apidoc.py:383
2522
2577
  msgid "append module_path to sys.path, used when --full is given"
2523
2578
  msgstr ""
2524
2579
 
2525
- #: sphinx/ext/apidoc.py:387
2580
+ #: sphinx/ext/apidoc.py:385
2526
2581
  msgid "project name (default: root module name)"
2527
2582
  msgstr ""
2528
2583
 
2529
- #: sphinx/ext/apidoc.py:389
2584
+ #: sphinx/ext/apidoc.py:387
2530
2585
  msgid "project author(s), used when --full is given"
2531
2586
  msgstr ""
2532
2587
 
2533
- #: sphinx/ext/apidoc.py:391
2588
+ #: sphinx/ext/apidoc.py:389
2534
2589
  msgid "project version, used when --full is given"
2535
2590
  msgstr ""
2536
2591
 
2537
- #: sphinx/ext/apidoc.py:393
2592
+ #: sphinx/ext/apidoc.py:391
2538
2593
  msgid "project release, used when --full is given, defaults to --doc-version"
2539
2594
  msgstr ""
2540
2595
 
2541
- #: sphinx/ext/apidoc.py:396
2596
+ #: sphinx/ext/apidoc.py:394
2542
2597
  msgid "extension options"
2543
2598
  msgstr ""
2544
2599
 
2545
- #: sphinx/ext/apidoc.py:429
2600
+ #: sphinx/ext/apidoc.py:427
2546
2601
  #, python-format
2547
2602
  msgid "%s is not a directory."
2548
2603
  msgstr ""
2549
2604
 
2550
- #: sphinx/ext/autosectionlabel.py:48
2605
+ #: sphinx/ext/autosectionlabel.py:49
2551
2606
  #, python-format
2552
2607
  msgid "section \"%s\" gets labeled as \"%s\""
2553
2608
  msgstr ""
2554
2609
 
2555
- #: sphinx/ext/coverage.py:45
2610
+ #: sphinx/ext/coverage.py:46
2556
2611
  #, python-format
2557
2612
  msgid "invalid regex %r in %s"
2558
2613
  msgstr ""
2559
2614
 
2560
- #: sphinx/ext/coverage.py:73
2615
+ #: sphinx/ext/coverage.py:75
2561
2616
  #, python-format
2562
2617
  msgid ""
2563
2618
  "Testing of coverage in the sources finished, look at the results in "
2564
2619
  "%(outdir)spython.txt."
2565
2620
  msgstr ""
2566
2621
 
2567
- #: sphinx/ext/coverage.py:87
2622
+ #: sphinx/ext/coverage.py:89
2568
2623
  #, python-format
2569
2624
  msgid "invalid regex %r in coverage_c_regexes"
2570
2625
  msgstr ""
2571
2626
 
2572
- #: sphinx/ext/coverage.py:155
2627
+ #: sphinx/ext/coverage.py:157
2573
2628
  #, python-format
2574
2629
  msgid "undocumented c api: %s [%s] in file %s"
2575
2630
  msgstr ""
2576
2631
 
2577
- #: sphinx/ext/coverage.py:187
2632
+ #: sphinx/ext/coverage.py:189
2578
2633
  #, python-format
2579
2634
  msgid "module %s could not be imported: %s"
2580
2635
  msgstr ""
2581
2636
 
2582
- #: sphinx/ext/coverage.py:334
2637
+ #: sphinx/ext/coverage.py:340
2583
2638
  #, python-format
2584
2639
  msgid "undocumented python function: %s :: %s"
2585
2640
  msgstr ""
2586
2641
 
2587
- #: sphinx/ext/coverage.py:350
2642
+ #: sphinx/ext/coverage.py:356
2588
2643
  #, python-format
2589
2644
  msgid "undocumented python class: %s :: %s"
2590
2645
  msgstr ""
2591
2646
 
2592
- #: sphinx/ext/coverage.py:363
2647
+ #: sphinx/ext/coverage.py:369
2593
2648
  #, python-format
2594
2649
  msgid "undocumented python method: %s :: %s :: %s"
2595
2650
  msgstr ""
@@ -2613,24 +2668,24 @@ msgstr ""
2613
2668
  msgid "invalid TestCode type"
2614
2669
  msgstr ""
2615
2670
 
2616
- #: sphinx/ext/doctest.py:280
2671
+ #: sphinx/ext/doctest.py:281
2617
2672
  #, python-format
2618
2673
  msgid ""
2619
2674
  "Testing of doctests in the sources finished, look at the results in "
2620
2675
  "%(outdir)s/output.txt."
2621
2676
  msgstr ""
2622
2677
 
2623
- #: sphinx/ext/doctest.py:431
2678
+ #: sphinx/ext/doctest.py:438
2624
2679
  #, python-format
2625
2680
  msgid "no code/output in %s block at %s:%s"
2626
2681
  msgstr ""
2627
2682
 
2628
- #: sphinx/ext/doctest.py:521
2683
+ #: sphinx/ext/doctest.py:526
2629
2684
  #, python-format
2630
2685
  msgid "ignoring invalid doctest code: %r"
2631
2686
  msgstr ""
2632
2687
 
2633
- #: sphinx/ext/duration.py:76
2688
+ #: sphinx/ext/duration.py:77
2634
2689
  msgid "====================== slowest reading durations ======================="
2635
2690
  msgstr ""
2636
2691
 
@@ -2639,32 +2694,32 @@ msgstr ""
2639
2694
  msgid "hardcoded link %r could be replaced by an extlink (try using %r instead)"
2640
2695
  msgstr ""
2641
2696
 
2642
- #: sphinx/ext/graphviz.py:133
2697
+ #: sphinx/ext/graphviz.py:135
2643
2698
  msgid "Graphviz directive cannot have both content and a filename argument"
2644
2699
  msgstr ""
2645
2700
 
2646
- #: sphinx/ext/graphviz.py:143
2701
+ #: sphinx/ext/graphviz.py:145
2647
2702
  #, python-format
2648
2703
  msgid "External Graphviz file %r not found or reading it failed"
2649
2704
  msgstr ""
2650
2705
 
2651
- #: sphinx/ext/graphviz.py:150
2706
+ #: sphinx/ext/graphviz.py:152
2652
2707
  msgid "Ignoring \"graphviz\" directive without content."
2653
2708
  msgstr ""
2654
2709
 
2655
- #: sphinx/ext/graphviz.py:259
2710
+ #: sphinx/ext/graphviz.py:268
2656
2711
  #, python-format
2657
2712
  msgid "graphviz_dot executable path must be set! %r"
2658
2713
  msgstr ""
2659
2714
 
2660
- #: sphinx/ext/graphviz.py:294
2715
+ #: sphinx/ext/graphviz.py:303
2661
2716
  #, python-format
2662
2717
  msgid ""
2663
2718
  "dot command %r cannot be run (needed for graphviz output), check the "
2664
2719
  "graphviz_dot setting"
2665
2720
  msgstr ""
2666
2721
 
2667
- #: sphinx/ext/graphviz.py:301
2722
+ #: sphinx/ext/graphviz.py:310
2668
2723
  #, python-format
2669
2724
  msgid ""
2670
2725
  "dot exited with error:\n"
@@ -2674,7 +2729,7 @@ msgid ""
2674
2729
  "%r"
2675
2730
  msgstr ""
2676
2731
 
2677
- #: sphinx/ext/graphviz.py:304
2732
+ #: sphinx/ext/graphviz.py:313
2678
2733
  #, python-format
2679
2734
  msgid ""
2680
2735
  "dot did not produce an output file:\n"
@@ -2684,27 +2739,27 @@ msgid ""
2684
2739
  "%r"
2685
2740
  msgstr ""
2686
2741
 
2687
- #: sphinx/ext/graphviz.py:320
2742
+ #: sphinx/ext/graphviz.py:329
2688
2743
  #, python-format
2689
2744
  msgid "graphviz_output_format must be one of 'png', 'svg', but is %r"
2690
2745
  msgstr ""
2691
2746
 
2692
- #: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377
2693
- #: sphinx/ext/graphviz.py:414
2747
+ #: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386
2748
+ #: sphinx/ext/graphviz.py:423
2694
2749
  #, python-format
2695
2750
  msgid "dot code %r: %s"
2696
2751
  msgstr ""
2697
2752
 
2698
- #: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435
2753
+ #: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444
2699
2754
  #, python-format
2700
2755
  msgid "[graph: %s]"
2701
2756
  msgstr ""
2702
2757
 
2703
- #: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437
2758
+ #: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446
2704
2759
  msgid "[graph]"
2705
2760
  msgstr ""
2706
2761
 
2707
- #: sphinx/ext/imgconverter.py:38
2762
+ #: sphinx/ext/imgconverter.py:39
2708
2763
  #, python-format
2709
2764
  msgid ""
2710
2765
  "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' "
@@ -2714,7 +2769,7 @@ msgid ""
2714
2769
  "Traceback: %s"
2715
2770
  msgstr ""
2716
2771
 
2717
- #: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71
2772
+ #: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72
2718
2773
  #, python-format
2719
2774
  msgid ""
2720
2775
  "convert exited with error:\n"
@@ -2724,166 +2779,171 @@ msgid ""
2724
2779
  "%r"
2725
2780
  msgstr ""
2726
2781
 
2727
- #: sphinx/ext/imgconverter.py:66
2782
+ #: sphinx/ext/imgconverter.py:67
2728
2783
  #, python-format
2729
2784
  msgid "convert command %r cannot be run, check the image_converter setting"
2730
2785
  msgstr ""
2731
2786
 
2732
- #: sphinx/ext/imgmath.py:157
2787
+ #: sphinx/ext/imgmath.py:158
2733
2788
  #, python-format
2734
2789
  msgid ""
2735
2790
  "LaTeX command %r cannot be run (needed for math display), check the "
2736
2791
  "imgmath_latex setting"
2737
2792
  msgstr ""
2738
2793
 
2739
- #: sphinx/ext/imgmath.py:172
2794
+ #: sphinx/ext/imgmath.py:173
2740
2795
  #, python-format
2741
2796
  msgid ""
2742
2797
  "%s command %r cannot be run (needed for math display), check the "
2743
2798
  "imgmath_%s setting"
2744
2799
  msgstr ""
2745
2800
 
2746
- #: sphinx/ext/imgmath.py:326
2801
+ #: sphinx/ext/imgmath.py:327
2747
2802
  #, python-format
2748
2803
  msgid "display latex %r: %s"
2749
2804
  msgstr ""
2750
2805
 
2751
- #: sphinx/ext/imgmath.py:360
2806
+ #: sphinx/ext/imgmath.py:361
2752
2807
  #, python-format
2753
2808
  msgid "inline latex %r: %s"
2754
2809
  msgstr ""
2755
2810
 
2756
- #: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52
2811
+ #: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53
2757
2812
  msgid "Link to this equation"
2758
2813
  msgstr ""
2759
2814
 
2760
- #: sphinx/ext/intersphinx.py:194
2815
+ #: sphinx/ext/intersphinx.py:195
2761
2816
  #, python-format
2762
2817
  msgid "intersphinx inventory has moved: %s -> %s"
2763
2818
  msgstr ""
2764
2819
 
2765
- #: sphinx/ext/intersphinx.py:229
2820
+ #: sphinx/ext/intersphinx.py:230
2766
2821
  #, python-format
2767
2822
  msgid "loading intersphinx inventory from %s..."
2768
2823
  msgstr ""
2769
2824
 
2770
- #: sphinx/ext/intersphinx.py:243
2825
+ #: sphinx/ext/intersphinx.py:244
2771
2826
  msgid ""
2772
2827
  "encountered some issues with some of the inventories, but they had "
2773
2828
  "working alternatives:"
2774
2829
  msgstr ""
2775
2830
 
2776
- #: sphinx/ext/intersphinx.py:249
2831
+ #: sphinx/ext/intersphinx.py:250
2777
2832
  msgid "failed to reach any of the inventories with the following issues:"
2778
2833
  msgstr ""
2779
2834
 
2780
- #: sphinx/ext/intersphinx.py:302
2835
+ #: sphinx/ext/intersphinx.py:303
2781
2836
  #, python-format
2782
2837
  msgid "(in %s v%s)"
2783
2838
  msgstr ""
2784
2839
 
2785
- #: sphinx/ext/intersphinx.py:304
2840
+ #: sphinx/ext/intersphinx.py:305
2786
2841
  #, python-format
2787
2842
  msgid "(in %s)"
2788
2843
  msgstr ""
2789
2844
 
2790
- #: sphinx/ext/intersphinx.py:536
2845
+ #: sphinx/ext/intersphinx.py:538
2791
2846
  #, python-format
2792
- msgid "inventory for external cross-reference not found: %s"
2847
+ msgid "inventory for external cross-reference not found: %r"
2793
2848
  msgstr ""
2794
2849
 
2795
- #: sphinx/ext/intersphinx.py:542
2850
+ #: sphinx/ext/intersphinx.py:546
2796
2851
  #, python-format
2797
- msgid "role for external cross-reference not found: %s"
2852
+ msgid "invalid external cross-reference suffix: %r"
2798
2853
  msgstr ""
2799
2854
 
2800
- #: sphinx/ext/intersphinx.py:633
2855
+ #: sphinx/ext/intersphinx.py:557
2856
+ #, python-format
2857
+ msgid "domain for external cross-reference not found: %r"
2858
+ msgstr ""
2859
+
2860
+ #: sphinx/ext/intersphinx.py:750
2801
2861
  #, python-format
2802
2862
  msgid "external %s:%s reference target not found: %s"
2803
2863
  msgstr ""
2804
2864
 
2805
- #: sphinx/ext/intersphinx.py:658
2865
+ #: sphinx/ext/intersphinx.py:775
2806
2866
  #, python-format
2807
2867
  msgid "intersphinx identifier %r is not string. Ignored"
2808
2868
  msgstr ""
2809
2869
 
2810
- #: sphinx/ext/intersphinx.py:680
2870
+ #: sphinx/ext/intersphinx.py:797
2811
2871
  #, python-format
2812
2872
  msgid "Failed to read intersphinx_mapping[%s], ignored: %r"
2813
2873
  msgstr ""
2814
2874
 
2815
- #: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198
2875
+ #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199
2816
2876
  msgid "[source]"
2817
2877
  msgstr ""
2818
2878
 
2819
- #: sphinx/ext/todo.py:67
2879
+ #: sphinx/ext/todo.py:69
2820
2880
  msgid "Todo"
2821
2881
  msgstr ""
2822
2882
 
2823
- #: sphinx/ext/todo.py:100
2883
+ #: sphinx/ext/todo.py:102
2824
2884
  #, python-format
2825
2885
  msgid "TODO entry found: %s"
2826
2886
  msgstr ""
2827
2887
 
2828
- #: sphinx/ext/todo.py:158
2888
+ #: sphinx/ext/todo.py:161
2829
2889
  msgid "<<original entry>>"
2830
2890
  msgstr ""
2831
2891
 
2832
- #: sphinx/ext/todo.py:160
2892
+ #: sphinx/ext/todo.py:163
2833
2893
  #, python-format
2834
2894
  msgid "(The <<original entry>> is located in %s, line %d.)"
2835
2895
  msgstr ""
2836
2896
 
2837
- #: sphinx/ext/todo.py:170
2897
+ #: sphinx/ext/todo.py:173
2838
2898
  msgid "original entry"
2839
2899
  msgstr ""
2840
2900
 
2841
- #: sphinx/ext/viewcode.py:255
2901
+ #: sphinx/ext/viewcode.py:256
2842
2902
  msgid "highlighting module code... "
2843
2903
  msgstr ""
2844
2904
 
2845
- #: sphinx/ext/viewcode.py:283
2905
+ #: sphinx/ext/viewcode.py:284
2846
2906
  msgid "[docs]"
2847
2907
  msgstr ""
2848
2908
 
2849
- #: sphinx/ext/viewcode.py:303
2909
+ #: sphinx/ext/viewcode.py:304
2850
2910
  msgid "Module code"
2851
2911
  msgstr ""
2852
2912
 
2853
- #: sphinx/ext/viewcode.py:309
2913
+ #: sphinx/ext/viewcode.py:310
2854
2914
  #, python-format
2855
2915
  msgid "<h1>Source code for %s</h1>"
2856
2916
  msgstr ""
2857
2917
 
2858
- #: sphinx/ext/viewcode.py:335
2918
+ #: sphinx/ext/viewcode.py:336
2859
2919
  msgid "Overview: module code"
2860
2920
  msgstr ""
2861
2921
 
2862
- #: sphinx/ext/viewcode.py:336
2922
+ #: sphinx/ext/viewcode.py:337
2863
2923
  msgid "<h1>All modules for which code is available</h1>"
2864
2924
  msgstr ""
2865
2925
 
2866
- #: sphinx/ext/autodoc/__init__.py:127
2926
+ #: sphinx/ext/autodoc/__init__.py:135
2867
2927
  #, python-format
2868
2928
  msgid "invalid value for member-order option: %s"
2869
2929
  msgstr ""
2870
2930
 
2871
- #: sphinx/ext/autodoc/__init__.py:135
2931
+ #: sphinx/ext/autodoc/__init__.py:143
2872
2932
  #, python-format
2873
2933
  msgid "invalid value for class-doc-from option: %s"
2874
2934
  msgstr ""
2875
2935
 
2876
- #: sphinx/ext/autodoc/__init__.py:391
2936
+ #: sphinx/ext/autodoc/__init__.py:399
2877
2937
  #, python-format
2878
2938
  msgid "invalid signature for auto%s (%r)"
2879
2939
  msgstr ""
2880
2940
 
2881
- #: sphinx/ext/autodoc/__init__.py:508
2941
+ #: sphinx/ext/autodoc/__init__.py:515
2882
2942
  #, python-format
2883
2943
  msgid "error while formatting arguments for %s: %s"
2884
2944
  msgstr ""
2885
2945
 
2886
- #: sphinx/ext/autodoc/__init__.py:777
2946
+ #: sphinx/ext/autodoc/__init__.py:798
2887
2947
  #, python-format
2888
2948
  msgid ""
2889
2949
  "autodoc: failed to determine %s.%s (%r) to be documented, the following "
@@ -2891,7 +2951,7 @@ msgid ""
2891
2951
  "%s"
2892
2952
  msgstr ""
2893
2953
 
2894
- #: sphinx/ext/autodoc/__init__.py:872
2954
+ #: sphinx/ext/autodoc/__init__.py:893
2895
2955
  #, python-format
2896
2956
  msgid ""
2897
2957
  "don't know which module to import for autodocumenting %r (try placing a "
@@ -2899,111 +2959,111 @@ msgid ""
2899
2959
  "explicit module name)"
2900
2960
  msgstr ""
2901
2961
 
2902
- #: sphinx/ext/autodoc/__init__.py:916
2962
+ #: sphinx/ext/autodoc/__init__.py:937
2903
2963
  #, python-format
2904
2964
  msgid "A mocked object is detected: %r"
2905
2965
  msgstr ""
2906
2966
 
2907
- #: sphinx/ext/autodoc/__init__.py:935
2967
+ #: sphinx/ext/autodoc/__init__.py:956
2908
2968
  #, python-format
2909
2969
  msgid "error while formatting signature for %s: %s"
2910
2970
  msgstr ""
2911
2971
 
2912
- #: sphinx/ext/autodoc/__init__.py:996
2972
+ #: sphinx/ext/autodoc/__init__.py:1019
2913
2973
  msgid "\"::\" in automodule name doesn't make sense"
2914
2974
  msgstr ""
2915
2975
 
2916
- #: sphinx/ext/autodoc/__init__.py:1003
2976
+ #: sphinx/ext/autodoc/__init__.py:1026
2917
2977
  #, python-format
2918
2978
  msgid "signature arguments or return annotation given for automodule %s"
2919
2979
  msgstr ""
2920
2980
 
2921
- #: sphinx/ext/autodoc/__init__.py:1016
2981
+ #: sphinx/ext/autodoc/__init__.py:1039
2922
2982
  #, python-format
2923
2983
  msgid ""
2924
2984
  "__all__ should be a list of strings, not %r (in module %s) -- ignoring "
2925
2985
  "__all__"
2926
2986
  msgstr ""
2927
2987
 
2928
- #: sphinx/ext/autodoc/__init__.py:1082
2988
+ #: sphinx/ext/autodoc/__init__.py:1105
2929
2989
  #, python-format
2930
2990
  msgid "missing attribute mentioned in :members: option: module %s, attribute %s"
2931
2991
  msgstr ""
2932
2992
 
2933
- #: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375
2934
- #: sphinx/ext/autodoc/__init__.py:2768
2993
+ #: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404
2994
+ #: sphinx/ext/autodoc/__init__.py:2824
2935
2995
  #, python-format
2936
2996
  msgid "Failed to get a function signature for %s: %s"
2937
2997
  msgstr ""
2938
2998
 
2939
- #: sphinx/ext/autodoc/__init__.py:1586
2999
+ #: sphinx/ext/autodoc/__init__.py:1618
2940
3000
  #, python-format
2941
3001
  msgid "Failed to get a constructor signature for %s: %s"
2942
3002
  msgstr ""
2943
3003
 
2944
- #: sphinx/ext/autodoc/__init__.py:1713
3004
+ #: sphinx/ext/autodoc/__init__.py:1745
2945
3005
  #, python-format
2946
3006
  msgid "Bases: %s"
2947
3007
  msgstr ""
2948
3008
 
2949
- #: sphinx/ext/autodoc/__init__.py:1727
3009
+ #: sphinx/ext/autodoc/__init__.py:1759
2950
3010
  #, python-format
2951
3011
  msgid "missing attribute %s in object %s"
2952
3012
  msgstr ""
2953
3013
 
2954
- #: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863
2955
- #: sphinx/ext/autodoc/__init__.py:1946
3014
+ #: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895
3015
+ #: sphinx/ext/autodoc/__init__.py:1990
2956
3016
  #, python-format
2957
3017
  msgid "alias of %s"
2958
3018
  msgstr ""
2959
3019
 
2960
- #: sphinx/ext/autodoc/__init__.py:1846
3020
+ #: sphinx/ext/autodoc/__init__.py:1878
2961
3021
  #, python-format
2962
3022
  msgid "alias of TypeVar(%s)"
2963
3023
  msgstr ""
2964
3024
 
2965
- #: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264
3025
+ #: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316
2966
3026
  #, python-format
2967
3027
  msgid "Failed to get a method signature for %s: %s"
2968
3028
  msgstr ""
2969
3029
 
2970
- #: sphinx/ext/autodoc/__init__.py:2395
3030
+ #: sphinx/ext/autodoc/__init__.py:2447
2971
3031
  #, python-format
2972
3032
  msgid "Invalid __slots__ found on %s. Ignored."
2973
3033
  msgstr ""
2974
3034
 
2975
- #: sphinx/ext/autodoc/preserve_defaults.py:183
3035
+ #: sphinx/ext/autodoc/preserve_defaults.py:190
2976
3036
  #, python-format
2977
3037
  msgid "Failed to parse a default argument value for %r: %s"
2978
3038
  msgstr ""
2979
3039
 
2980
- #: sphinx/ext/autodoc/type_comment.py:131
3040
+ #: sphinx/ext/autodoc/type_comment.py:132
2981
3041
  #, python-format
2982
3042
  msgid "Failed to update signature for %r: parameter not found: %s"
2983
3043
  msgstr ""
2984
3044
 
2985
- #: sphinx/ext/autodoc/type_comment.py:134
3045
+ #: sphinx/ext/autodoc/type_comment.py:135
2986
3046
  #, python-format
2987
3047
  msgid "Failed to parse type_comment for %r: %s"
2988
3048
  msgstr ""
2989
3049
 
2990
- #: sphinx/ext/autosummary/__init__.py:249
3050
+ #: sphinx/ext/autosummary/__init__.py:251
2991
3051
  #, python-format
2992
3052
  msgid "autosummary references excluded document %r. Ignored."
2993
3053
  msgstr ""
2994
3054
 
2995
- #: sphinx/ext/autosummary/__init__.py:251
3055
+ #: sphinx/ext/autosummary/__init__.py:253
2996
3056
  #, python-format
2997
3057
  msgid ""
2998
3058
  "autosummary: stub file not found %r. Check your autosummary_generate "
2999
3059
  "setting."
3000
3060
  msgstr ""
3001
3061
 
3002
- #: sphinx/ext/autosummary/__init__.py:270
3062
+ #: sphinx/ext/autosummary/__init__.py:272
3003
3063
  msgid "A captioned autosummary requires :toctree: option. ignored."
3004
3064
  msgstr ""
3005
3065
 
3006
- #: sphinx/ext/autosummary/__init__.py:323
3066
+ #: sphinx/ext/autosummary/__init__.py:325
3007
3067
  #, python-format
3008
3068
  msgid ""
3009
3069
  "autosummary: failed to import %s.\n"
@@ -3011,24 +3071,24 @@ msgid ""
3011
3071
  "%s"
3012
3072
  msgstr ""
3013
3073
 
3014
- #: sphinx/ext/autosummary/__init__.py:337
3074
+ #: sphinx/ext/autosummary/__init__.py:339
3015
3075
  #, python-format
3016
3076
  msgid "failed to parse name %s"
3017
3077
  msgstr ""
3018
3078
 
3019
- #: sphinx/ext/autosummary/__init__.py:342
3079
+ #: sphinx/ext/autosummary/__init__.py:344
3020
3080
  #, python-format
3021
3081
  msgid "failed to import object %s"
3022
3082
  msgstr ""
3023
3083
 
3024
- #: sphinx/ext/autosummary/__init__.py:798
3084
+ #: sphinx/ext/autosummary/__init__.py:802
3025
3085
  #, python-format
3026
3086
  msgid "autosummary_generate: file not found: %s"
3027
3087
  msgstr ""
3028
3088
 
3029
- #: sphinx/ext/autosummary/__init__.py:806
3089
+ #: sphinx/ext/autosummary/__init__.py:810
3030
3090
  msgid ""
3031
- "autosummary generats .rst files internally. But your source_suffix does "
3091
+ "autosummary generates .rst files internally. But your source_suffix does "
3032
3092
  "not contain .rst. Skipped."
3033
3093
  msgstr ""
3034
3094
 
@@ -3106,99 +3166,99 @@ msgid ""
3106
3166
  "%(default)s)"
3107
3167
  msgstr ""
3108
3168
 
3109
- #: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726
3169
+ #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728
3110
3170
  msgid "Keyword Arguments"
3111
3171
  msgstr ""
3112
3172
 
3113
- #: sphinx/ext/napoleon/docstring.py:680
3173
+ #: sphinx/ext/napoleon/docstring.py:682
3114
3174
  msgid "Example"
3115
3175
  msgstr ""
3116
3176
 
3117
- #: sphinx/ext/napoleon/docstring.py:681
3177
+ #: sphinx/ext/napoleon/docstring.py:683
3118
3178
  msgid "Examples"
3119
3179
  msgstr ""
3120
3180
 
3121
- #: sphinx/ext/napoleon/docstring.py:742
3181
+ #: sphinx/ext/napoleon/docstring.py:744
3122
3182
  msgid "Notes"
3123
3183
  msgstr ""
3124
3184
 
3125
- #: sphinx/ext/napoleon/docstring.py:751
3185
+ #: sphinx/ext/napoleon/docstring.py:753
3126
3186
  msgid "Other Parameters"
3127
3187
  msgstr ""
3128
3188
 
3129
- #: sphinx/ext/napoleon/docstring.py:787
3189
+ #: sphinx/ext/napoleon/docstring.py:789
3130
3190
  msgid "Receives"
3131
3191
  msgstr ""
3132
3192
 
3133
- #: sphinx/ext/napoleon/docstring.py:791
3193
+ #: sphinx/ext/napoleon/docstring.py:793
3134
3194
  msgid "References"
3135
3195
  msgstr ""
3136
3196
 
3137
- #: sphinx/ext/napoleon/docstring.py:823
3197
+ #: sphinx/ext/napoleon/docstring.py:825
3138
3198
  msgid "Warns"
3139
3199
  msgstr ""
3140
3200
 
3141
- #: sphinx/ext/napoleon/docstring.py:827
3201
+ #: sphinx/ext/napoleon/docstring.py:829
3142
3202
  msgid "Yields"
3143
3203
  msgstr ""
3144
3204
 
3145
- #: sphinx/ext/napoleon/docstring.py:985
3205
+ #: sphinx/ext/napoleon/docstring.py:987
3146
3206
  #, python-format
3147
3207
  msgid "invalid value set (missing closing brace): %s"
3148
3208
  msgstr ""
3149
3209
 
3150
- #: sphinx/ext/napoleon/docstring.py:992
3210
+ #: sphinx/ext/napoleon/docstring.py:994
3151
3211
  #, python-format
3152
3212
  msgid "invalid value set (missing opening brace): %s"
3153
3213
  msgstr ""
3154
3214
 
3155
- #: sphinx/ext/napoleon/docstring.py:999
3215
+ #: sphinx/ext/napoleon/docstring.py:1001
3156
3216
  #, python-format
3157
3217
  msgid "malformed string literal (missing closing quote): %s"
3158
3218
  msgstr ""
3159
3219
 
3160
- #: sphinx/ext/napoleon/docstring.py:1006
3220
+ #: sphinx/ext/napoleon/docstring.py:1008
3161
3221
  #, python-format
3162
3222
  msgid "malformed string literal (missing opening quote): %s"
3163
3223
  msgstr ""
3164
3224
 
3165
- #: sphinx/locale/__init__.py:221
3225
+ #: sphinx/locale/__init__.py:228
3166
3226
  msgid "Attention"
3167
3227
  msgstr ""
3168
3228
 
3169
- #: sphinx/locale/__init__.py:222
3229
+ #: sphinx/locale/__init__.py:229
3170
3230
  msgid "Caution"
3171
3231
  msgstr ""
3172
3232
 
3173
- #: sphinx/locale/__init__.py:223
3233
+ #: sphinx/locale/__init__.py:230
3174
3234
  msgid "Danger"
3175
3235
  msgstr ""
3176
3236
 
3177
- #: sphinx/locale/__init__.py:224
3237
+ #: sphinx/locale/__init__.py:231
3178
3238
  msgid "Error"
3179
3239
  msgstr ""
3180
3240
 
3181
- #: sphinx/locale/__init__.py:225
3241
+ #: sphinx/locale/__init__.py:232
3182
3242
  msgid "Hint"
3183
3243
  msgstr ""
3184
3244
 
3185
- #: sphinx/locale/__init__.py:226
3245
+ #: sphinx/locale/__init__.py:233
3186
3246
  msgid "Important"
3187
3247
  msgstr ""
3188
3248
 
3189
- #: sphinx/locale/__init__.py:227
3249
+ #: sphinx/locale/__init__.py:234
3190
3250
  msgid "Note"
3191
3251
  msgstr ""
3192
3252
 
3193
- #: sphinx/locale/__init__.py:228
3253
+ #: sphinx/locale/__init__.py:235
3194
3254
  msgid "See also"
3195
3255
  msgstr ""
3196
3256
 
3197
- #: sphinx/locale/__init__.py:229
3257
+ #: sphinx/locale/__init__.py:236
3198
3258
  msgid "Tip"
3199
3259
  msgstr ""
3200
3260
 
3201
- #: sphinx/locale/__init__.py:230
3261
+ #: sphinx/locale/__init__.py:237
3202
3262
  msgid "Warning"
3203
3263
  msgstr ""
3204
3264
 
@@ -3230,7 +3290,7 @@ msgid "Table of Contents"
3230
3290
  msgstr ""
3231
3291
 
3232
3292
  #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141
3233
- #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22
3293
+ #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23
3234
3294
  msgid "Search"
3235
3295
  msgstr ""
3236
3296
 
@@ -3363,34 +3423,22 @@ msgstr ""
3363
3423
  msgid "next chapter"
3364
3424
  msgstr ""
3365
3425
 
3366
- #: sphinx/themes/basic/search.html:27
3426
+ #: sphinx/themes/basic/search.html:28
3367
3427
  msgid ""
3368
3428
  "Please activate JavaScript to enable the search\n"
3369
3429
  " functionality."
3370
3430
  msgstr ""
3371
3431
 
3372
- #: sphinx/themes/basic/search.html:35
3432
+ #: sphinx/themes/basic/search.html:36
3373
3433
  msgid ""
3374
3434
  "Searching for multiple words only shows matches that contain\n"
3375
3435
  " all words."
3376
3436
  msgstr ""
3377
3437
 
3378
- #: sphinx/themes/basic/search.html:42
3438
+ #: sphinx/themes/basic/search.html:43
3379
3439
  msgid "search"
3380
3440
  msgstr ""
3381
3441
 
3382
- #: sphinx/themes/basic/search.html:48
3383
- #: sphinx/themes/basic/static/searchtools.js:112
3384
- msgid "Search Results"
3385
- msgstr ""
3386
-
3387
- #: sphinx/themes/basic/search.html:50
3388
- #: sphinx/themes/basic/static/searchtools.js:114
3389
- msgid ""
3390
- "Your search did not match any documents. Please make sure that all words "
3391
- "are spelled correctly and that you've selected enough categories."
3392
- msgstr ""
3393
-
3394
3442
  #: sphinx/themes/basic/searchbox.html:12
3395
3443
  msgid "Quick search"
3396
3444
  msgstr ""
@@ -3427,19 +3475,29 @@ msgstr ""
3427
3475
  msgid "Other changes"
3428
3476
  msgstr ""
3429
3477
 
3478
+ #: sphinx/themes/basic/static/searchtools.js:112
3479
+ msgid "Search Results"
3480
+ msgstr ""
3481
+
3482
+ #: sphinx/themes/basic/static/searchtools.js:114
3483
+ msgid ""
3484
+ "Your search did not match any documents. Please make sure that all words "
3485
+ "are spelled correctly and that you've selected enough categories."
3486
+ msgstr ""
3487
+
3430
3488
  #: sphinx/themes/basic/static/searchtools.js:118
3431
3489
  msgid "Search finished, found ${resultCount} page(s) matching the search query."
3432
3490
  msgstr ""
3433
3491
 
3434
- #: sphinx/themes/basic/static/searchtools.js:217
3492
+ #: sphinx/themes/basic/static/searchtools.js:246
3435
3493
  msgid "Searching"
3436
3494
  msgstr ""
3437
3495
 
3438
- #: sphinx/themes/basic/static/searchtools.js:233
3496
+ #: sphinx/themes/basic/static/searchtools.js:262
3439
3497
  msgid "Preparing search..."
3440
3498
  msgstr ""
3441
3499
 
3442
- #: sphinx/themes/basic/static/searchtools.js:421
3500
+ #: sphinx/themes/basic/static/searchtools.js:463
3443
3501
  msgid ", in "
3444
3502
  msgstr ""
3445
3503
 
@@ -3460,29 +3518,29 @@ msgstr ""
3460
3518
  msgid "Contents"
3461
3519
  msgstr ""
3462
3520
 
3463
- #: sphinx/transforms/__init__.py:126
3521
+ #: sphinx/transforms/__init__.py:128
3464
3522
  msgid "could not calculate translation progress!"
3465
3523
  msgstr ""
3466
3524
 
3467
- #: sphinx/transforms/__init__.py:131
3525
+ #: sphinx/transforms/__init__.py:133
3468
3526
  msgid "no translated elements!"
3469
3527
  msgstr ""
3470
3528
 
3471
- #: sphinx/transforms/__init__.py:238
3529
+ #: sphinx/transforms/__init__.py:250
3472
3530
  #, python-format
3473
3531
  msgid "4 column based index found. It might be a bug of extensions you use: %r"
3474
3532
  msgstr ""
3475
3533
 
3476
- #: sphinx/transforms/__init__.py:277
3534
+ #: sphinx/transforms/__init__.py:291
3477
3535
  #, python-format
3478
3536
  msgid "Footnote [%s] is not referenced."
3479
3537
  msgstr ""
3480
3538
 
3481
- #: sphinx/transforms/__init__.py:283
3539
+ #: sphinx/transforms/__init__.py:297
3482
3540
  msgid "Footnote [#] is not referenced."
3483
3541
  msgstr ""
3484
3542
 
3485
- #: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272
3543
+ #: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270
3486
3544
  msgid ""
3487
3545
  "inconsistent footnote references in translated message. original: {0}, "
3488
3546
  "translated: {1}"
@@ -3494,13 +3552,13 @@ msgid ""
3494
3552
  " {1}"
3495
3553
  msgstr ""
3496
3554
 
3497
- #: sphinx/transforms/i18n.py:287
3555
+ #: sphinx/transforms/i18n.py:285
3498
3556
  msgid ""
3499
3557
  "inconsistent citation references in translated message. original: {0}, "
3500
3558
  "translated: {1}"
3501
3559
  msgstr ""
3502
3560
 
3503
- #: sphinx/transforms/i18n.py:304
3561
+ #: sphinx/transforms/i18n.py:302
3504
3562
  msgid ""
3505
3563
  "inconsistent term references in translated message. original: {0}, "
3506
3564
  "translated: {1}"
@@ -3527,91 +3585,91 @@ msgstr ""
3527
3585
  msgid "%r reference target not found: %s"
3528
3586
  msgstr ""
3529
3587
 
3530
- #: sphinx/transforms/post_transforms/images.py:80
3588
+ #: sphinx/transforms/post_transforms/images.py:89
3531
3589
  #, python-format
3532
3590
  msgid "Could not fetch remote image: %s [%d]"
3533
3591
  msgstr ""
3534
3592
 
3535
- #: sphinx/transforms/post_transforms/images.py:108
3593
+ #: sphinx/transforms/post_transforms/images.py:117
3536
3594
  #, python-format
3537
3595
  msgid "Could not fetch remote image: %s [%s]"
3538
3596
  msgstr ""
3539
3597
 
3540
- #: sphinx/transforms/post_transforms/images.py:126
3598
+ #: sphinx/transforms/post_transforms/images.py:135
3541
3599
  #, python-format
3542
3600
  msgid "Unknown image format: %s..."
3543
3601
  msgstr ""
3544
3602
 
3545
- #: sphinx/util/__init__.py:167
3603
+ #: sphinx/util/__init__.py:168
3546
3604
  #, python-format
3547
3605
  msgid "undecodable source characters, replacing with \"?\": %r"
3548
3606
  msgstr ""
3549
3607
 
3550
- #: sphinx/util/display.py:77
3608
+ #: sphinx/util/display.py:78
3551
3609
  msgid "skipped"
3552
3610
  msgstr ""
3553
3611
 
3554
- #: sphinx/util/display.py:82
3612
+ #: sphinx/util/display.py:83
3555
3613
  msgid "failed"
3556
3614
  msgstr ""
3557
3615
 
3558
- #: sphinx/util/docfields.py:88
3616
+ #: sphinx/util/docfields.py:87
3559
3617
  #, python-format
3560
3618
  msgid ""
3561
3619
  "Problem in %s domain: field is supposed to use role '%s', but that role "
3562
3620
  "is not in the domain."
3563
3621
  msgstr ""
3564
3622
 
3565
- #: sphinx/util/docutils.py:311
3623
+ #: sphinx/util/docutils.py:295
3566
3624
  #, python-format
3567
3625
  msgid "unknown directive or role name: %s:%s"
3568
3626
  msgstr ""
3569
3627
 
3570
- #: sphinx/util/docutils.py:605
3628
+ #: sphinx/util/docutils.py:591
3571
3629
  #, python-format
3572
3630
  msgid "unknown node type: %r"
3573
3631
  msgstr ""
3574
3632
 
3575
- #: sphinx/util/i18n.py:63
3633
+ #: sphinx/util/i18n.py:94
3576
3634
  #, python-format
3577
3635
  msgid "reading error: %s, %s"
3578
3636
  msgstr ""
3579
3637
 
3580
- #: sphinx/util/i18n.py:70
3638
+ #: sphinx/util/i18n.py:101
3581
3639
  #, python-format
3582
3640
  msgid "writing error: %s, %s"
3583
3641
  msgstr ""
3584
3642
 
3585
- #: sphinx/util/i18n.py:94
3643
+ #: sphinx/util/i18n.py:125
3586
3644
  #, python-format
3587
3645
  msgid "locale_dir %s does not exist"
3588
3646
  msgstr ""
3589
3647
 
3590
- #: sphinx/util/i18n.py:185
3648
+ #: sphinx/util/i18n.py:215
3591
3649
  #, python-format
3592
3650
  msgid ""
3593
3651
  "Invalid date format. Quote the string by single quote if you want to "
3594
3652
  "output it directly: %s"
3595
3653
  msgstr ""
3596
3654
 
3597
- #: sphinx/util/nodes.py:378
3655
+ #: sphinx/util/nodes.py:386
3598
3656
  #, python-format
3599
3657
  msgid ""
3600
3658
  "%r is deprecated for index entries (from entry %r). Use 'pair: %s' "
3601
3659
  "instead."
3602
3660
  msgstr ""
3603
3661
 
3604
- #: sphinx/util/nodes.py:426
3662
+ #: sphinx/util/nodes.py:439
3605
3663
  #, python-format
3606
3664
  msgid "toctree contains ref to nonexisting file %r"
3607
3665
  msgstr ""
3608
3666
 
3609
- #: sphinx/util/nodes.py:627
3667
+ #: sphinx/util/nodes.py:637
3610
3668
  #, python-format
3611
3669
  msgid "exception while evaluating only directive expression: %s"
3612
3670
  msgstr ""
3613
3671
 
3614
- #: sphinx/util/rst.py:70
3672
+ #: sphinx/util/rst.py:71
3615
3673
  #, python-format
3616
3674
  msgid "default role %s not found"
3617
3675
  msgstr ""
@@ -3634,27 +3692,27 @@ msgstr ""
3634
3692
  msgid "Link to this term"
3635
3693
  msgstr ""
3636
3694
 
3637
- #: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490
3695
+ #: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501
3638
3696
  msgid "Link to this heading"
3639
3697
  msgstr ""
3640
3698
 
3641
- #: sphinx/writers/html5.py:494
3699
+ #: sphinx/writers/html5.py:505
3642
3700
  msgid "Link to this table"
3643
3701
  msgstr ""
3644
3702
 
3645
- #: sphinx/writers/html5.py:537
3703
+ #: sphinx/writers/html5.py:548
3646
3704
  msgid "Link to this code"
3647
3705
  msgstr ""
3648
3706
 
3649
- #: sphinx/writers/html5.py:539
3707
+ #: sphinx/writers/html5.py:550
3650
3708
  msgid "Link to this image"
3651
3709
  msgstr ""
3652
3710
 
3653
- #: sphinx/writers/html5.py:541
3711
+ #: sphinx/writers/html5.py:552
3654
3712
  msgid "Link to this toctree"
3655
3713
  msgstr ""
3656
3714
 
3657
- #: sphinx/writers/html5.py:679
3715
+ #: sphinx/writers/html5.py:688
3658
3716
  msgid "Could not obtain image size. :scale: option is ignored."
3659
3717
  msgstr ""
3660
3718
 
@@ -3671,12 +3729,12 @@ msgstr ""
3671
3729
  msgid "document title is not a single Text node"
3672
3730
  msgstr ""
3673
3731
 
3674
- #: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622
3732
+ #: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626
3675
3733
  msgid "encountered title node not in section, topic, table, admonition or sidebar"
3676
3734
  msgstr ""
3677
3735
 
3678
- #: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258
3679
- #: sphinx/writers/texinfo.py:637
3736
+ #: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259
3737
+ #: sphinx/writers/texinfo.py:641
3680
3738
  msgid "Footnotes"
3681
3739
  msgstr ""
3682
3740
 
@@ -3694,20 +3752,20 @@ msgstr ""
3694
3752
  msgid "unknown index entry type %s found"
3695
3753
  msgstr ""
3696
3754
 
3697
- #: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917
3755
+ #: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907
3698
3756
  #, python-format
3699
3757
  msgid "[image: %s]"
3700
3758
  msgstr ""
3701
3759
 
3702
- #: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918
3760
+ #: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908
3703
3761
  msgid "[image]"
3704
3762
  msgstr ""
3705
3763
 
3706
- #: sphinx/writers/texinfo.py:1193
3764
+ #: sphinx/writers/texinfo.py:1197
3707
3765
  msgid "caption not inside a figure."
3708
3766
  msgstr ""
3709
3767
 
3710
- #: sphinx/writers/texinfo.py:1280
3768
+ #: sphinx/writers/texinfo.py:1284
3711
3769
  #, python-format
3712
3770
  msgid "unimplemented node type: %r"
3713
3771
  msgstr ""