Sphinx 7.2.5__py3-none-any.whl → 7.3.0__py3-none-any.whl

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

Potentially problematic release.


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

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