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