Sphinx 7.2.6__py3-none-any.whl → 7.3.1__py3-none-any.whl

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

Potentially problematic release.


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

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