Sphinx 8.1.2__py3-none-any.whl → 8.2.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 (328) hide show
  1. sphinx/__init__.py +8 -4
  2. sphinx/__main__.py +2 -0
  3. sphinx/_cli/__init__.py +2 -5
  4. sphinx/_cli/util/colour.py +34 -11
  5. sphinx/_cli/util/errors.py +128 -61
  6. sphinx/addnodes.py +51 -35
  7. sphinx/application.py +362 -230
  8. sphinx/builders/__init__.py +87 -64
  9. sphinx/builders/_epub_base.py +65 -56
  10. sphinx/builders/changes.py +17 -23
  11. sphinx/builders/dirhtml.py +8 -13
  12. sphinx/builders/epub3.py +70 -38
  13. sphinx/builders/gettext.py +93 -73
  14. sphinx/builders/html/__init__.py +240 -186
  15. sphinx/builders/html/_assets.py +9 -2
  16. sphinx/builders/html/_build_info.py +3 -0
  17. sphinx/builders/latex/__init__.py +64 -54
  18. sphinx/builders/latex/constants.py +14 -11
  19. sphinx/builders/latex/nodes.py +2 -0
  20. sphinx/builders/latex/theming.py +8 -9
  21. sphinx/builders/latex/transforms.py +7 -5
  22. sphinx/builders/linkcheck.py +193 -149
  23. sphinx/builders/manpage.py +17 -17
  24. sphinx/builders/singlehtml.py +28 -16
  25. sphinx/builders/texinfo.py +28 -21
  26. sphinx/builders/text.py +10 -15
  27. sphinx/builders/xml.py +10 -19
  28. sphinx/cmd/build.py +49 -119
  29. sphinx/cmd/make_mode.py +35 -31
  30. sphinx/cmd/quickstart.py +78 -62
  31. sphinx/config.py +265 -163
  32. sphinx/directives/__init__.py +51 -54
  33. sphinx/directives/admonitions.py +107 -0
  34. sphinx/directives/code.py +24 -19
  35. sphinx/directives/other.py +21 -42
  36. sphinx/directives/patches.py +28 -16
  37. sphinx/domains/__init__.py +54 -31
  38. sphinx/domains/_domains_container.py +22 -17
  39. sphinx/domains/_index.py +5 -8
  40. sphinx/domains/c/__init__.py +366 -245
  41. sphinx/domains/c/_ast.py +378 -256
  42. sphinx/domains/c/_ids.py +89 -31
  43. sphinx/domains/c/_parser.py +283 -214
  44. sphinx/domains/c/_symbol.py +269 -198
  45. sphinx/domains/changeset.py +39 -24
  46. sphinx/domains/citation.py +54 -24
  47. sphinx/domains/cpp/__init__.py +517 -362
  48. sphinx/domains/cpp/_ast.py +999 -682
  49. sphinx/domains/cpp/_ids.py +133 -65
  50. sphinx/domains/cpp/_parser.py +746 -588
  51. sphinx/domains/cpp/_symbol.py +692 -489
  52. sphinx/domains/index.py +10 -8
  53. sphinx/domains/javascript.py +152 -74
  54. sphinx/domains/math.py +50 -40
  55. sphinx/domains/python/__init__.py +402 -211
  56. sphinx/domains/python/_annotations.py +134 -61
  57. sphinx/domains/python/_object.py +155 -68
  58. sphinx/domains/rst.py +94 -49
  59. sphinx/domains/std/__init__.py +510 -249
  60. sphinx/environment/__init__.py +345 -61
  61. sphinx/environment/adapters/asset.py +7 -1
  62. sphinx/environment/adapters/indexentries.py +15 -20
  63. sphinx/environment/adapters/toctree.py +19 -9
  64. sphinx/environment/collectors/__init__.py +3 -1
  65. sphinx/environment/collectors/asset.py +18 -15
  66. sphinx/environment/collectors/dependencies.py +8 -10
  67. sphinx/environment/collectors/metadata.py +6 -4
  68. sphinx/environment/collectors/title.py +3 -1
  69. sphinx/environment/collectors/toctree.py +4 -4
  70. sphinx/errors.py +1 -3
  71. sphinx/events.py +4 -4
  72. sphinx/ext/apidoc/__init__.py +66 -0
  73. sphinx/ext/apidoc/__main__.py +9 -0
  74. sphinx/ext/apidoc/_cli.py +356 -0
  75. sphinx/ext/apidoc/_extension.py +262 -0
  76. sphinx/ext/apidoc/_generate.py +356 -0
  77. sphinx/ext/apidoc/_shared.py +99 -0
  78. sphinx/ext/autodoc/__init__.py +837 -483
  79. sphinx/ext/autodoc/directive.py +57 -21
  80. sphinx/ext/autodoc/importer.py +184 -67
  81. sphinx/ext/autodoc/mock.py +25 -10
  82. sphinx/ext/autodoc/preserve_defaults.py +17 -9
  83. sphinx/ext/autodoc/type_comment.py +56 -29
  84. sphinx/ext/autodoc/typehints.py +49 -26
  85. sphinx/ext/autosectionlabel.py +28 -11
  86. sphinx/ext/autosummary/__init__.py +281 -142
  87. sphinx/ext/autosummary/generate.py +121 -51
  88. sphinx/ext/coverage.py +152 -91
  89. sphinx/ext/doctest.py +169 -101
  90. sphinx/ext/duration.py +12 -6
  91. sphinx/ext/extlinks.py +33 -21
  92. sphinx/ext/githubpages.py +8 -8
  93. sphinx/ext/graphviz.py +175 -109
  94. sphinx/ext/ifconfig.py +11 -6
  95. sphinx/ext/imgconverter.py +48 -25
  96. sphinx/ext/imgmath.py +127 -97
  97. sphinx/ext/inheritance_diagram.py +177 -103
  98. sphinx/ext/intersphinx/__init__.py +22 -13
  99. sphinx/ext/intersphinx/__main__.py +3 -1
  100. sphinx/ext/intersphinx/_cli.py +18 -14
  101. sphinx/ext/intersphinx/_load.py +91 -82
  102. sphinx/ext/intersphinx/_resolve.py +108 -74
  103. sphinx/ext/intersphinx/_shared.py +2 -2
  104. sphinx/ext/linkcode.py +28 -12
  105. sphinx/ext/mathjax.py +60 -29
  106. sphinx/ext/napoleon/__init__.py +19 -7
  107. sphinx/ext/napoleon/docstring.py +229 -231
  108. sphinx/ext/todo.py +44 -49
  109. sphinx/ext/viewcode.py +105 -57
  110. sphinx/extension.py +3 -1
  111. sphinx/highlighting.py +13 -7
  112. sphinx/io.py +9 -13
  113. sphinx/jinja2glue.py +29 -26
  114. sphinx/locale/__init__.py +8 -9
  115. sphinx/locale/ar/LC_MESSAGES/sphinx.mo +0 -0
  116. sphinx/locale/ar/LC_MESSAGES/sphinx.po +2155 -2050
  117. sphinx/locale/bg/LC_MESSAGES/sphinx.mo +0 -0
  118. sphinx/locale/bg/LC_MESSAGES/sphinx.po +2045 -1940
  119. sphinx/locale/bn/LC_MESSAGES/sphinx.mo +0 -0
  120. sphinx/locale/bn/LC_MESSAGES/sphinx.po +2175 -2070
  121. sphinx/locale/ca/LC_MESSAGES/sphinx.js +3 -3
  122. sphinx/locale/ca/LC_MESSAGES/sphinx.mo +0 -0
  123. sphinx/locale/ca/LC_MESSAGES/sphinx.po +2690 -2585
  124. sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.js +63 -0
  125. sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.mo +0 -0
  126. sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.po +4216 -0
  127. sphinx/locale/cak/LC_MESSAGES/sphinx.mo +0 -0
  128. sphinx/locale/cak/LC_MESSAGES/sphinx.po +2096 -1991
  129. sphinx/locale/cs/LC_MESSAGES/sphinx.mo +0 -0
  130. sphinx/locale/cs/LC_MESSAGES/sphinx.po +2248 -2143
  131. sphinx/locale/cy/LC_MESSAGES/sphinx.mo +0 -0
  132. sphinx/locale/cy/LC_MESSAGES/sphinx.po +2201 -2096
  133. sphinx/locale/da/LC_MESSAGES/sphinx.mo +0 -0
  134. sphinx/locale/da/LC_MESSAGES/sphinx.po +2282 -2177
  135. sphinx/locale/de/LC_MESSAGES/sphinx.mo +0 -0
  136. sphinx/locale/de/LC_MESSAGES/sphinx.po +2261 -2156
  137. sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo +0 -0
  138. sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +2045 -1940
  139. sphinx/locale/el/LC_MESSAGES/sphinx.mo +0 -0
  140. sphinx/locale/el/LC_MESSAGES/sphinx.po +2604 -2499
  141. sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo +0 -0
  142. sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +2045 -1940
  143. sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +0 -0
  144. sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +2045 -1940
  145. sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +0 -0
  146. sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +2631 -2526
  147. sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +0 -0
  148. sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +2045 -1940
  149. sphinx/locale/eo/LC_MESSAGES/sphinx.mo +0 -0
  150. sphinx/locale/eo/LC_MESSAGES/sphinx.po +2078 -1973
  151. sphinx/locale/es/LC_MESSAGES/sphinx.mo +0 -0
  152. sphinx/locale/es/LC_MESSAGES/sphinx.po +2633 -2528
  153. sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo +0 -0
  154. sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +2045 -1940
  155. sphinx/locale/et/LC_MESSAGES/sphinx.mo +0 -0
  156. sphinx/locale/et/LC_MESSAGES/sphinx.po +2449 -2344
  157. sphinx/locale/eu/LC_MESSAGES/sphinx.mo +0 -0
  158. sphinx/locale/eu/LC_MESSAGES/sphinx.po +2241 -2136
  159. sphinx/locale/fa/LC_MESSAGES/sphinx.mo +0 -0
  160. sphinx/locale/fa/LC_MESSAGES/sphinx.po +504 -500
  161. sphinx/locale/fi/LC_MESSAGES/sphinx.mo +0 -0
  162. sphinx/locale/fi/LC_MESSAGES/sphinx.po +499 -495
  163. sphinx/locale/fr/LC_MESSAGES/sphinx.mo +0 -0
  164. sphinx/locale/fr/LC_MESSAGES/sphinx.po +513 -509
  165. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +0 -0
  166. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +499 -495
  167. sphinx/locale/gl/LC_MESSAGES/sphinx.mo +0 -0
  168. sphinx/locale/gl/LC_MESSAGES/sphinx.po +2644 -2539
  169. sphinx/locale/he/LC_MESSAGES/sphinx.mo +0 -0
  170. sphinx/locale/he/LC_MESSAGES/sphinx.po +499 -495
  171. sphinx/locale/hi/LC_MESSAGES/sphinx.mo +0 -0
  172. sphinx/locale/hi/LC_MESSAGES/sphinx.po +504 -500
  173. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +0 -0
  174. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +499 -495
  175. sphinx/locale/hr/LC_MESSAGES/sphinx.mo +0 -0
  176. sphinx/locale/hr/LC_MESSAGES/sphinx.po +501 -497
  177. sphinx/locale/hu/LC_MESSAGES/sphinx.mo +0 -0
  178. sphinx/locale/hu/LC_MESSAGES/sphinx.po +499 -495
  179. sphinx/locale/id/LC_MESSAGES/sphinx.mo +0 -0
  180. sphinx/locale/id/LC_MESSAGES/sphinx.po +2609 -2504
  181. sphinx/locale/is/LC_MESSAGES/sphinx.mo +0 -0
  182. sphinx/locale/is/LC_MESSAGES/sphinx.po +499 -495
  183. sphinx/locale/it/LC_MESSAGES/sphinx.mo +0 -0
  184. sphinx/locale/it/LC_MESSAGES/sphinx.po +2265 -2160
  185. sphinx/locale/ja/LC_MESSAGES/sphinx.mo +0 -0
  186. sphinx/locale/ja/LC_MESSAGES/sphinx.po +2621 -2516
  187. sphinx/locale/ka/LC_MESSAGES/sphinx.mo +0 -0
  188. sphinx/locale/ka/LC_MESSAGES/sphinx.po +2567 -2462
  189. sphinx/locale/ko/LC_MESSAGES/sphinx.mo +0 -0
  190. sphinx/locale/ko/LC_MESSAGES/sphinx.po +2631 -2526
  191. sphinx/locale/lt/LC_MESSAGES/sphinx.mo +0 -0
  192. sphinx/locale/lt/LC_MESSAGES/sphinx.po +2214 -2109
  193. sphinx/locale/lv/LC_MESSAGES/sphinx.mo +0 -0
  194. sphinx/locale/lv/LC_MESSAGES/sphinx.po +2218 -2113
  195. sphinx/locale/mk/LC_MESSAGES/sphinx.mo +0 -0
  196. sphinx/locale/mk/LC_MESSAGES/sphinx.po +2088 -1983
  197. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +0 -0
  198. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +2247 -2142
  199. sphinx/locale/ne/LC_MESSAGES/sphinx.mo +0 -0
  200. sphinx/locale/ne/LC_MESSAGES/sphinx.po +2227 -2122
  201. sphinx/locale/nl/LC_MESSAGES/sphinx.mo +0 -0
  202. sphinx/locale/nl/LC_MESSAGES/sphinx.po +2316 -2211
  203. sphinx/locale/pl/LC_MESSAGES/sphinx.js +2 -2
  204. sphinx/locale/pl/LC_MESSAGES/sphinx.mo +0 -0
  205. sphinx/locale/pl/LC_MESSAGES/sphinx.po +2442 -2336
  206. sphinx/locale/pt/LC_MESSAGES/sphinx.mo +0 -0
  207. sphinx/locale/pt/LC_MESSAGES/sphinx.po +2045 -1940
  208. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +0 -0
  209. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +2657 -2552
  210. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +0 -0
  211. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +2243 -2138
  212. sphinx/locale/ro/LC_MESSAGES/sphinx.mo +0 -0
  213. sphinx/locale/ro/LC_MESSAGES/sphinx.po +2244 -2139
  214. sphinx/locale/ru/LC_MESSAGES/sphinx.js +1 -1
  215. sphinx/locale/ru/LC_MESSAGES/sphinx.mo +0 -0
  216. sphinx/locale/ru/LC_MESSAGES/sphinx.po +2660 -2555
  217. sphinx/locale/si/LC_MESSAGES/sphinx.mo +0 -0
  218. sphinx/locale/si/LC_MESSAGES/sphinx.po +2134 -2029
  219. sphinx/locale/sk/LC_MESSAGES/sphinx.mo +0 -0
  220. sphinx/locale/sk/LC_MESSAGES/sphinx.po +2614 -2509
  221. sphinx/locale/sl/LC_MESSAGES/sphinx.mo +0 -0
  222. sphinx/locale/sl/LC_MESSAGES/sphinx.po +2167 -2062
  223. sphinx/locale/sphinx.pot +2069 -1964
  224. sphinx/locale/sq/LC_MESSAGES/sphinx.mo +0 -0
  225. sphinx/locale/sq/LC_MESSAGES/sphinx.po +2661 -2556
  226. sphinx/locale/sr/LC_MESSAGES/sphinx.mo +0 -0
  227. sphinx/locale/sr/LC_MESSAGES/sphinx.po +2213 -2108
  228. sphinx/locale/sv/LC_MESSAGES/sphinx.mo +0 -0
  229. sphinx/locale/sv/LC_MESSAGES/sphinx.po +2229 -2124
  230. sphinx/locale/te/LC_MESSAGES/sphinx.mo +0 -0
  231. sphinx/locale/te/LC_MESSAGES/sphinx.po +2045 -1940
  232. sphinx/locale/tr/LC_MESSAGES/sphinx.mo +0 -0
  233. sphinx/locale/tr/LC_MESSAGES/sphinx.po +2608 -2503
  234. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +0 -0
  235. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +2167 -2062
  236. sphinx/locale/ur/LC_MESSAGES/sphinx.mo +0 -0
  237. sphinx/locale/ur/LC_MESSAGES/sphinx.po +2045 -1940
  238. sphinx/locale/vi/LC_MESSAGES/sphinx.mo +0 -0
  239. sphinx/locale/vi/LC_MESSAGES/sphinx.po +2204 -2099
  240. sphinx/locale/yue/LC_MESSAGES/sphinx.mo +0 -0
  241. sphinx/locale/yue/LC_MESSAGES/sphinx.po +2045 -1940
  242. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +0 -0
  243. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +2045 -1940
  244. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +0 -0
  245. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +2659 -2554
  246. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +0 -0
  247. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +2045 -1940
  248. sphinx/parsers.py +8 -7
  249. sphinx/project.py +2 -2
  250. sphinx/pycode/__init__.py +31 -21
  251. sphinx/pycode/ast.py +6 -3
  252. sphinx/pycode/parser.py +14 -8
  253. sphinx/pygments_styles.py +4 -5
  254. sphinx/registry.py +192 -92
  255. sphinx/roles.py +58 -7
  256. sphinx/search/__init__.py +75 -54
  257. sphinx/search/en.py +11 -13
  258. sphinx/search/fi.py +1 -1
  259. sphinx/search/ja.py +8 -6
  260. sphinx/search/nl.py +1 -1
  261. sphinx/search/zh.py +19 -21
  262. sphinx/testing/fixtures.py +26 -29
  263. sphinx/testing/path.py +26 -62
  264. sphinx/testing/restructuredtext.py +14 -8
  265. sphinx/testing/util.py +21 -19
  266. sphinx/texinputs/make.bat.jinja +50 -50
  267. sphinx/texinputs/sphinx.sty +4 -3
  268. sphinx/texinputs/sphinxlatexadmonitions.sty +1 -1
  269. sphinx/texinputs/sphinxlatexobjects.sty +29 -10
  270. sphinx/themes/basic/static/searchtools.js +8 -5
  271. sphinx/theming.py +49 -61
  272. sphinx/transforms/__init__.py +17 -38
  273. sphinx/transforms/compact_bullet_list.py +5 -3
  274. sphinx/transforms/i18n.py +8 -21
  275. sphinx/transforms/post_transforms/__init__.py +142 -93
  276. sphinx/transforms/post_transforms/code.py +5 -5
  277. sphinx/transforms/post_transforms/images.py +28 -24
  278. sphinx/transforms/references.py +3 -1
  279. sphinx/util/__init__.py +109 -60
  280. sphinx/util/_files.py +39 -23
  281. sphinx/util/_importer.py +4 -1
  282. sphinx/util/_inventory_file_reader.py +76 -0
  283. sphinx/util/_io.py +2 -2
  284. sphinx/util/_lines.py +6 -3
  285. sphinx/util/_pathlib.py +40 -2
  286. sphinx/util/build_phase.py +2 -0
  287. sphinx/util/cfamily.py +19 -14
  288. sphinx/util/console.py +44 -179
  289. sphinx/util/display.py +9 -10
  290. sphinx/util/docfields.py +140 -122
  291. sphinx/util/docstrings.py +1 -1
  292. sphinx/util/docutils.py +118 -77
  293. sphinx/util/fileutil.py +25 -26
  294. sphinx/util/http_date.py +2 -0
  295. sphinx/util/i18n.py +77 -64
  296. sphinx/util/images.py +8 -6
  297. sphinx/util/inspect.py +147 -38
  298. sphinx/util/inventory.py +215 -116
  299. sphinx/util/logging.py +33 -33
  300. sphinx/util/matching.py +12 -4
  301. sphinx/util/nodes.py +18 -13
  302. sphinx/util/osutil.py +38 -39
  303. sphinx/util/parallel.py +22 -13
  304. sphinx/util/parsing.py +2 -1
  305. sphinx/util/png.py +6 -2
  306. sphinx/util/requests.py +33 -2
  307. sphinx/util/rst.py +3 -2
  308. sphinx/util/tags.py +1 -1
  309. sphinx/util/template.py +18 -10
  310. sphinx/util/texescape.py +8 -6
  311. sphinx/util/typing.py +148 -122
  312. sphinx/versioning.py +3 -3
  313. sphinx/writers/html.py +3 -1
  314. sphinx/writers/html5.py +63 -52
  315. sphinx/writers/latex.py +83 -67
  316. sphinx/writers/manpage.py +19 -38
  317. sphinx/writers/texinfo.py +47 -47
  318. sphinx/writers/text.py +50 -32
  319. sphinx/writers/xml.py +11 -8
  320. {sphinx-8.1.2.dist-info → sphinx-8.2.0.dist-info}/LICENSE.rst +1 -1
  321. {sphinx-8.1.2.dist-info → sphinx-8.2.0.dist-info}/METADATA +25 -15
  322. sphinx-8.2.0.dist-info/RECORD +606 -0
  323. {sphinx-8.1.2.dist-info → sphinx-8.2.0.dist-info}/WHEEL +1 -1
  324. sphinx/builders/html/transforms.py +0 -90
  325. sphinx/ext/apidoc.py +0 -721
  326. sphinx/util/exceptions.py +0 -74
  327. sphinx-8.1.2.dist-info/RECORD +0 -598
  328. {sphinx-8.1.2.dist-info → sphinx-8.2.0.dist-info}/entry_points.txt +0 -0
@@ -7,7 +7,7 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: Sphinx\n"
9
9
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
- "POT-Creation-Date: 2024-10-10 15:47+0000\n"
10
+ "POT-Creation-Date: 2024-12-29 22:39+0000\n"
11
11
  "PO-Revision-Date: 2013-04-02 08:44+0000\n"
12
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
  "Language-Team: French (France) (http://app.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n"
@@ -33,127 +33,127 @@ msgstr ""
33
33
  msgid "Handler %r for event %r threw an exception"
34
34
  msgstr ""
35
35
 
36
- #: application.py:186
36
+ #: application.py:190
37
37
  #, python-format
38
38
  msgid "Cannot find source directory (%s)"
39
39
  msgstr ""
40
40
 
41
- #: application.py:190
41
+ #: application.py:194
42
42
  #, python-format
43
43
  msgid "Output directory (%s) is not a directory"
44
44
  msgstr ""
45
45
 
46
- #: application.py:194
46
+ #: application.py:198
47
47
  msgid "Source directory and destination directory cannot be identical"
48
48
  msgstr ""
49
49
 
50
- #: application.py:224
50
+ #: application.py:228
51
51
  #, python-format
52
52
  msgid "Running Sphinx v%s"
53
53
  msgstr ""
54
54
 
55
- #: application.py:246
55
+ #: application.py:250
56
56
  #, python-format
57
57
  msgid ""
58
58
  "This project needs at least Sphinx v%s and therefore cannot be built with "
59
59
  "this version."
60
60
  msgstr ""
61
61
 
62
- #: application.py:262
62
+ #: application.py:266
63
63
  msgid "making output directory"
64
64
  msgstr ""
65
65
 
66
- #: application.py:267 registry.py:450
66
+ #: application.py:271 registry.py:452
67
67
  #, python-format
68
68
  msgid "while setting up extension %s:"
69
69
  msgstr ""
70
70
 
71
- #: application.py:273
71
+ #: application.py:277
72
72
  msgid ""
73
73
  "'setup' as currently defined in conf.py isn't a Python callable. Please "
74
74
  "modify its definition to make it a callable function. This is needed for "
75
75
  "conf.py to behave as a Sphinx extension."
76
76
  msgstr ""
77
77
 
78
- #: application.py:308
78
+ #: application.py:312
79
79
  #, python-format
80
80
  msgid "loading translations [%s]... "
81
81
  msgstr ""
82
82
 
83
- #: application.py:325 util/display.py:90
83
+ #: application.py:329 util/display.py:88
84
84
  msgid "done"
85
85
  msgstr ""
86
86
 
87
- #: application.py:327
87
+ #: application.py:331
88
88
  msgid "not available for built-in messages"
89
89
  msgstr ""
90
90
 
91
- #: application.py:341
91
+ #: application.py:345
92
92
  msgid "loading pickled environment"
93
93
  msgstr ""
94
94
 
95
- #: application.py:349
95
+ #: application.py:353
96
96
  #, python-format
97
97
  msgid "failed: %s"
98
98
  msgstr ""
99
99
 
100
- #: application.py:362
100
+ #: application.py:366
101
101
  msgid "No builder selected, using default: html"
102
102
  msgstr ""
103
103
 
104
- #: application.py:394
104
+ #: application.py:398
105
105
  msgid "build finished with problems."
106
106
  msgstr ""
107
107
 
108
- #: application.py:396
108
+ #: application.py:400
109
109
  msgid "build succeeded."
110
110
  msgstr ""
111
111
 
112
- #: application.py:400
112
+ #: application.py:404
113
113
  msgid ""
114
114
  "build finished with problems, 1 warning (with warnings treated as errors)."
115
115
  msgstr ""
116
116
 
117
- #: application.py:403
117
+ #: application.py:407
118
118
  msgid "build finished with problems, 1 warning."
119
119
  msgstr ""
120
120
 
121
- #: application.py:405
121
+ #: application.py:409
122
122
  msgid "build succeeded, 1 warning."
123
123
  msgstr ""
124
124
 
125
- #: application.py:410
125
+ #: application.py:414
126
126
  #, python-format
127
127
  msgid ""
128
128
  "build finished with problems, %s warnings (with warnings treated as errors)."
129
129
  msgstr ""
130
130
 
131
- #: application.py:413
131
+ #: application.py:417
132
132
  #, python-format
133
133
  msgid "build finished with problems, %s warnings."
134
134
  msgstr ""
135
135
 
136
- #: application.py:415
136
+ #: application.py:419
137
137
  #, python-format
138
138
  msgid "build succeeded, %s warnings."
139
139
  msgstr ""
140
140
 
141
- #: application.py:964
141
+ #: application.py:968
142
142
  #, python-format
143
143
  msgid "node class %r is already registered, its visitors will be overridden"
144
144
  msgstr ""
145
145
 
146
- #: application.py:1043
146
+ #: application.py:1047
147
147
  #, python-format
148
148
  msgid "directive %r is already registered, it will be overridden"
149
149
  msgstr ""
150
150
 
151
- #: application.py:1065 application.py:1090
151
+ #: application.py:1069 application.py:1094
152
152
  #, python-format
153
153
  msgid "role %r is already registered, it will be overridden"
154
154
  msgstr ""
155
155
 
156
- #: application.py:1640
156
+ #: application.py:1644
157
157
  #, python-format
158
158
  msgid ""
159
159
  "the %s extension does not declare if it is safe for parallel reading, "
@@ -161,12 +161,12 @@ msgid ""
161
161
  "explicit"
162
162
  msgstr ""
163
163
 
164
- #: application.py:1644
164
+ #: application.py:1648
165
165
  #, python-format
166
166
  msgid "the %s extension is not safe for parallel reading"
167
167
  msgstr ""
168
168
 
169
- #: application.py:1647
169
+ #: application.py:1651
170
170
  #, python-format
171
171
  msgid ""
172
172
  "the %s extension does not declare if it is safe for parallel writing, "
@@ -174,179 +174,179 @@ msgid ""
174
174
  "explicit"
175
175
  msgstr ""
176
176
 
177
- #: application.py:1651
177
+ #: application.py:1655
178
178
  #, python-format
179
179
  msgid "the %s extension is not safe for parallel writing"
180
180
  msgstr ""
181
181
 
182
- #: application.py:1659 application.py:1663
182
+ #: application.py:1663 application.py:1667
183
183
  #, python-format
184
184
  msgid "doing serial %s"
185
185
  msgstr ""
186
186
 
187
- #: roles.py:205
187
+ #: roles.py:208
188
188
  #, python-format
189
189
  msgid "Common Vulnerabilities and Exposures; CVE %s"
190
190
  msgstr ""
191
191
 
192
- #: roles.py:228
192
+ #: roles.py:231
193
193
  #, python-format
194
194
  msgid "invalid CVE number %s"
195
195
  msgstr ""
196
196
 
197
- #: roles.py:249
197
+ #: roles.py:253
198
198
  #, python-format
199
199
  msgid "Common Weakness Enumeration; CWE %s"
200
200
  msgstr ""
201
201
 
202
- #: roles.py:272
202
+ #: roles.py:276
203
203
  #, python-format
204
204
  msgid "invalid CWE number %s"
205
205
  msgstr ""
206
206
 
207
- #: roles.py:293
207
+ #: roles.py:296
208
208
  #, python-format
209
209
  msgid "Python Enhancement Proposals; PEP %s"
210
210
  msgstr ""
211
211
 
212
- #: roles.py:316
212
+ #: roles.py:319
213
213
  #, python-format
214
214
  msgid "invalid PEP number %s"
215
215
  msgstr ""
216
216
 
217
- #: roles.py:354
217
+ #: roles.py:357
218
218
  #, python-format
219
219
  msgid "invalid RFC number %s"
220
220
  msgstr ""
221
221
 
222
- #: registry.py:142
222
+ #: registry.py:144
223
223
  #, python-format
224
224
  msgid "Builder class %s has no \"name\" attribute"
225
225
  msgstr ""
226
226
 
227
- #: registry.py:144
227
+ #: registry.py:146
228
228
  #, python-format
229
229
  msgid "Builder %r already exists (in module %s)"
230
230
  msgstr ""
231
231
 
232
- #: registry.py:157
232
+ #: registry.py:159
233
233
  #, python-format
234
234
  msgid "Builder name %s not registered or available through entry point"
235
235
  msgstr ""
236
236
 
237
- #: registry.py:164
237
+ #: registry.py:166
238
238
  #, python-format
239
239
  msgid "Builder name %s not registered"
240
240
  msgstr ""
241
241
 
242
- #: registry.py:171
242
+ #: registry.py:173
243
243
  #, python-format
244
244
  msgid "domain %s already registered"
245
245
  msgstr ""
246
246
 
247
- #: registry.py:194 registry.py:207 registry.py:218
247
+ #: registry.py:196 registry.py:209 registry.py:220
248
248
  #, python-format
249
249
  msgid "domain %s not yet registered"
250
250
  msgstr ""
251
251
 
252
- #: registry.py:198
252
+ #: registry.py:200
253
253
  #, python-format
254
254
  msgid "The %r directive is already registered to domain %s"
255
255
  msgstr ""
256
256
 
257
- #: registry.py:210
257
+ #: registry.py:212
258
258
  #, python-format
259
259
  msgid "The %r role is already registered to domain %s"
260
260
  msgstr ""
261
261
 
262
- #: registry.py:221
262
+ #: registry.py:223
263
263
  #, python-format
264
264
  msgid "The %r index is already registered to domain %s"
265
265
  msgstr ""
266
266
 
267
- #: registry.py:252
267
+ #: registry.py:254
268
268
  #, python-format
269
269
  msgid "The %r object_type is already registered"
270
270
  msgstr ""
271
271
 
272
- #: registry.py:278
272
+ #: registry.py:280
273
273
  #, python-format
274
274
  msgid "The %r crossref_type is already registered"
275
275
  msgstr ""
276
276
 
277
- #: registry.py:285
277
+ #: registry.py:287
278
278
  #, python-format
279
279
  msgid "source_suffix %r is already registered"
280
280
  msgstr ""
281
281
 
282
- #: registry.py:294
282
+ #: registry.py:296
283
283
  #, python-format
284
284
  msgid "source_parser for %r is already registered"
285
285
  msgstr ""
286
286
 
287
- #: registry.py:302
287
+ #: registry.py:304
288
288
  #, python-format
289
289
  msgid "Source parser for %s not registered"
290
290
  msgstr ""
291
291
 
292
- #: registry.py:318
292
+ #: registry.py:320
293
293
  #, python-format
294
294
  msgid "Translator for %r already exists"
295
295
  msgstr ""
296
296
 
297
- #: registry.py:334
297
+ #: registry.py:336
298
298
  #, python-format
299
299
  msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
300
300
  msgstr ""
301
301
 
302
- #: registry.py:417
302
+ #: registry.py:419
303
303
  #, python-format
304
304
  msgid "enumerable_node %r already registered"
305
305
  msgstr ""
306
306
 
307
- #: registry.py:429
307
+ #: registry.py:431
308
308
  #, python-format
309
309
  msgid "math renderer %s is already registered"
310
310
  msgstr ""
311
311
 
312
- #: registry.py:444
312
+ #: registry.py:446
313
313
  #, python-format
314
314
  msgid ""
315
315
  "the extension %r was already merged with Sphinx since version %s; this "
316
316
  "extension is ignored."
317
317
  msgstr ""
318
318
 
319
- #: registry.py:455
319
+ #: registry.py:457
320
320
  msgid "Original exception:\n"
321
321
  msgstr ""
322
322
 
323
- #: registry.py:456
323
+ #: registry.py:458
324
324
  #, python-format
325
325
  msgid "Could not import extension %s"
326
326
  msgstr ""
327
327
 
328
- #: registry.py:461
328
+ #: registry.py:463
329
329
  #, python-format
330
330
  msgid ""
331
331
  "extension %r has no setup() function; is it really a Sphinx extension "
332
332
  "module?"
333
333
  msgstr ""
334
334
 
335
- #: registry.py:470
335
+ #: registry.py:472
336
336
  #, python-format
337
337
  msgid ""
338
338
  "The %s extension used by this project needs at least Sphinx v%s; it "
339
339
  "therefore cannot be built with this version."
340
340
  msgstr ""
341
341
 
342
- #: registry.py:478
342
+ #: registry.py:480
343
343
  #, python-format
344
344
  msgid ""
345
345
  "extension %r returned an unsupported object from its setup() function; it "
346
346
  "should return None or a metadata dictionary"
347
347
  msgstr ""
348
348
 
349
- #: registry.py:512
349
+ #: registry.py:514
350
350
  #, python-format
351
351
  msgid "`None` is not a valid filetype for %r."
352
352
  msgstr ""
@@ -389,141 +389,141 @@ msgid ""
389
389
  "cannot be built with the loaded version (%s)."
390
390
  msgstr ""
391
391
 
392
- #: theming.py:121
392
+ #: theming.py:114
393
393
  #, python-format
394
394
  msgid ""
395
395
  "Theme configuration sections other than [theme] and [options] are not "
396
396
  "supported (tried to get a value from %r)."
397
397
  msgstr ""
398
398
 
399
- #: theming.py:127
399
+ #: theming.py:120
400
400
  #, python-format
401
401
  msgid "setting %s.%s occurs in none of the searched theme configs"
402
402
  msgstr ""
403
403
 
404
- #: theming.py:142
404
+ #: theming.py:135
405
405
  #, python-format
406
406
  msgid "unsupported theme option %r given"
407
407
  msgstr ""
408
408
 
409
- #: theming.py:215
409
+ #: theming.py:207
410
410
  #, python-format
411
411
  msgid "file %r on theme path is not a valid zipfile or contains no theme"
412
412
  msgstr ""
413
413
 
414
- #: theming.py:236
414
+ #: theming.py:228
415
415
  #, python-format
416
416
  msgid "no theme named %r found (missing theme.toml?)"
417
417
  msgstr ""
418
418
 
419
- #: theming.py:276
419
+ #: theming.py:268
420
420
  #, python-format
421
421
  msgid "The %r theme has circular inheritance"
422
422
  msgstr ""
423
423
 
424
- #: theming.py:283
424
+ #: theming.py:275
425
425
  #, python-format
426
426
  msgid ""
427
427
  "The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
428
428
  "are: %s"
429
429
  msgstr ""
430
430
 
431
- #: theming.py:290
431
+ #: theming.py:282
432
432
  #, python-format
433
433
  msgid "The %r theme has too many ancestors"
434
434
  msgstr ""
435
435
 
436
- #: theming.py:318
436
+ #: theming.py:310
437
437
  #, python-format
438
438
  msgid "no theme configuration file found in %r"
439
439
  msgstr ""
440
440
 
441
- #: theming.py:346 theming.py:399
441
+ #: theming.py:335 theming.py:388
442
442
  #, python-format
443
443
  msgid "theme %r doesn't have the \"theme\" table"
444
444
  msgstr ""
445
445
 
446
- #: theming.py:350
446
+ #: theming.py:339
447
447
  #, python-format
448
448
  msgid "The %r theme \"[theme]\" table is not a table"
449
449
  msgstr ""
450
450
 
451
- #: theming.py:354 theming.py:402
451
+ #: theming.py:343 theming.py:391
452
452
  #, python-format
453
453
  msgid "The %r theme must define the \"theme.inherit\" setting"
454
454
  msgstr ""
455
455
 
456
- #: theming.py:358
456
+ #: theming.py:347
457
457
  #, python-format
458
458
  msgid "The %r theme \"[options]\" table is not a table"
459
459
  msgstr ""
460
460
 
461
- #: theming.py:377
461
+ #: theming.py:366
462
462
  #, python-format
463
463
  msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
464
464
  msgstr ""
465
465
 
466
- #: config.py:314
466
+ #: config.py:309
467
467
  #, python-format
468
468
  msgid "config directory doesn't contain a conf.py file (%s)"
469
469
  msgstr ""
470
470
 
471
- #: config.py:323
471
+ #: config.py:318
472
472
  msgid ""
473
473
  "Invalid configuration value found: 'language = None'. Update your "
474
474
  "configuration to a valid language code. Falling back to 'en' (English)."
475
475
  msgstr ""
476
476
 
477
- #: config.py:346
477
+ #: config.py:341
478
478
  #, python-format
479
479
  msgid ""
480
480
  "cannot override dictionary config setting %r, ignoring (use %r to set "
481
481
  "individual elements)"
482
482
  msgstr ""
483
483
 
484
- #: config.py:355
484
+ #: config.py:350
485
485
  #, python-format
486
486
  msgid "invalid number %r for config value %r, ignoring"
487
487
  msgstr ""
488
488
 
489
- #: config.py:361
489
+ #: config.py:356
490
490
  #, python-format
491
491
  msgid "cannot override config setting %r with unsupported type, ignoring"
492
492
  msgstr ""
493
493
 
494
- #: config.py:382
494
+ #: config.py:377
495
495
  #, python-format
496
496
  msgid "unknown config value %r in override, ignoring"
497
497
  msgstr ""
498
498
 
499
- #: config.py:435
499
+ #: config.py:430
500
500
  #, python-format
501
501
  msgid "No such config value: %r"
502
502
  msgstr ""
503
503
 
504
- #: config.py:458
504
+ #: config.py:453
505
505
  #, python-format
506
506
  msgid "Config value %r already present"
507
507
  msgstr ""
508
508
 
509
- #: config.py:494
509
+ #: config.py:489
510
510
  #, python-format
511
511
  msgid ""
512
512
  "cannot cache unpickable configuration value: %r (because it contains a "
513
513
  "function, class, or module object)"
514
514
  msgstr ""
515
515
 
516
- #: config.py:531
516
+ #: config.py:527
517
517
  #, python-format
518
518
  msgid "There is a syntax error in your configuration file: %s\n"
519
519
  msgstr ""
520
520
 
521
- #: config.py:534
521
+ #: config.py:530
522
522
  msgid ""
523
523
  "The configuration file (or one of the modules it imports) called sys.exit()"
524
524
  msgstr ""
525
525
 
526
- #: config.py:541
526
+ #: config.py:537
527
527
  #, python-format
528
528
  msgid ""
529
529
  "There is a programmable error in your configuration file:\n"
@@ -531,100 +531,100 @@ msgid ""
531
531
  "%s"
532
532
  msgstr ""
533
533
 
534
- #: config.py:564
534
+ #: config.py:560
535
535
  #, python-format
536
536
  msgid "Failed to convert %r to a set or tuple"
537
537
  msgstr ""
538
538
 
539
- #: config.py:585 config.py:590
539
+ #: config.py:581 config.py:586
540
540
  #, python-format
541
541
  msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
542
542
  msgstr ""
543
543
 
544
- #: config.py:593
544
+ #: config.py:589
545
545
  #, python-format
546
546
  msgid ""
547
547
  "The config value `source_suffix' expects a dictionary, a string, or a list "
548
548
  "of strings. Got `%r' instead (type %s)."
549
549
  msgstr ""
550
550
 
551
- #: config.py:612
551
+ #: config.py:608
552
552
  #, python-format
553
553
  msgid "Section %s"
554
554
  msgstr ""
555
555
 
556
- #: config.py:613
556
+ #: config.py:609
557
557
  #, python-format
558
558
  msgid "Fig. %s"
559
559
  msgstr ""
560
560
 
561
- #: config.py:614
561
+ #: config.py:610
562
562
  #, python-format
563
563
  msgid "Table %s"
564
564
  msgstr ""
565
565
 
566
- #: config.py:615
566
+ #: config.py:611
567
567
  #, python-format
568
568
  msgid "Listing %s"
569
569
  msgstr ""
570
570
 
571
- #: config.py:722
571
+ #: config.py:718
572
572
  msgid ""
573
573
  "The config value `{name}` has to be a one of {candidates}, but `{current}` "
574
574
  "is given."
575
575
  msgstr ""
576
576
 
577
- #: config.py:746
577
+ #: config.py:742
578
578
  msgid ""
579
579
  "The config value `{name}' has type `{current.__name__}'; expected "
580
580
  "{permitted}."
581
581
  msgstr ""
582
582
 
583
- #: config.py:759
583
+ #: config.py:755
584
584
  msgid ""
585
585
  "The config value `{name}' has type `{current.__name__}', defaults to "
586
586
  "`{default.__name__}'."
587
587
  msgstr ""
588
588
 
589
- #: config.py:770
589
+ #: config.py:766
590
590
  #, python-format
591
591
  msgid "primary_domain %r not found, ignored."
592
592
  msgstr ""
593
593
 
594
- #: config.py:782
594
+ #: config.py:778
595
595
  msgid ""
596
596
  "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add "
597
597
  "\"root_doc = 'contents'\" to your conf.py."
598
598
  msgstr ""
599
599
 
600
- #: domains/rst.py:127 domains/rst.py:184
600
+ #: domains/rst.py:128 domains/rst.py:185
601
601
  #, python-format
602
602
  msgid "%s (directive)"
603
603
  msgstr ""
604
604
 
605
- #: domains/rst.py:185 domains/rst.py:189
605
+ #: domains/rst.py:186 domains/rst.py:190
606
606
  #, python-format
607
607
  msgid ":%s: (directive option)"
608
608
  msgstr ""
609
609
 
610
- #: domains/rst.py:213
610
+ #: domains/rst.py:214
611
611
  #, python-format
612
612
  msgid "%s (role)"
613
613
  msgstr ""
614
614
 
615
- #: domains/rst.py:223
615
+ #: domains/rst.py:224
616
616
  msgid "directive"
617
617
  msgstr ""
618
618
 
619
- #: domains/rst.py:224
619
+ #: domains/rst.py:225
620
620
  msgid "directive-option"
621
621
  msgstr ""
622
622
 
623
- #: domains/rst.py:225
623
+ #: domains/rst.py:226
624
624
  msgid "role"
625
625
  msgstr ""
626
626
 
627
- #: domains/rst.py:247
627
+ #: domains/rst.py:248
628
628
  #, python-format
629
629
  msgid "duplicate description of %s %s, other instance in %s"
630
630
  msgstr ""
@@ -658,16 +658,16 @@ msgstr ""
658
658
  msgid "Arguments"
659
659
  msgstr ""
660
660
 
661
- #: domains/cpp/__init__.py:442 domains/javascript.py:258
661
+ #: domains/cpp/__init__.py:447 domains/javascript.py:258
662
662
  msgid "Throws"
663
663
  msgstr ""
664
664
 
665
- #: domains/c/__init__.py:304 domains/cpp/__init__.py:453
665
+ #: domains/c/__init__.py:310 domains/cpp/__init__.py:458
666
666
  #: domains/javascript.py:261 domains/python/_object.py:176
667
667
  msgid "Returns"
668
668
  msgstr ""
669
669
 
670
- #: domains/c/__init__.py:306 domains/javascript.py:263
670
+ #: domains/c/__init__.py:312 domains/javascript.py:263
671
671
  #: domains/python/_object.py:178
672
672
  msgid "Return type"
673
673
  msgstr ""
@@ -677,29 +677,29 @@ msgstr ""
677
677
  msgid "%s (module)"
678
678
  msgstr ""
679
679
 
680
- #: domains/c/__init__.py:675 domains/cpp/__init__.py:854
681
- #: domains/javascript.py:371 domains/python/__init__.py:629
680
+ #: domains/c/__init__.py:681 domains/cpp/__init__.py:859
681
+ #: domains/javascript.py:371 domains/python/__init__.py:660
682
682
  msgid "function"
683
683
  msgstr ""
684
684
 
685
- #: domains/javascript.py:372 domains/python/__init__.py:633
685
+ #: domains/javascript.py:372 domains/python/__init__.py:664
686
686
  msgid "method"
687
687
  msgstr ""
688
688
 
689
- #: domains/cpp/__init__.py:852 domains/javascript.py:373
690
- #: domains/python/__init__.py:631
689
+ #: domains/cpp/__init__.py:857 domains/javascript.py:373
690
+ #: domains/python/__init__.py:662
691
691
  msgid "class"
692
692
  msgstr ""
693
693
 
694
- #: domains/javascript.py:374 domains/python/__init__.py:630
694
+ #: domains/javascript.py:374 domains/python/__init__.py:661
695
695
  msgid "data"
696
696
  msgstr ""
697
697
 
698
- #: domains/javascript.py:375 domains/python/__init__.py:636
698
+ #: domains/javascript.py:375 domains/python/__init__.py:667
699
699
  msgid "attribute"
700
700
  msgstr ""
701
701
 
702
- #: domains/javascript.py:376 domains/python/__init__.py:639
702
+ #: domains/javascript.py:376 domains/python/__init__.py:670
703
703
  msgid "module"
704
704
  msgstr ""
705
705
 
@@ -753,15 +753,15 @@ msgstr ""
753
753
  msgid "Invalid math_eqref_format: %r"
754
754
  msgstr ""
755
755
 
756
- #: environment/__init__.py:86
756
+ #: environment/__init__.py:81
757
757
  msgid "new config"
758
758
  msgstr ""
759
759
 
760
- #: environment/__init__.py:87
760
+ #: environment/__init__.py:82
761
761
  msgid "config changed"
762
762
  msgstr ""
763
763
 
764
- #: environment/__init__.py:88
764
+ #: environment/__init__.py:83
765
765
  msgid "extensions changed"
766
766
  msgstr ""
767
767
 
@@ -773,22 +773,22 @@ msgstr ""
773
773
  msgid "source directory has changed"
774
774
  msgstr ""
775
775
 
776
- #: environment/__init__.py:311
776
+ #: environment/__init__.py:313
777
777
  #, python-format
778
778
  msgid "The configuration has changed (1 option: %r)"
779
779
  msgstr ""
780
780
 
781
- #: environment/__init__.py:316
781
+ #: environment/__init__.py:318
782
782
  #, python-format
783
783
  msgid "The configuration has changed (%d options: %s)"
784
784
  msgstr ""
785
785
 
786
- #: environment/__init__.py:322
786
+ #: environment/__init__.py:324
787
787
  #, python-format
788
788
  msgid "The configuration has changed (%d options: %s, ...)"
789
789
  msgstr ""
790
790
 
791
- #: environment/__init__.py:364
791
+ #: environment/__init__.py:366
792
792
  msgid ""
793
793
  "This environment is incompatible with the selected builder, please choose "
794
794
  "another doctree directory."
@@ -799,20 +799,20 @@ msgstr ""
799
799
  msgid "Failed to scan documents in %s: %r"
800
800
  msgstr ""
801
801
 
802
- #: environment/__init__.py:622
802
+ #: environment/__init__.py:626
803
803
  #, python-format
804
804
  msgid "Domain %r is not registered"
805
805
  msgstr ""
806
806
 
807
- #: environment/__init__.py:773
807
+ #: environment/__init__.py:777
808
808
  msgid "document isn't included in any toctree"
809
809
  msgstr ""
810
810
 
811
- #: environment/__init__.py:806
811
+ #: environment/__init__.py:810
812
812
  msgid "self referenced toctree found. Ignored."
813
813
  msgstr ""
814
814
 
815
- #: environment/__init__.py:835
815
+ #: environment/__init__.py:839
816
816
  #, python-format
817
817
  msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
818
818
  msgstr ""
@@ -918,78 +918,78 @@ msgstr ""
918
918
  msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
919
919
  msgstr ""
920
920
 
921
- #: cmd/quickstart.py:213
921
+ #: cmd/quickstart.py:215
922
922
  #, python-format
923
923
  msgid "Welcome to the Sphinx %s quickstart utility."
924
924
  msgstr ""
925
925
 
926
- #: cmd/quickstart.py:217
926
+ #: cmd/quickstart.py:219
927
927
  msgid ""
928
928
  "Please enter values for the following settings (just press Enter to\n"
929
929
  "accept a default value, if one is given in brackets)."
930
930
  msgstr ""
931
931
 
932
- #: cmd/quickstart.py:225
932
+ #: cmd/quickstart.py:227
933
933
  #, python-format
934
934
  msgid "Selected root path: %s"
935
935
  msgstr ""
936
936
 
937
- #: cmd/quickstart.py:228
937
+ #: cmd/quickstart.py:230
938
938
  msgid "Enter the root path for documentation."
939
939
  msgstr ""
940
940
 
941
- #: cmd/quickstart.py:229
941
+ #: cmd/quickstart.py:231
942
942
  msgid "Root path for the documentation"
943
943
  msgstr ""
944
944
 
945
- #: cmd/quickstart.py:237
945
+ #: cmd/quickstart.py:239
946
946
  msgid "Error: an existing conf.py has been found in the selected root path."
947
947
  msgstr ""
948
948
 
949
- #: cmd/quickstart.py:243
949
+ #: cmd/quickstart.py:245
950
950
  msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
951
951
  msgstr ""
952
952
 
953
- #: cmd/quickstart.py:246
953
+ #: cmd/quickstart.py:248
954
954
  msgid "Please enter a new root path (or just Enter to exit)"
955
955
  msgstr ""
956
956
 
957
- #: cmd/quickstart.py:256
957
+ #: cmd/quickstart.py:258
958
958
  msgid ""
959
959
  "You have two options for placing the build directory for Sphinx output.\n"
960
960
  "Either, you use a directory \"_build\" within the root path, or you separate\n"
961
961
  "\"source\" and \"build\" directories within the root path."
962
962
  msgstr ""
963
963
 
964
- #: cmd/quickstart.py:263
964
+ #: cmd/quickstart.py:265
965
965
  msgid "Separate source and build directories (y/n)"
966
966
  msgstr ""
967
967
 
968
- #: cmd/quickstart.py:269
968
+ #: cmd/quickstart.py:271
969
969
  msgid ""
970
970
  "Inside the root directory, two more directories will be created; \"_templates\"\n"
971
971
  "for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
972
972
  "files. You can enter another prefix (such as \".\") to replace the underscore."
973
973
  msgstr ""
974
974
 
975
- #: cmd/quickstart.py:275
975
+ #: cmd/quickstart.py:277
976
976
  msgid "Name prefix for templates and static dir"
977
977
  msgstr ""
978
978
 
979
- #: cmd/quickstart.py:280
979
+ #: cmd/quickstart.py:282
980
980
  msgid ""
981
981
  "The project name will occur in several places in the built documentation."
982
982
  msgstr ""
983
983
 
984
- #: cmd/quickstart.py:284
984
+ #: cmd/quickstart.py:286
985
985
  msgid "Project name"
986
986
  msgstr ""
987
987
 
988
- #: cmd/quickstart.py:286
988
+ #: cmd/quickstart.py:288
989
989
  msgid "Author name(s)"
990
990
  msgstr ""
991
991
 
992
- #: cmd/quickstart.py:291
992
+ #: cmd/quickstart.py:293
993
993
  msgid ""
994
994
  "Sphinx has the notion of a \"version\" and a \"release\" for the\n"
995
995
  "software. Each version can have multiple releases. For example, for\n"
@@ -998,15 +998,15 @@ msgid ""
998
998
  "just set both to the same value."
999
999
  msgstr ""
1000
1000
 
1001
- #: cmd/quickstart.py:299
1001
+ #: cmd/quickstart.py:301
1002
1002
  msgid "Project version"
1003
1003
  msgstr ""
1004
1004
 
1005
- #: cmd/quickstart.py:301
1005
+ #: cmd/quickstart.py:303
1006
1006
  msgid "Project release"
1007
1007
  msgstr ""
1008
1008
 
1009
- #: cmd/quickstart.py:306
1009
+ #: cmd/quickstart.py:308
1010
1010
  msgid ""
1011
1011
  "If the documents are to be written in a language other than English,\n"
1012
1012
  "you can select a language here by its language code. Sphinx will then\n"
@@ -1016,21 +1016,21 @@ msgid ""
1016
1016
  "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
1017
1017
  msgstr ""
1018
1018
 
1019
- #: cmd/quickstart.py:315
1019
+ #: cmd/quickstart.py:317
1020
1020
  msgid "Project language"
1021
1021
  msgstr ""
1022
1022
 
1023
- #: cmd/quickstart.py:322
1023
+ #: cmd/quickstart.py:324
1024
1024
  msgid ""
1025
1025
  "The file name suffix for source files. Commonly, this is either \".txt\"\n"
1026
1026
  "or \".rst\". Only files with this suffix are considered documents."
1027
1027
  msgstr ""
1028
1028
 
1029
- #: cmd/quickstart.py:327
1029
+ #: cmd/quickstart.py:329
1030
1030
  msgid "Source file suffix"
1031
1031
  msgstr ""
1032
1032
 
1033
- #: cmd/quickstart.py:332
1033
+ #: cmd/quickstart.py:334
1034
1034
  msgid ""
1035
1035
  "One document is special in that it is considered the top node of the\n"
1036
1036
  "\"contents tree\", that is, it is the root of the hierarchical structure\n"
@@ -1038,91 +1038,91 @@ msgid ""
1038
1038
  "document is a custom template, you can also set this to another filename."
1039
1039
  msgstr ""
1040
1040
 
1041
- #: cmd/quickstart.py:340
1041
+ #: cmd/quickstart.py:342
1042
1042
  msgid "Name of your master document (without suffix)"
1043
1043
  msgstr ""
1044
1044
 
1045
- #: cmd/quickstart.py:350
1045
+ #: cmd/quickstart.py:352
1046
1046
  #, python-format
1047
1047
  msgid ""
1048
1048
  "Error: the master file %s has already been found in the selected root path."
1049
1049
  msgstr ""
1050
1050
 
1051
- #: cmd/quickstart.py:357
1051
+ #: cmd/quickstart.py:359
1052
1052
  msgid "sphinx-quickstart will not overwrite the existing file."
1053
1053
  msgstr ""
1054
1054
 
1055
- #: cmd/quickstart.py:360
1055
+ #: cmd/quickstart.py:362
1056
1056
  msgid ""
1057
1057
  "Please enter a new file name, or rename the existing file and press Enter"
1058
1058
  msgstr ""
1059
1059
 
1060
- #: cmd/quickstart.py:369
1060
+ #: cmd/quickstart.py:371
1061
1061
  msgid "Indicate which of the following Sphinx extensions should be enabled:"
1062
1062
  msgstr ""
1063
1063
 
1064
- #: cmd/quickstart.py:379
1064
+ #: cmd/quickstart.py:381
1065
1065
  msgid ""
1066
1066
  "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
1067
1067
  "been deselected."
1068
1068
  msgstr ""
1069
1069
 
1070
- #: cmd/quickstart.py:389
1070
+ #: cmd/quickstart.py:391
1071
1071
  msgid ""
1072
1072
  "A Makefile and a Windows command file can be generated for you so that you\n"
1073
1073
  "only have to run e.g. `make html' instead of invoking sphinx-build\n"
1074
1074
  "directly."
1075
1075
  msgstr ""
1076
1076
 
1077
- #: cmd/quickstart.py:395
1077
+ #: cmd/quickstart.py:397
1078
1078
  msgid "Create Makefile? (y/n)"
1079
1079
  msgstr ""
1080
1080
 
1081
- #: cmd/quickstart.py:399
1081
+ #: cmd/quickstart.py:401
1082
1082
  msgid "Create Windows command file? (y/n)"
1083
1083
  msgstr ""
1084
1084
 
1085
- #: cmd/quickstart.py:451 ext/apidoc.py:92
1085
+ #: cmd/quickstart.py:453 ext/apidoc.py:92
1086
1086
  #, python-format
1087
1087
  msgid "Creating file %s."
1088
1088
  msgstr ""
1089
1089
 
1090
- #: cmd/quickstart.py:456 ext/apidoc.py:89
1090
+ #: cmd/quickstart.py:458 ext/apidoc.py:89
1091
1091
  #, python-format
1092
1092
  msgid "File %s already exists, skipping."
1093
1093
  msgstr ""
1094
1094
 
1095
- #: cmd/quickstart.py:499
1095
+ #: cmd/quickstart.py:501
1096
1096
  msgid "Finished: An initial directory structure has been created."
1097
1097
  msgstr ""
1098
1098
 
1099
- #: cmd/quickstart.py:502
1099
+ #: cmd/quickstart.py:504
1100
1100
  #, python-format
1101
1101
  msgid ""
1102
1102
  "You should now populate your master file %s and create other documentation\n"
1103
1103
  "source files. "
1104
1104
  msgstr ""
1105
1105
 
1106
- #: cmd/quickstart.py:510
1106
+ #: cmd/quickstart.py:512
1107
1107
  msgid ""
1108
1108
  "Use the Makefile to build the docs, like so:\n"
1109
1109
  " make builder"
1110
1110
  msgstr ""
1111
1111
 
1112
- #: cmd/quickstart.py:513
1112
+ #: cmd/quickstart.py:515
1113
1113
  #, python-format
1114
1114
  msgid ""
1115
1115
  "Use the sphinx-build command to build the docs, like so:\n"
1116
1116
  " sphinx-build -b builder %s %s"
1117
1117
  msgstr ""
1118
1118
 
1119
- #: cmd/quickstart.py:520
1119
+ #: cmd/quickstart.py:522
1120
1120
  msgid ""
1121
1121
  "where \"builder\" is one of the supported builders, e.g. html, latex or "
1122
1122
  "linkcheck."
1123
1123
  msgstr ""
1124
1124
 
1125
- #: cmd/quickstart.py:555
1125
+ #: cmd/quickstart.py:557
1126
1126
  msgid ""
1127
1127
  "\n"
1128
1128
  "Generate required files for a Sphinx project.\n"
@@ -1132,136 +1132,136 @@ msgid ""
1132
1132
  "Makefile to be used with sphinx-build.\n"
1133
1133
  msgstr ""
1134
1134
 
1135
- #: cmd/build.py:153 cmd/quickstart.py:565 ext/apidoc.py:374
1136
- #: ext/autosummary/generate.py:765
1135
+ #: cmd/build.py:153 cmd/quickstart.py:567 ext/apidoc.py:374
1136
+ #: ext/autosummary/generate.py:766
1137
1137
  msgid "For more information, visit <https://www.sphinx-doc.org/>."
1138
1138
  msgstr ""
1139
1139
 
1140
- #: cmd/quickstart.py:575
1140
+ #: cmd/quickstart.py:577
1141
1141
  msgid "quiet mode"
1142
1142
  msgstr ""
1143
1143
 
1144
- #: cmd/quickstart.py:585
1144
+ #: cmd/quickstart.py:587
1145
1145
  msgid "project root"
1146
1146
  msgstr ""
1147
1147
 
1148
- #: cmd/quickstart.py:588
1148
+ #: cmd/quickstart.py:590
1149
1149
  msgid "Structure options"
1150
1150
  msgstr ""
1151
1151
 
1152
- #: cmd/quickstart.py:594
1152
+ #: cmd/quickstart.py:596
1153
1153
  msgid "if specified, separate source and build dirs"
1154
1154
  msgstr ""
1155
1155
 
1156
- #: cmd/quickstart.py:600
1156
+ #: cmd/quickstart.py:602
1157
1157
  msgid "if specified, create build dir under source dir"
1158
1158
  msgstr ""
1159
1159
 
1160
- #: cmd/quickstart.py:606
1160
+ #: cmd/quickstart.py:608
1161
1161
  msgid "replacement for dot in _templates etc."
1162
1162
  msgstr ""
1163
1163
 
1164
- #: cmd/quickstart.py:609
1164
+ #: cmd/quickstart.py:611
1165
1165
  msgid "Project basic options"
1166
1166
  msgstr ""
1167
1167
 
1168
- #: cmd/quickstart.py:611
1168
+ #: cmd/quickstart.py:613
1169
1169
  msgid "project name"
1170
1170
  msgstr ""
1171
1171
 
1172
- #: cmd/quickstart.py:614
1172
+ #: cmd/quickstart.py:616
1173
1173
  msgid "author names"
1174
1174
  msgstr ""
1175
1175
 
1176
- #: cmd/quickstart.py:621
1176
+ #: cmd/quickstart.py:623
1177
1177
  msgid "version of project"
1178
1178
  msgstr ""
1179
1179
 
1180
- #: cmd/quickstart.py:628
1180
+ #: cmd/quickstart.py:630
1181
1181
  msgid "release of project"
1182
1182
  msgstr ""
1183
1183
 
1184
- #: cmd/quickstart.py:635
1184
+ #: cmd/quickstart.py:637
1185
1185
  msgid "document language"
1186
1186
  msgstr ""
1187
1187
 
1188
- #: cmd/quickstart.py:638
1188
+ #: cmd/quickstart.py:640
1189
1189
  msgid "source file suffix"
1190
1190
  msgstr ""
1191
1191
 
1192
- #: cmd/quickstart.py:641
1192
+ #: cmd/quickstart.py:643
1193
1193
  msgid "master document name"
1194
1194
  msgstr ""
1195
1195
 
1196
- #: cmd/quickstart.py:644
1196
+ #: cmd/quickstart.py:646
1197
1197
  msgid "use epub"
1198
1198
  msgstr ""
1199
1199
 
1200
- #: cmd/quickstart.py:647
1200
+ #: cmd/quickstart.py:649
1201
1201
  msgid "Extension options"
1202
1202
  msgstr ""
1203
1203
 
1204
- #: cmd/quickstart.py:654 ext/apidoc.py:578
1204
+ #: cmd/quickstart.py:656 ext/apidoc.py:578
1205
1205
  #, python-format
1206
1206
  msgid "enable %s extension"
1207
1207
  msgstr ""
1208
1208
 
1209
- #: cmd/quickstart.py:661 ext/apidoc.py:570
1209
+ #: cmd/quickstart.py:663 ext/apidoc.py:570
1210
1210
  msgid "enable arbitrary extensions"
1211
1211
  msgstr ""
1212
1212
 
1213
- #: cmd/quickstart.py:664
1213
+ #: cmd/quickstart.py:666
1214
1214
  msgid "Makefile and Batchfile creation"
1215
1215
  msgstr ""
1216
1216
 
1217
- #: cmd/quickstart.py:670
1217
+ #: cmd/quickstart.py:672
1218
1218
  msgid "create makefile"
1219
1219
  msgstr ""
1220
1220
 
1221
- #: cmd/quickstart.py:676
1221
+ #: cmd/quickstart.py:678
1222
1222
  msgid "do not create makefile"
1223
1223
  msgstr ""
1224
1224
 
1225
- #: cmd/quickstart.py:683
1225
+ #: cmd/quickstart.py:685
1226
1226
  msgid "create batchfile"
1227
1227
  msgstr ""
1228
1228
 
1229
- #: cmd/quickstart.py:689
1229
+ #: cmd/quickstart.py:691
1230
1230
  msgid "do not create batchfile"
1231
1231
  msgstr ""
1232
1232
 
1233
- #: cmd/quickstart.py:698
1233
+ #: cmd/quickstart.py:700
1234
1234
  msgid "use make-mode for Makefile/make.bat"
1235
1235
  msgstr ""
1236
1236
 
1237
- #: cmd/quickstart.py:701 ext/apidoc.py:581
1237
+ #: cmd/quickstart.py:703 ext/apidoc.py:581
1238
1238
  msgid "Project templating"
1239
1239
  msgstr ""
1240
1240
 
1241
- #: cmd/quickstart.py:707 ext/apidoc.py:587
1241
+ #: cmd/quickstart.py:709 ext/apidoc.py:587
1242
1242
  msgid "template directory for template files"
1243
1243
  msgstr ""
1244
1244
 
1245
- #: cmd/quickstart.py:714
1245
+ #: cmd/quickstart.py:716
1246
1246
  msgid "define a template variable"
1247
1247
  msgstr ""
1248
1248
 
1249
- #: cmd/quickstart.py:749
1249
+ #: cmd/quickstart.py:751
1250
1250
  msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
1251
1251
  msgstr ""
1252
1252
 
1253
- #: cmd/quickstart.py:768
1253
+ #: cmd/quickstart.py:770
1254
1254
  msgid ""
1255
1255
  "Error: specified path is not a directory, or sphinx files already exist."
1256
1256
  msgstr ""
1257
1257
 
1258
- #: cmd/quickstart.py:775
1258
+ #: cmd/quickstart.py:777
1259
1259
  msgid ""
1260
1260
  "sphinx-quickstart only generate into a empty directory. Please specify a new"
1261
1261
  " root path."
1262
1262
  msgstr ""
1263
1263
 
1264
- #: cmd/quickstart.py:793
1264
+ #: cmd/quickstart.py:795
1265
1265
  #, python-format
1266
1266
  msgid "Invalid template variable: %s"
1267
1267
  msgstr ""
@@ -1388,88 +1388,88 @@ msgstr ""
1388
1388
  msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
1389
1389
  msgstr ""
1390
1390
 
1391
- #: cmd/build.py:257
1391
+ #: cmd/build.py:255
1392
1392
  msgid "use no configuration file, only use settings from -D options"
1393
1393
  msgstr ""
1394
1394
 
1395
- #: cmd/build.py:266
1395
+ #: cmd/build.py:264
1396
1396
  msgid "override a setting in configuration file"
1397
1397
  msgstr ""
1398
1398
 
1399
- #: cmd/build.py:275
1399
+ #: cmd/build.py:273
1400
1400
  msgid "pass a value into HTML templates"
1401
1401
  msgstr ""
1402
1402
 
1403
- #: cmd/build.py:284
1403
+ #: cmd/build.py:282
1404
1404
  msgid "define tag: include \"only\" blocks with TAG"
1405
1405
  msgstr ""
1406
1406
 
1407
- #: cmd/build.py:291
1407
+ #: cmd/build.py:289
1408
1408
  msgid "nitpicky mode: warn about all missing references"
1409
1409
  msgstr ""
1410
1410
 
1411
- #: cmd/build.py:294
1411
+ #: cmd/build.py:292
1412
1412
  msgid "console output options"
1413
1413
  msgstr ""
1414
1414
 
1415
- #: cmd/build.py:301
1415
+ #: cmd/build.py:299
1416
1416
  msgid "increase verbosity (can be repeated)"
1417
1417
  msgstr ""
1418
1418
 
1419
- #: cmd/build.py:308 ext/apidoc.py:413
1419
+ #: cmd/build.py:306 ext/apidoc.py:413
1420
1420
  msgid "no output on stdout, just warnings on stderr"
1421
1421
  msgstr ""
1422
1422
 
1423
- #: cmd/build.py:315
1423
+ #: cmd/build.py:313
1424
1424
  msgid "no output at all, not even warnings"
1425
1425
  msgstr ""
1426
1426
 
1427
- #: cmd/build.py:323
1427
+ #: cmd/build.py:321
1428
1428
  msgid "do emit colored output (default: auto-detect)"
1429
1429
  msgstr ""
1430
1430
 
1431
- #: cmd/build.py:331
1431
+ #: cmd/build.py:329
1432
1432
  msgid "do not emit colored output (default: auto-detect)"
1433
1433
  msgstr ""
1434
1434
 
1435
- #: cmd/build.py:334
1435
+ #: cmd/build.py:332
1436
1436
  msgid "warning control options"
1437
1437
  msgstr ""
1438
1438
 
1439
- #: cmd/build.py:340
1439
+ #: cmd/build.py:338
1440
1440
  msgid "write warnings (and errors) to given file"
1441
1441
  msgstr ""
1442
1442
 
1443
- #: cmd/build.py:347
1443
+ #: cmd/build.py:345
1444
1444
  msgid "turn warnings into errors"
1445
1445
  msgstr ""
1446
1446
 
1447
- #: cmd/build.py:355
1447
+ #: cmd/build.py:353
1448
1448
  msgid "show full traceback on exception"
1449
1449
  msgstr ""
1450
1450
 
1451
- #: cmd/build.py:358
1451
+ #: cmd/build.py:356
1452
1452
  msgid "run Pdb on exception"
1453
1453
  msgstr ""
1454
1454
 
1455
- #: cmd/build.py:364
1455
+ #: cmd/build.py:362
1456
1456
  msgid "raise an exception on warnings"
1457
1457
  msgstr ""
1458
1458
 
1459
- #: cmd/build.py:407
1459
+ #: cmd/build.py:405
1460
1460
  msgid "cannot combine -a option and filenames"
1461
1461
  msgstr ""
1462
1462
 
1463
- #: cmd/build.py:439
1463
+ #: cmd/build.py:437
1464
1464
  #, python-format
1465
- msgid "cannot open warning file %r: %s"
1465
+ msgid "cannot open warning file '%s': %s"
1466
1466
  msgstr ""
1467
1467
 
1468
- #: cmd/build.py:458
1468
+ #: cmd/build.py:456
1469
1469
  msgid "-D option argument must be in the form name=value"
1470
1470
  msgstr ""
1471
1471
 
1472
- #: cmd/build.py:465
1472
+ #: cmd/build.py:463
1473
1473
  msgid "-A option argument must be in the form name=value"
1474
1474
  msgstr ""
1475
1475
 
@@ -1477,41 +1477,41 @@ msgstr ""
1477
1477
  msgid "The dummy builder generates no files."
1478
1478
  msgstr ""
1479
1479
 
1480
- #: builders/linkcheck.py:60
1480
+ #: builders/linkcheck.py:75
1481
1481
  #, python-format
1482
1482
  msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
1483
1483
  msgstr ""
1484
1484
 
1485
- #: builders/linkcheck.py:137
1485
+ #: builders/linkcheck.py:146
1486
1486
  #, python-format
1487
1487
  msgid "broken link: %s (%s)"
1488
1488
  msgstr ""
1489
1489
 
1490
- #: builders/linkcheck.py:526
1490
+ #: builders/linkcheck.py:540
1491
1491
  #, python-format
1492
1492
  msgid "Anchor '%s' not found"
1493
1493
  msgstr ""
1494
1494
 
1495
- #: builders/linkcheck.py:726
1495
+ #: builders/linkcheck.py:742
1496
1496
  #, python-format
1497
1497
  msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
1498
1498
  msgstr ""
1499
1499
 
1500
- #: builders/singlehtml.py:36
1500
+ #: builders/singlehtml.py:37
1501
1501
  #, python-format
1502
1502
  msgid "The HTML page is in %(outdir)s."
1503
1503
  msgstr ""
1504
1504
 
1505
- #: builders/singlehtml.py:168
1505
+ #: builders/singlehtml.py:173
1506
1506
  msgid "assembling single document"
1507
1507
  msgstr ""
1508
1508
 
1509
- #: builders/latex/__init__.py:349 builders/manpage.py:59
1510
- #: builders/singlehtml.py:173 builders/texinfo.py:120
1509
+ #: builders/latex/__init__.py:346 builders/manpage.py:56
1510
+ #: builders/singlehtml.py:178 builders/texinfo.py:121
1511
1511
  msgid "writing"
1512
1512
  msgstr ""
1513
1513
 
1514
- #: builders/singlehtml.py:186
1514
+ #: builders/singlehtml.py:191
1515
1515
  msgid "writing additional files"
1516
1516
  msgstr ""
1517
1517
 
@@ -1524,7 +1524,7 @@ msgstr ""
1524
1524
  msgid "no \"man_pages\" config value found; no manual pages will be written"
1525
1525
  msgstr ""
1526
1526
 
1527
- #: builders/manpage.py:76
1527
+ #: builders/manpage.py:73
1528
1528
  #, python-format
1529
1529
  msgid "\"man_pages\" config value references unknown document %s"
1530
1530
  msgstr ""
@@ -1534,7 +1534,7 @@ msgstr ""
1534
1534
  msgid "The text files are in %(outdir)s."
1535
1535
  msgstr ""
1536
1536
 
1537
- #: builders/html/__init__.py:1213 builders/text.py:81 builders/xml.py:97
1537
+ #: builders/html/__init__.py:1239 builders/text.py:81 builders/xml.py:97
1538
1538
  #, python-format
1539
1539
  msgid "error writing file %s: %s"
1540
1540
  msgstr ""
@@ -1570,35 +1570,35 @@ msgstr ""
1570
1570
  msgid "\"texinfo_documents\" config value references unknown document %s"
1571
1571
  msgstr ""
1572
1572
 
1573
- #: builders/latex/__init__.py:327 builders/texinfo.py:114
1573
+ #: builders/latex/__init__.py:324 builders/texinfo.py:115
1574
1574
  #, python-format
1575
1575
  msgid "processing %s"
1576
1576
  msgstr ""
1577
1577
 
1578
- #: builders/latex/__init__.py:407 builders/texinfo.py:173
1578
+ #: builders/latex/__init__.py:404 builders/texinfo.py:174
1579
1579
  msgid "resolving references..."
1580
1580
  msgstr ""
1581
1581
 
1582
- #: builders/latex/__init__.py:418 builders/texinfo.py:183
1582
+ #: builders/latex/__init__.py:415 builders/texinfo.py:184
1583
1583
  msgid " (in "
1584
1584
  msgstr ""
1585
1585
 
1586
- #: builders/_epub_base.py:421 builders/html/__init__.py:757
1587
- #: builders/latex/__init__.py:485 builders/texinfo.py:201
1586
+ #: builders/_epub_base.py:423 builders/html/__init__.py:778
1587
+ #: builders/latex/__init__.py:482 builders/texinfo.py:202
1588
1588
  msgid "copying images... "
1589
1589
  msgstr ""
1590
1590
 
1591
- #: builders/_epub_base.py:443 builders/latex/__init__.py:500
1592
- #: builders/texinfo.py:218
1591
+ #: builders/_epub_base.py:445 builders/latex/__init__.py:497
1592
+ #: builders/texinfo.py:219
1593
1593
  #, python-format
1594
1594
  msgid "cannot copy image file %r: %s"
1595
1595
  msgstr ""
1596
1596
 
1597
- #: builders/texinfo.py:225
1597
+ #: builders/texinfo.py:226
1598
1598
  msgid "copying Texinfo support files"
1599
1599
  msgstr ""
1600
1600
 
1601
- #: builders/texinfo.py:233
1601
+ #: builders/texinfo.py:234
1602
1602
  #, python-format
1603
1603
  msgid "error writing file Makefile: %s"
1604
1604
  msgstr ""
@@ -1608,7 +1608,7 @@ msgstr ""
1608
1608
  msgid "The message catalogs are in %(outdir)s."
1609
1609
  msgstr ""
1610
1610
 
1611
- #: builders/__init__.py:371 builders/gettext.py:251
1611
+ #: builders/__init__.py:383 builders/gettext.py:251
1612
1612
  #, python-format
1613
1613
  msgid "building [%s]: "
1614
1614
  msgstr ""
@@ -1626,104 +1626,104 @@ msgstr ""
1626
1626
  msgid "writing message catalogs... "
1627
1627
  msgstr ""
1628
1628
 
1629
- #: builders/__init__.py:200
1629
+ #: builders/__init__.py:212
1630
1630
  #, python-format
1631
1631
  msgid "a suitable image for %s builder not found: %s (%s)"
1632
1632
  msgstr ""
1633
1633
 
1634
- #: builders/__init__.py:208
1634
+ #: builders/__init__.py:220
1635
1635
  #, python-format
1636
1636
  msgid "a suitable image for %s builder not found: %s"
1637
1637
  msgstr ""
1638
1638
 
1639
- #: builders/__init__.py:231
1639
+ #: builders/__init__.py:243
1640
1640
  msgid "building [mo]: "
1641
1641
  msgstr ""
1642
1642
 
1643
- #: builders/__init__.py:234 builders/__init__.py:729 builders/__init__.py:761
1643
+ #: builders/__init__.py:246 builders/__init__.py:741 builders/__init__.py:773
1644
1644
  msgid "writing output... "
1645
1645
  msgstr ""
1646
1646
 
1647
- #: builders/__init__.py:251
1647
+ #: builders/__init__.py:263
1648
1648
  #, python-format
1649
1649
  msgid "all of %d po files"
1650
1650
  msgstr ""
1651
1651
 
1652
- #: builders/__init__.py:273
1652
+ #: builders/__init__.py:285
1653
1653
  #, python-format
1654
1654
  msgid "targets for %d po files that are specified"
1655
1655
  msgstr ""
1656
1656
 
1657
- #: builders/__init__.py:285
1657
+ #: builders/__init__.py:297
1658
1658
  #, python-format
1659
1659
  msgid "targets for %d po files that are out of date"
1660
1660
  msgstr ""
1661
1661
 
1662
- #: builders/__init__.py:295
1662
+ #: builders/__init__.py:307
1663
1663
  msgid "all source files"
1664
1664
  msgstr ""
1665
1665
 
1666
- #: builders/__init__.py:307
1666
+ #: builders/__init__.py:319
1667
1667
  #, python-format
1668
1668
  msgid "file %r given on command line does not exist, "
1669
1669
  msgstr ""
1670
1670
 
1671
- #: builders/__init__.py:313
1671
+ #: builders/__init__.py:325
1672
1672
  #, python-format
1673
1673
  msgid ""
1674
1674
  "file %r given on command line is not under the source directory, ignoring"
1675
1675
  msgstr ""
1676
1676
 
1677
- #: builders/__init__.py:324
1677
+ #: builders/__init__.py:336
1678
1678
  #, python-format
1679
1679
  msgid "file %r given on command line is not a valid document, ignoring"
1680
1680
  msgstr ""
1681
1681
 
1682
- #: builders/__init__.py:339
1682
+ #: builders/__init__.py:351
1683
1683
  #, python-format
1684
1684
  msgid "%d source files given on command line"
1685
1685
  msgstr ""
1686
1686
 
1687
- #: builders/__init__.py:354
1687
+ #: builders/__init__.py:366
1688
1688
  #, python-format
1689
1689
  msgid "targets for %d source files that are out of date"
1690
1690
  msgstr ""
1691
1691
 
1692
- #: builders/__init__.py:382
1692
+ #: builders/__init__.py:394
1693
1693
  msgid "looking for now-outdated files... "
1694
1694
  msgstr ""
1695
1695
 
1696
- #: builders/__init__.py:386
1696
+ #: builders/__init__.py:398
1697
1697
  #, python-format
1698
1698
  msgid "%d found"
1699
1699
  msgstr ""
1700
1700
 
1701
- #: builders/__init__.py:388
1701
+ #: builders/__init__.py:400
1702
1702
  msgid "none found"
1703
1703
  msgstr ""
1704
1704
 
1705
- #: builders/__init__.py:395
1705
+ #: builders/__init__.py:407
1706
1706
  msgid "pickling environment"
1707
1707
  msgstr ""
1708
1708
 
1709
- #: builders/__init__.py:402
1709
+ #: builders/__init__.py:414
1710
1710
  msgid "checking consistency"
1711
1711
  msgstr ""
1712
1712
 
1713
- #: builders/__init__.py:406
1713
+ #: builders/__init__.py:418
1714
1714
  msgid "no targets are out of date."
1715
1715
  msgstr ""
1716
1716
 
1717
- #: builders/__init__.py:446
1717
+ #: builders/__init__.py:458
1718
1718
  msgid "updating environment: "
1719
1719
  msgstr ""
1720
1720
 
1721
- #: builders/__init__.py:471
1721
+ #: builders/__init__.py:483
1722
1722
  #, python-format
1723
1723
  msgid "%s added, %s changed, %s removed"
1724
1724
  msgstr ""
1725
1725
 
1726
- #: builders/__init__.py:507
1726
+ #: builders/__init__.py:519
1727
1727
  #, python-format
1728
1728
  msgid ""
1729
1729
  "Sphinx is unable to load the master document (%s) because it matches a "
@@ -1731,7 +1731,7 @@ msgid ""
1731
1731
  " location."
1732
1732
  msgstr ""
1733
1733
 
1734
- #: builders/__init__.py:516
1734
+ #: builders/__init__.py:528
1735
1735
  #, python-format
1736
1736
  msgid ""
1737
1737
  "Sphinx is unable to load the master document (%s) because it matches an "
@@ -1739,7 +1739,7 @@ msgid ""
1739
1739
  "conf.py."
1740
1740
  msgstr ""
1741
1741
 
1742
- #: builders/__init__.py:527
1742
+ #: builders/__init__.py:539
1743
1743
  #, python-format
1744
1744
  msgid ""
1745
1745
  "Sphinx is unable to load the master document (%s) because it is not included"
@@ -1747,31 +1747,31 @@ msgid ""
1747
1747
  "include_patterns matches the master document."
1748
1748
  msgstr ""
1749
1749
 
1750
- #: builders/__init__.py:534
1750
+ #: builders/__init__.py:546
1751
1751
  #, python-format
1752
1752
  msgid ""
1753
1753
  "Sphinx is unable to load the master document (%s). The master document must "
1754
1754
  "be within the source directory or a subdirectory of it."
1755
1755
  msgstr ""
1756
1756
 
1757
- #: builders/__init__.py:553 builders/__init__.py:569
1757
+ #: builders/__init__.py:565 builders/__init__.py:581
1758
1758
  msgid "reading sources... "
1759
1759
  msgstr ""
1760
1760
 
1761
- #: builders/__init__.py:686
1761
+ #: builders/__init__.py:698
1762
1762
  #, python-format
1763
1763
  msgid "docnames to write: %s"
1764
1764
  msgstr ""
1765
1765
 
1766
- #: builders/__init__.py:699
1766
+ #: builders/__init__.py:711
1767
1767
  msgid "preparing documents"
1768
1768
  msgstr ""
1769
1769
 
1770
- #: builders/__init__.py:702
1770
+ #: builders/__init__.py:714
1771
1771
  msgid "copying assets"
1772
1772
  msgstr ""
1773
1773
 
1774
- #: builders/__init__.py:845
1774
+ #: builders/__init__.py:866
1775
1775
  #, python-format
1776
1776
  msgid "undecodable source characters, replacing with \"?\": %r"
1777
1777
  msgstr ""
@@ -1825,52 +1825,56 @@ msgstr ""
1825
1825
  msgid "conf value \"version\" should not be empty for EPUB3"
1826
1826
  msgstr ""
1827
1827
 
1828
- #: builders/epub3.py:279 builders/html/__init__.py:1262
1828
+ #: builders/epub3.py:279 builders/html/__init__.py:1289
1829
1829
  #, python-format
1830
1830
  msgid "invalid css_file: %r, ignored"
1831
1831
  msgstr ""
1832
1832
 
1833
- #: builders/_epub_base.py:220
1833
+ #: builders/_epub_base.py:222
1834
1834
  #, python-format
1835
1835
  msgid "duplicated ToC entry found: %s"
1836
1836
  msgstr ""
1837
1837
 
1838
- #: builders/_epub_base.py:432
1838
+ #: builders/_epub_base.py:434
1839
1839
  #, python-format
1840
1840
  msgid "cannot read image file %r: copying it instead"
1841
1841
  msgstr ""
1842
1842
 
1843
- #: builders/_epub_base.py:463
1843
+ #: builders/_epub_base.py:465
1844
1844
  #, python-format
1845
1845
  msgid "cannot write image file %r: %s"
1846
1846
  msgstr ""
1847
1847
 
1848
- #: builders/_epub_base.py:475
1848
+ #: builders/_epub_base.py:477
1849
1849
  msgid "Pillow not found - copying image files"
1850
1850
  msgstr ""
1851
1851
 
1852
- #: builders/_epub_base.py:507
1852
+ #: builders/_epub_base.py:512
1853
1853
  msgid "writing mimetype file..."
1854
1854
  msgstr ""
1855
1855
 
1856
- #: builders/_epub_base.py:516
1856
+ #: builders/_epub_base.py:521
1857
1857
  msgid "writing META-INF/container.xml file..."
1858
1858
  msgstr ""
1859
1859
 
1860
- #: builders/_epub_base.py:553
1860
+ #: builders/_epub_base.py:558
1861
1861
  msgid "writing content.opf file..."
1862
1862
  msgstr ""
1863
1863
 
1864
- #: builders/_epub_base.py:585
1864
+ #: builders/_epub_base.py:590
1865
1865
  #, python-format
1866
1866
  msgid "unknown mimetype for %s, ignoring"
1867
1867
  msgstr ""
1868
1868
 
1869
- #: builders/_epub_base.py:756
1869
+ #: builders/_epub_base.py:745
1870
+ msgid "node has an invalid level"
1871
+ msgstr ""
1872
+
1873
+ #: builders/_epub_base.py:764
1870
1874
  msgid "writing toc.ncx file..."
1871
1875
  msgstr ""
1872
1876
 
1873
- #: builders/_epub_base.py:785
1877
+ #: builders/_epub_base.py:793
1874
1878
  #, python-format
1875
1879
  msgid "writing %s file..."
1876
1880
  msgstr ""
@@ -1889,19 +1893,19 @@ msgstr ""
1889
1893
  msgid "writing summary file..."
1890
1894
  msgstr ""
1891
1895
 
1892
- #: builders/changes.py:77
1896
+ #: builders/changes.py:74
1893
1897
  msgid "Builtins"
1894
1898
  msgstr ""
1895
1899
 
1896
- #: builders/changes.py:79
1900
+ #: builders/changes.py:76
1897
1901
  msgid "Module level"
1898
1902
  msgstr ""
1899
1903
 
1900
- #: builders/changes.py:131
1904
+ #: builders/changes.py:128
1901
1905
  msgid "copying source files..."
1902
1906
  msgstr ""
1903
1907
 
1904
- #: builders/changes.py:140
1908
+ #: builders/changes.py:137
1905
1909
  #, python-format
1906
1910
  msgid "could not read %r for changelog creation"
1907
1911
  msgstr ""
@@ -1941,14 +1945,14 @@ msgstr ""
1941
1945
  msgid "exception while evaluating only directive expression: %s"
1942
1946
  msgstr ""
1943
1947
 
1944
- #: util/fileutil.py:76
1948
+ #: util/fileutil.py:74
1945
1949
  #, python-format
1946
1950
  msgid ""
1947
1951
  "Aborted attempted copy from rendered template %s to %s (the destination path"
1948
1952
  " has existing data)."
1949
1953
  msgstr ""
1950
1954
 
1951
- #: util/fileutil.py:91
1955
+ #: util/fileutil.py:89
1952
1956
  #, python-format
1953
1957
  msgid "Writing evaluated template result to %s"
1954
1958
  msgstr ""
@@ -1963,40 +1967,40 @@ msgstr ""
1963
1967
  msgid "inventory <%s> contains multiple definitions for %s"
1964
1968
  msgstr ""
1965
1969
 
1966
- #: util/docutils.py:283
1970
+ #: util/docutils.py:284
1967
1971
  #, python-format
1968
1972
  msgid "unknown directive or role name: %s:%s"
1969
1973
  msgstr ""
1970
1974
 
1971
- #: util/docutils.py:746
1975
+ #: util/docutils.py:747
1972
1976
  #, python-format
1973
1977
  msgid "unknown node type: %r"
1974
1978
  msgstr ""
1975
1979
 
1976
- #: util/display.py:83
1980
+ #: util/display.py:81
1977
1981
  msgid "skipped"
1978
1982
  msgstr ""
1979
1983
 
1980
- #: util/display.py:88
1984
+ #: util/display.py:86
1981
1985
  msgid "failed"
1982
1986
  msgstr ""
1983
1987
 
1984
- #: util/i18n.py:105
1988
+ #: util/i18n.py:103
1985
1989
  #, python-format
1986
1990
  msgid "reading error: %s, %s"
1987
1991
  msgstr ""
1988
1992
 
1989
- #: util/i18n.py:112
1993
+ #: util/i18n.py:110
1990
1994
  #, python-format
1991
1995
  msgid "writing error: %s, %s"
1992
1996
  msgstr ""
1993
1997
 
1994
- #: util/i18n.py:141
1998
+ #: util/i18n.py:138
1995
1999
  #, python-format
1996
2000
  msgid "locale_dir %s does not exist"
1997
2001
  msgstr ""
1998
2002
 
1999
- #: util/i18n.py:236
2003
+ #: util/i18n.py:230
2000
2004
  #, python-format
2001
2005
  msgid ""
2002
2006
  "Invalid date format. Quote the string by single quote if you want to output "
@@ -2009,47 +2013,47 @@ msgid ""
2009
2013
  " a relative path from source directory. Please update your document."
2010
2014
  msgstr ""
2011
2015
 
2012
- #: directives/code.py:63
2016
+ #: directives/code.py:66
2013
2017
  msgid "non-whitespace stripped by dedent"
2014
2018
  msgstr ""
2015
2019
 
2016
- #: directives/code.py:84
2020
+ #: directives/code.py:87
2017
2021
  #, python-format
2018
2022
  msgid "Invalid caption: %s"
2019
2023
  msgstr ""
2020
2024
 
2021
- #: directives/code.py:129 directives/code.py:291 directives/code.py:478
2025
+ #: directives/code.py:132 directives/code.py:297 directives/code.py:484
2022
2026
  #, python-format
2023
2027
  msgid "line number spec is out of range(1-%d): %r"
2024
2028
  msgstr ""
2025
2029
 
2026
- #: directives/code.py:211
2030
+ #: directives/code.py:216
2027
2031
  #, python-format
2028
2032
  msgid "Cannot use both \"%s\" and \"%s\" options"
2029
2033
  msgstr ""
2030
2034
 
2031
- #: directives/code.py:225
2035
+ #: directives/code.py:231
2032
2036
  #, python-format
2033
- msgid "Include file %r not found or reading it failed"
2037
+ msgid "Include file '%s' not found or reading it failed"
2034
2038
  msgstr ""
2035
2039
 
2036
- #: directives/code.py:228
2040
+ #: directives/code.py:234
2037
2041
  #, python-format
2038
2042
  msgid ""
2039
- "Encoding %r used for reading included file %r seems to be wrong, try giving "
2040
- "an :encoding: option"
2043
+ "Encoding %r used for reading included file '%s' seems to be wrong, try "
2044
+ "giving an :encoding: option"
2041
2045
  msgstr ""
2042
2046
 
2043
- #: directives/code.py:270
2047
+ #: directives/code.py:276
2044
2048
  #, python-format
2045
2049
  msgid "Object named %r not found in include file %r"
2046
2050
  msgstr ""
2047
2051
 
2048
- #: directives/code.py:303
2052
+ #: directives/code.py:309
2049
2053
  msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
2050
2054
  msgstr ""
2051
2055
 
2052
- #: directives/code.py:308
2056
+ #: directives/code.py:314
2053
2057
  #, python-format
2054
2058
  msgid "Line spec %r: no lines pulled from include file %r"
2055
2059
  msgstr ""
@@ -2164,8 +2168,8 @@ msgstr ""
2164
2168
  msgid "See 'sphinx --help'.\n"
2165
2169
  msgstr ""
2166
2170
 
2167
- #: builders/html/__init__.py:478 builders/latex/__init__.py:201
2168
- #: transforms/__init__.py:133 writers/manpage.py:101 writers/texinfo.py:218
2171
+ #: builders/html/__init__.py:486 builders/latex/__init__.py:198
2172
+ #: transforms/__init__.py:133 writers/manpage.py:102 writers/texinfo.py:219
2169
2173
  #, python-format
2170
2174
  msgid "%b %d, %Y"
2171
2175
  msgstr ""
@@ -2197,31 +2201,31 @@ msgstr ""
2197
2201
  msgid "Footnote [#] is not referenced."
2198
2202
  msgstr ""
2199
2203
 
2200
- #: transforms/i18n.py:229 transforms/i18n.py:304
2204
+ #: transforms/i18n.py:228 transforms/i18n.py:303
2201
2205
  msgid ""
2202
2206
  "inconsistent footnote references in translated message. original: {0}, "
2203
2207
  "translated: {1}"
2204
2208
  msgstr ""
2205
2209
 
2206
- #: transforms/i18n.py:274
2210
+ #: transforms/i18n.py:273
2207
2211
  msgid ""
2208
2212
  "inconsistent references in translated message. original: {0}, translated: "
2209
2213
  "{1}"
2210
2214
  msgstr ""
2211
2215
 
2212
- #: transforms/i18n.py:324
2216
+ #: transforms/i18n.py:323
2213
2217
  msgid ""
2214
2218
  "inconsistent citation references in translated message. original: {0}, "
2215
2219
  "translated: {1}"
2216
2220
  msgstr ""
2217
2221
 
2218
- #: transforms/i18n.py:346
2222
+ #: transforms/i18n.py:345
2219
2223
  msgid ""
2220
2224
  "inconsistent term references in translated message. original: {0}, "
2221
2225
  "translated: {1}"
2222
2226
  msgstr ""
2223
2227
 
2224
- #: ext/linkcode.py:75 ext/viewcode.py:200
2228
+ #: ext/linkcode.py:75 ext/viewcode.py:201
2225
2229
  msgid "[source]"
2226
2230
  msgstr ""
2227
2231
 
@@ -2248,28 +2252,28 @@ msgstr ""
2248
2252
  msgid "convert command %r cannot be run, check the image_converter setting"
2249
2253
  msgstr ""
2250
2254
 
2251
- #: ext/viewcode.py:257
2255
+ #: ext/viewcode.py:258
2252
2256
  msgid "highlighting module code... "
2253
2257
  msgstr ""
2254
2258
 
2255
- #: ext/viewcode.py:285
2259
+ #: ext/viewcode.py:286
2256
2260
  msgid "[docs]"
2257
2261
  msgstr ""
2258
2262
 
2259
- #: ext/viewcode.py:305
2263
+ #: ext/viewcode.py:306
2260
2264
  msgid "Module code"
2261
2265
  msgstr ""
2262
2266
 
2263
- #: ext/viewcode.py:311
2267
+ #: ext/viewcode.py:312
2264
2268
  #, python-format
2265
2269
  msgid "<h1>Source code for %s</h1>"
2266
2270
  msgstr ""
2267
2271
 
2268
- #: ext/viewcode.py:337
2272
+ #: ext/viewcode.py:338
2269
2273
  msgid "Overview: module code"
2270
2274
  msgstr ""
2271
2275
 
2272
- #: ext/viewcode.py:338
2276
+ #: ext/viewcode.py:339
2273
2277
  msgid "<h1>All modules for which code is available</h1>"
2274
2278
  msgstr ""
2275
2279
 
@@ -2544,7 +2548,7 @@ msgstr ""
2544
2548
  msgid "file suffix (default: rst)"
2545
2549
  msgstr ""
2546
2550
 
2547
- #: ext/apidoc.py:515 ext/autosummary/generate.py:838
2551
+ #: ext/apidoc.py:515 ext/autosummary/generate.py:839
2548
2552
  msgid "Remove existing files in the output directory that were not generated"
2549
2553
  msgstr ""
2550
2554
 
@@ -2581,7 +2585,7 @@ msgstr ""
2581
2585
  msgid "%s is not a directory."
2582
2586
  msgstr ""
2583
2587
 
2584
- #: ext/apidoc.py:710 ext/autosummary/generate.py:874
2588
+ #: ext/apidoc.py:710 ext/autosummary/generate.py:875
2585
2589
  #, python-format
2586
2590
  msgid "Failed to remove %s: %s"
2587
2591
  msgstr ""
@@ -2591,7 +2595,7 @@ msgstr ""
2591
2595
  msgid "section \"%s\" gets labeled as \"%s\""
2592
2596
  msgstr ""
2593
2597
 
2594
- #: domains/std/__init__.py:702 domains/std/__init__.py:808
2598
+ #: domains/std/__init__.py:703 domains/std/__init__.py:812
2595
2599
  #: ext/autosectionlabel.py:52
2596
2600
  #, python-format
2597
2601
  msgid "duplicate label %s, other instance in %s"
@@ -2626,16 +2630,16 @@ msgstr ""
2626
2630
  msgid "inline latex %r: %s"
2627
2631
  msgstr ""
2628
2632
 
2629
- #: writers/latex.py:1093 writers/manpage.py:262 writers/texinfo.py:660
2633
+ #: writers/latex.py:1090 writers/manpage.py:263 writers/texinfo.py:662
2630
2634
  msgid "Footnotes"
2631
2635
  msgstr ""
2632
2636
 
2633
- #: writers/manpage.py:308 writers/text.py:935
2637
+ #: writers/manpage.py:309 writers/text.py:936
2634
2638
  #, python-format
2635
2639
  msgid "[image: %s]"
2636
2640
  msgstr ""
2637
2641
 
2638
- #: writers/manpage.py:309 writers/text.py:936
2642
+ #: writers/manpage.py:310 writers/text.py:937
2639
2643
  msgid "[image]"
2640
2644
  msgstr ""
2641
2645
 
@@ -2665,7 +2669,7 @@ msgstr ""
2665
2669
  msgid "Link to this table"
2666
2670
  msgstr ""
2667
2671
 
2668
- #: writers/html5.py:549 writers/latex.py:1102
2672
+ #: writers/html5.py:549 writers/latex.py:1099
2669
2673
  #, python-format
2670
2674
  msgid "unsupported rubric heading level: %s"
2671
2675
  msgstr ""
@@ -2682,63 +2686,63 @@ msgstr ""
2682
2686
  msgid "Link to this toctree"
2683
2687
  msgstr ""
2684
2688
 
2685
- #: writers/html5.py:759
2689
+ #: writers/html5.py:758
2686
2690
  msgid "Could not obtain image size. :scale: option is ignored."
2687
2691
  msgstr ""
2688
2692
 
2689
- #: builders/latex/__init__.py:208 domains/std/__init__.py:645
2690
- #: domains/std/__init__.py:657 templates/latex/latex.tex.jinja:106
2693
+ #: builders/latex/__init__.py:205 domains/std/__init__.py:646
2694
+ #: domains/std/__init__.py:658 templates/latex/latex.tex.jinja:106
2691
2695
  #: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
2692
2696
  #: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
2693
2697
  #: themes/basic/genindex.html:3 themes/basic/genindex.html:26
2694
2698
  #: themes/basic/genindex.html:59 themes/basic/layout.html:127
2695
- #: writers/texinfo.py:511
2699
+ #: writers/texinfo.py:513
2696
2700
  msgid "Index"
2697
2701
  msgstr ""
2698
2702
 
2699
- #: writers/latex.py:746 writers/texinfo.py:642
2703
+ #: writers/latex.py:743 writers/texinfo.py:644
2700
2704
  msgid ""
2701
2705
  "encountered title node not in section, topic, table, admonition or sidebar"
2702
2706
  msgstr ""
2703
2707
 
2704
- #: writers/texinfo.py:1214
2708
+ #: writers/texinfo.py:1216
2705
2709
  msgid "caption not inside a figure."
2706
2710
  msgstr ""
2707
2711
 
2708
- #: writers/texinfo.py:1300
2712
+ #: writers/texinfo.py:1302
2709
2713
  #, python-format
2710
2714
  msgid "unimplemented node type: %r"
2711
2715
  msgstr ""
2712
2716
 
2713
- #: writers/latex.py:364
2717
+ #: writers/latex.py:360
2714
2718
  #, python-format
2715
2719
  msgid "unknown %r toplevel_sectioning for class %r"
2716
2720
  msgstr ""
2717
2721
 
2718
- #: builders/latex/__init__.py:226 writers/latex.py:414
2722
+ #: builders/latex/__init__.py:223 writers/latex.py:410
2719
2723
  #, python-format
2720
2724
  msgid "no Babel option known for language %r"
2721
2725
  msgstr ""
2722
2726
 
2723
- #: writers/latex.py:432
2727
+ #: writers/latex.py:428
2724
2728
  msgid "too large :maxdepth:, ignored."
2725
2729
  msgstr ""
2726
2730
 
2727
- #: writers/latex.py:593
2731
+ #: writers/latex.py:590
2728
2732
  #, python-format
2729
2733
  msgid "template %s not found; loading from legacy %s instead"
2730
2734
  msgstr ""
2731
2735
 
2732
- #: writers/latex.py:711
2736
+ #: writers/latex.py:708
2733
2737
  msgid "document title is not a single Text node"
2734
2738
  msgstr ""
2735
2739
 
2736
- #: writers/latex.py:1178
2740
+ #: writers/latex.py:1175
2737
2741
  msgid ""
2738
2742
  "both tabularcolumns and :widths: option are given. :widths: is ignored."
2739
2743
  msgstr ""
2740
2744
 
2741
- #: writers/latex.py:1575
2745
+ #: writers/latex.py:1573
2742
2746
  #, python-format
2743
2747
  msgid "dimension unit %s is invalid. Ignored."
2744
2748
  msgstr ""
@@ -2748,120 +2752,120 @@ msgstr ""
2748
2752
  msgid "unknown index entry type %s found"
2749
2753
  msgstr ""
2750
2754
 
2751
- #: domains/std/__init__.py:86 domains/std/__init__.py:103
2755
+ #: domains/std/__init__.py:87 domains/std/__init__.py:104
2752
2756
  #, python-format
2753
2757
  msgid "environment variable; %s"
2754
2758
  msgstr ""
2755
2759
 
2756
- #: domains/std/__init__.py:111
2760
+ #: domains/std/__init__.py:112
2757
2761
  #, python-format
2758
2762
  msgid "%s; configuration value"
2759
2763
  msgstr ""
2760
2764
 
2761
- #: domains/std/__init__.py:165
2765
+ #: domains/std/__init__.py:166
2762
2766
  msgid "Type"
2763
2767
  msgstr ""
2764
2768
 
2765
- #: domains/std/__init__.py:175
2769
+ #: domains/std/__init__.py:176
2766
2770
  msgid "Default"
2767
2771
  msgstr ""
2768
2772
 
2769
- #: domains/std/__init__.py:234
2773
+ #: domains/std/__init__.py:235
2770
2774
  #, python-format
2771
2775
  msgid ""
2772
2776
  "Malformed option description %r, should look like \"opt\", \"-opt args\", \""
2773
2777
  "--opt args\", \"/opt args\" or \"+opt args\""
2774
2778
  msgstr ""
2775
2779
 
2776
- #: domains/std/__init__.py:305
2780
+ #: domains/std/__init__.py:306
2777
2781
  #, python-format
2778
2782
  msgid "%s command line option"
2779
2783
  msgstr ""
2780
2784
 
2781
- #: domains/std/__init__.py:307
2785
+ #: domains/std/__init__.py:308
2782
2786
  msgid "command line option"
2783
2787
  msgstr ""
2784
2788
 
2785
- #: domains/std/__init__.py:429
2789
+ #: domains/std/__init__.py:430
2786
2790
  msgid "glossary term must be preceded by empty line"
2787
2791
  msgstr ""
2788
2792
 
2789
- #: domains/std/__init__.py:437
2793
+ #: domains/std/__init__.py:438
2790
2794
  msgid "glossary terms must not be separated by empty lines"
2791
2795
  msgstr ""
2792
2796
 
2793
- #: domains/std/__init__.py:443 domains/std/__init__.py:456
2797
+ #: domains/std/__init__.py:444 domains/std/__init__.py:457
2794
2798
  msgid "glossary seems to be misformatted, check indentation"
2795
2799
  msgstr ""
2796
2800
 
2797
- #: domains/std/__init__.py:601
2801
+ #: domains/std/__init__.py:602
2798
2802
  msgid "glossary term"
2799
2803
  msgstr ""
2800
2804
 
2801
- #: domains/std/__init__.py:602
2805
+ #: domains/std/__init__.py:603
2802
2806
  msgid "grammar token"
2803
2807
  msgstr ""
2804
2808
 
2805
- #: domains/std/__init__.py:603
2809
+ #: domains/std/__init__.py:604
2806
2810
  msgid "reference label"
2807
2811
  msgstr ""
2808
2812
 
2809
- #: domains/std/__init__.py:606
2813
+ #: domains/std/__init__.py:607
2810
2814
  msgid "environment variable"
2811
2815
  msgstr ""
2812
2816
 
2813
- #: domains/std/__init__.py:607
2817
+ #: domains/std/__init__.py:608
2814
2818
  msgid "program option"
2815
2819
  msgstr ""
2816
2820
 
2817
- #: domains/std/__init__.py:608
2821
+ #: domains/std/__init__.py:609
2818
2822
  msgid "document"
2819
2823
  msgstr ""
2820
2824
 
2821
- #: domains/std/__init__.py:646 domains/std/__init__.py:658
2825
+ #: domains/std/__init__.py:647 domains/std/__init__.py:659
2822
2826
  msgid "Module Index"
2823
2827
  msgstr ""
2824
2828
 
2825
- #: domains/std/__init__.py:647 domains/std/__init__.py:659
2829
+ #: domains/std/__init__.py:648 domains/std/__init__.py:660
2826
2830
  #: themes/basic/defindex.html:18
2827
2831
  msgid "Search Page"
2828
2832
  msgstr ""
2829
2833
 
2830
- #: domains/std/__init__.py:721
2834
+ #: domains/std/__init__.py:722
2831
2835
  #, python-format
2832
2836
  msgid "duplicate %s description of %s, other instance in %s"
2833
2837
  msgstr ""
2834
2838
 
2835
- #: domains/std/__init__.py:926
2839
+ #: domains/std/__init__.py:932
2836
2840
  msgid "numfig is disabled. :numref: is ignored."
2837
2841
  msgstr ""
2838
2842
 
2839
- #: domains/std/__init__.py:934
2843
+ #: domains/std/__init__.py:940
2840
2844
  #, python-format
2841
2845
  msgid "Failed to create a cross reference. Any number is not assigned: %s"
2842
2846
  msgstr ""
2843
2847
 
2844
- #: domains/std/__init__.py:946
2848
+ #: domains/std/__init__.py:952
2845
2849
  #, python-format
2846
2850
  msgid "the link has no caption: %s"
2847
2851
  msgstr ""
2848
2852
 
2849
- #: domains/std/__init__.py:960
2853
+ #: domains/std/__init__.py:966
2850
2854
  #, python-format
2851
2855
  msgid "invalid numfig_format: %s (%r)"
2852
2856
  msgstr ""
2853
2857
 
2854
- #: domains/std/__init__.py:963
2858
+ #: domains/std/__init__.py:969
2855
2859
  #, python-format
2856
2860
  msgid "invalid numfig_format: %s"
2857
2861
  msgstr ""
2858
2862
 
2859
- #: domains/std/__init__.py:1194
2863
+ #: domains/std/__init__.py:1200
2860
2864
  #, python-format
2861
2865
  msgid "undefined label: %r"
2862
2866
  msgstr ""
2863
2867
 
2864
- #: domains/std/__init__.py:1196
2868
+ #: domains/std/__init__.py:1202
2865
2869
  #, python-format
2866
2870
  msgid "Failed to create a cross reference. A title or caption not found: %r"
2867
2871
  msgstr ""
@@ -2912,55 +2916,55 @@ msgstr ""
2912
2916
  msgid "%s (type alias in %s)"
2913
2917
  msgstr ""
2914
2918
 
2915
- #: domains/python/__init__.py:557
2919
+ #: domains/python/__init__.py:559
2916
2920
  msgid "Python Module Index"
2917
2921
  msgstr ""
2918
2922
 
2919
- #: domains/python/__init__.py:558
2923
+ #: domains/python/__init__.py:560
2920
2924
  msgid "modules"
2921
2925
  msgstr ""
2922
2926
 
2923
- #: domains/python/__init__.py:607
2927
+ #: domains/python/__init__.py:637
2924
2928
  msgid "Deprecated"
2925
2929
  msgstr ""
2926
2930
 
2927
- #: domains/python/__init__.py:632
2931
+ #: domains/python/__init__.py:663
2928
2932
  msgid "exception"
2929
2933
  msgstr ""
2930
2934
 
2931
- #: domains/python/__init__.py:634
2935
+ #: domains/python/__init__.py:665
2932
2936
  msgid "class method"
2933
2937
  msgstr ""
2934
2938
 
2935
- #: domains/python/__init__.py:635
2939
+ #: domains/python/__init__.py:666
2936
2940
  msgid "static method"
2937
2941
  msgstr ""
2938
2942
 
2939
- #: domains/python/__init__.py:637
2943
+ #: domains/python/__init__.py:668
2940
2944
  msgid "property"
2941
2945
  msgstr ""
2942
2946
 
2943
- #: domains/python/__init__.py:638
2947
+ #: domains/python/__init__.py:669
2944
2948
  msgid "type alias"
2945
2949
  msgstr ""
2946
2950
 
2947
- #: domains/python/__init__.py:698
2951
+ #: domains/python/__init__.py:729
2948
2952
  #, python-format
2949
2953
  msgid ""
2950
2954
  "duplicate object description of %s, other instance in %s, use :no-index: for"
2951
2955
  " one of them"
2952
2956
  msgstr ""
2953
2957
 
2954
- #: domains/python/__init__.py:817
2958
+ #: domains/python/__init__.py:858
2955
2959
  #, python-format
2956
2960
  msgid "more than one target found for cross-reference %r: %s"
2957
2961
  msgstr ""
2958
2962
 
2959
- #: domains/python/__init__.py:878
2963
+ #: domains/python/__init__.py:920
2960
2964
  msgid " (deprecated)"
2961
2965
  msgstr ""
2962
2966
 
2963
- #: domains/c/__init__.py:298 domains/cpp/__init__.py:436
2967
+ #: domains/c/__init__.py:304 domains/cpp/__init__.py:441
2964
2968
  #: domains/python/_object.py:164 ext/napoleon/docstring.py:786
2965
2969
  msgid "Parameters"
2966
2970
  msgstr ""
@@ -2985,43 +2989,43 @@ msgid ""
2985
2989
  "Declaration is '.. c:%s:: %s'."
2986
2990
  msgstr ""
2987
2991
 
2988
- #: domains/c/__init__.py:301 domains/cpp/__init__.py:449
2992
+ #: domains/c/__init__.py:307 domains/cpp/__init__.py:454
2989
2993
  msgid "Return values"
2990
2994
  msgstr ""
2991
2995
 
2992
- #: domains/c/__init__.py:673 domains/cpp/__init__.py:855
2996
+ #: domains/c/__init__.py:679 domains/cpp/__init__.py:860
2993
2997
  msgid "member"
2994
2998
  msgstr ""
2995
2999
 
2996
- #: domains/c/__init__.py:674
3000
+ #: domains/c/__init__.py:680
2997
3001
  msgid "variable"
2998
3002
  msgstr ""
2999
3003
 
3000
- #: domains/c/__init__.py:676
3004
+ #: domains/c/__init__.py:682
3001
3005
  msgid "macro"
3002
3006
  msgstr ""
3003
3007
 
3004
- #: domains/c/__init__.py:677
3008
+ #: domains/c/__init__.py:683
3005
3009
  msgid "struct"
3006
3010
  msgstr ""
3007
3011
 
3008
- #: domains/c/__init__.py:678 domains/cpp/__init__.py:853
3012
+ #: domains/c/__init__.py:684 domains/cpp/__init__.py:858
3009
3013
  msgid "union"
3010
3014
  msgstr ""
3011
3015
 
3012
- #: domains/c/__init__.py:679 domains/cpp/__init__.py:858
3016
+ #: domains/c/__init__.py:685 domains/cpp/__init__.py:863
3013
3017
  msgid "enum"
3014
3018
  msgstr ""
3015
3019
 
3016
- #: domains/c/__init__.py:680 domains/cpp/__init__.py:859
3020
+ #: domains/c/__init__.py:686 domains/cpp/__init__.py:864
3017
3021
  msgid "enumerator"
3018
3022
  msgstr ""
3019
3023
 
3020
- #: domains/c/__init__.py:681 domains/cpp/__init__.py:856
3024
+ #: domains/c/__init__.py:687 domains/cpp/__init__.py:861
3021
3025
  msgid "type"
3022
3026
  msgstr ""
3023
3027
 
3024
- #: domains/c/__init__.py:683 domains/cpp/__init__.py:861
3028
+ #: domains/c/__init__.py:689 domains/cpp/__init__.py:866
3025
3029
  msgid "function parameter"
3026
3030
  msgstr ""
3027
3031
 
@@ -3041,11 +3045,11 @@ msgid ""
3041
3045
  "Declaration is '.. cpp:%s:: %s'."
3042
3046
  msgstr ""
3043
3047
 
3044
- #: domains/cpp/__init__.py:857
3048
+ #: domains/cpp/__init__.py:862
3045
3049
  msgid "concept"
3046
3050
  msgstr ""
3047
3051
 
3048
- #: domains/cpp/__init__.py:862
3052
+ #: domains/cpp/__init__.py:867
3049
3053
  msgid "template parameter"
3050
3054
  msgstr ""
3051
3055
 
@@ -3178,7 +3182,7 @@ msgstr ""
3178
3182
  msgid "quick access to all modules"
3179
3183
  msgstr ""
3180
3184
 
3181
- #: builders/html/__init__.py:499 themes/basic/defindex.html:23
3185
+ #: builders/html/__init__.py:507 themes/basic/defindex.html:23
3182
3186
  msgid "General Index"
3183
3187
  msgstr ""
3184
3188
 
@@ -3288,17 +3292,17 @@ msgstr ""
3288
3292
  msgid ", in "
3289
3293
  msgstr ""
3290
3294
 
3291
- #: environment/collectors/asset.py:95
3295
+ #: environment/collectors/asset.py:96
3292
3296
  #, python-format
3293
3297
  msgid "image file not readable: %s"
3294
3298
  msgstr ""
3295
3299
 
3296
- #: environment/collectors/asset.py:123
3300
+ #: environment/collectors/asset.py:124
3297
3301
  #, python-format
3298
3302
  msgid "image file %s not readable: %s"
3299
3303
  msgstr ""
3300
3304
 
3301
- #: environment/collectors/asset.py:160
3305
+ #: environment/collectors/asset.py:161
3302
3306
  #, python-format
3303
3307
  msgid "download file not readable: %s"
3304
3308
  msgstr ""
@@ -3340,7 +3344,7 @@ msgstr ""
3340
3344
  msgid "unknown index entry type %r"
3341
3345
  msgstr ""
3342
3346
 
3343
- #: environment/adapters/indexentries.py:273
3347
+ #: environment/adapters/indexentries.py:270
3344
3348
  #: templates/latex/sphinxmessages.sty.jinja:11
3345
3349
  msgid "Symbols"
3346
3350
  msgstr ""
@@ -3362,190 +3366,190 @@ msgstr ""
3362
3366
  msgid "The HTML pages are in %(outdir)s."
3363
3367
  msgstr ""
3364
3368
 
3365
- #: builders/html/__init__.py:340
3369
+ #: builders/html/__init__.py:348
3366
3370
  #, python-format
3367
3371
  msgid "Failed to read build info file: %r"
3368
3372
  msgstr ""
3369
3373
 
3370
- #: builders/html/__init__.py:355
3374
+ #: builders/html/__init__.py:363
3371
3375
  msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
3372
3376
  msgstr ""
3373
3377
 
3374
- #: builders/html/__init__.py:358
3378
+ #: builders/html/__init__.py:366
3375
3379
  msgid "building [html]: "
3376
3380
  msgstr ""
3377
3381
 
3378
- #: builders/html/__init__.py:374
3382
+ #: builders/html/__init__.py:382
3379
3383
  #, python-format
3380
3384
  msgid ""
3381
3385
  "template %s has been changed since the previous build, all docs will be "
3382
3386
  "rebuilt"
3383
3387
  msgstr ""
3384
3388
 
3385
- #: builders/html/__init__.py:499
3389
+ #: builders/html/__init__.py:507
3386
3390
  msgid "index"
3387
3391
  msgstr ""
3388
3392
 
3389
- #: builders/html/__init__.py:547
3393
+ #: builders/html/__init__.py:560
3390
3394
  #, python-format
3391
3395
  msgid "Logo of %s"
3392
3396
  msgstr ""
3393
3397
 
3394
- #: builders/html/__init__.py:572
3398
+ #: builders/html/__init__.py:589
3395
3399
  msgid "next"
3396
3400
  msgstr ""
3397
3401
 
3398
- #: builders/html/__init__.py:581
3402
+ #: builders/html/__init__.py:598
3399
3403
  msgid "previous"
3400
3404
  msgstr ""
3401
3405
 
3402
- #: builders/html/__init__.py:678
3406
+ #: builders/html/__init__.py:695
3403
3407
  msgid "generating indices"
3404
3408
  msgstr ""
3405
3409
 
3406
- #: builders/html/__init__.py:693
3410
+ #: builders/html/__init__.py:710
3407
3411
  msgid "writing additional pages"
3408
3412
  msgstr ""
3409
3413
 
3410
- #: builders/html/__init__.py:772
3414
+ #: builders/html/__init__.py:793
3411
3415
  #, python-format
3412
3416
  msgid "cannot copy image file '%s': %s"
3413
3417
  msgstr ""
3414
3418
 
3415
- #: builders/html/__init__.py:784
3419
+ #: builders/html/__init__.py:805
3416
3420
  msgid "copying downloadable files... "
3417
3421
  msgstr ""
3418
3422
 
3419
- #: builders/html/__init__.py:796
3423
+ #: builders/html/__init__.py:817
3420
3424
  #, python-format
3421
3425
  msgid "cannot copy downloadable file %r: %s"
3422
3426
  msgstr ""
3423
3427
 
3424
- #: builders/html/__init__.py:843
3428
+ #: builders/html/__init__.py:863
3425
3429
  #, python-format
3426
3430
  msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
3427
3431
  msgstr ""
3428
3432
 
3429
- #: builders/html/__init__.py:861
3433
+ #: builders/html/__init__.py:881
3430
3434
  #, python-format
3431
3435
  msgid "Failed to copy a file in html_static_file: %s: %r"
3432
3436
  msgstr ""
3433
3437
 
3434
- #: builders/html/__init__.py:896
3438
+ #: builders/html/__init__.py:916
3435
3439
  msgid "copying static files"
3436
3440
  msgstr ""
3437
3441
 
3438
- #: builders/html/__init__.py:912
3442
+ #: builders/html/__init__.py:933
3439
3443
  #, python-format
3440
3444
  msgid "cannot copy static file %r"
3441
3445
  msgstr ""
3442
3446
 
3443
- #: builders/html/__init__.py:917
3447
+ #: builders/html/__init__.py:938
3444
3448
  msgid "copying extra files"
3445
3449
  msgstr ""
3446
3450
 
3447
- #: builders/html/__init__.py:927
3451
+ #: builders/html/__init__.py:948
3448
3452
  #, python-format
3449
3453
  msgid "cannot copy extra file %r"
3450
3454
  msgstr ""
3451
3455
 
3452
- #: builders/html/__init__.py:933
3456
+ #: builders/html/__init__.py:954
3453
3457
  #, python-format
3454
3458
  msgid "Failed to write build info file: %r"
3455
3459
  msgstr ""
3456
3460
 
3457
- #: builders/html/__init__.py:982
3461
+ #: builders/html/__init__.py:1003
3458
3462
  msgid ""
3459
3463
  "search index couldn't be loaded, but not all documents will be built: the "
3460
3464
  "index will be incomplete."
3461
3465
  msgstr ""
3462
3466
 
3463
- #: builders/html/__init__.py:1027
3467
+ #: builders/html/__init__.py:1051
3464
3468
  #, python-format
3465
3469
  msgid "page %s matches two patterns in html_sidebars: %r and %r"
3466
3470
  msgstr ""
3467
3471
 
3468
- #: builders/html/__init__.py:1188
3472
+ #: builders/html/__init__.py:1213
3469
3473
  #, python-format
3470
3474
  msgid ""
3471
3475
  "a Unicode error occurred when rendering the page %s. Please make sure all "
3472
3476
  "config values that contain non-ASCII content are Unicode strings."
3473
3477
  msgstr ""
3474
3478
 
3475
- #: builders/html/__init__.py:1197
3479
+ #: builders/html/__init__.py:1222
3476
3480
  #, python-format
3477
3481
  msgid ""
3478
3482
  "An error happened in rendering the page %s.\n"
3479
3483
  "Reason: %r"
3480
3484
  msgstr ""
3481
3485
 
3482
- #: builders/html/__init__.py:1229
3486
+ #: builders/html/__init__.py:1255
3483
3487
  msgid "dumping object inventory"
3484
3488
  msgstr ""
3485
3489
 
3486
- #: builders/html/__init__.py:1237
3490
+ #: builders/html/__init__.py:1263
3487
3491
  #, python-format
3488
3492
  msgid "dumping search index in %s"
3489
3493
  msgstr ""
3490
3494
 
3491
- #: builders/html/__init__.py:1279
3495
+ #: builders/html/__init__.py:1306
3492
3496
  #, python-format
3493
3497
  msgid "invalid js_file: %r, ignored"
3494
3498
  msgstr ""
3495
3499
 
3496
- #: builders/html/__init__.py:1312
3500
+ #: builders/html/__init__.py:1339
3497
3501
  msgid "Many math_renderers are registered. But no math_renderer is selected."
3498
3502
  msgstr ""
3499
3503
 
3500
- #: builders/html/__init__.py:1317
3504
+ #: builders/html/__init__.py:1344
3501
3505
  #, python-format
3502
3506
  msgid "Unknown math_renderer %r is given."
3503
3507
  msgstr ""
3504
3508
 
3505
- #: builders/html/__init__.py:1325
3509
+ #: builders/html/__init__.py:1358
3506
3510
  #, python-format
3507
- msgid "html_extra_path entry %r does not exist"
3511
+ msgid "html_extra_path entry %r is placed inside outdir"
3508
3512
  msgstr ""
3509
3513
 
3510
- #: builders/html/__init__.py:1332
3514
+ #: builders/html/__init__.py:1363
3511
3515
  #, python-format
3512
- msgid "html_extra_path entry %r is placed inside outdir"
3516
+ msgid "html_extra_path entry %r does not exist"
3513
3517
  msgstr ""
3514
3518
 
3515
- #: builders/html/__init__.py:1342
3519
+ #: builders/html/__init__.py:1378
3516
3520
  #, python-format
3517
- msgid "html_static_path entry %r does not exist"
3521
+ msgid "html_static_path entry %r is placed inside outdir"
3518
3522
  msgstr ""
3519
3523
 
3520
- #: builders/html/__init__.py:1349
3524
+ #: builders/html/__init__.py:1383
3521
3525
  #, python-format
3522
- msgid "html_static_path entry %r is placed inside outdir"
3526
+ msgid "html_static_path entry %r does not exist"
3523
3527
  msgstr ""
3524
3528
 
3525
- #: builders/html/__init__.py:1361 builders/latex/__init__.py:507
3529
+ #: builders/html/__init__.py:1394 builders/latex/__init__.py:504
3526
3530
  #, python-format
3527
3531
  msgid "logo file %r does not exist"
3528
3532
  msgstr ""
3529
3533
 
3530
- #: builders/html/__init__.py:1372
3534
+ #: builders/html/__init__.py:1405
3531
3535
  #, python-format
3532
3536
  msgid "favicon file %r does not exist"
3533
3537
  msgstr ""
3534
3538
 
3535
- #: builders/html/__init__.py:1384
3539
+ #: builders/html/__init__.py:1417
3536
3540
  #, python-format
3537
3541
  msgid ""
3538
3542
  "Values in 'html_sidebars' must be a list of strings. At least one pattern "
3539
3543
  "has a string value: %s. Change to `html_sidebars = %r`."
3540
3544
  msgstr ""
3541
3545
 
3542
- #: builders/html/__init__.py:1397
3546
+ #: builders/html/__init__.py:1430
3543
3547
  msgid ""
3544
3548
  "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
3545
3549
  "configuration options)"
3546
3550
  msgstr ""
3547
3551
 
3548
- #: builders/html/__init__.py:1414
3552
+ #: builders/html/__init__.py:1447
3549
3553
  #, python-format
3550
3554
  msgid "%s %s documentation"
3551
3555
  msgstr ""
@@ -3585,24 +3589,24 @@ msgstr ""
3585
3589
  msgid "\"latex_documents\" config value references unknown document %s"
3586
3590
  msgstr ""
3587
3591
 
3588
- #: builders/latex/__init__.py:211 templates/latex/latex.tex.jinja:91
3592
+ #: builders/latex/__init__.py:208 templates/latex/latex.tex.jinja:91
3589
3593
  msgid "Release"
3590
3594
  msgstr ""
3591
3595
 
3592
- #: builders/latex/__init__.py:432
3596
+ #: builders/latex/__init__.py:429
3593
3597
  msgid "copying TeX support files"
3594
3598
  msgstr ""
3595
3599
 
3596
- #: builders/latex/__init__.py:469
3600
+ #: builders/latex/__init__.py:466
3597
3601
  msgid "copying additional files"
3598
3602
  msgstr ""
3599
3603
 
3600
- #: builders/latex/__init__.py:543
3604
+ #: builders/latex/__init__.py:540
3601
3605
  #, python-format
3602
3606
  msgid "Unknown configure key: latex_elements[%r], ignored."
3603
3607
  msgstr ""
3604
3608
 
3605
- #: builders/latex/__init__.py:551
3609
+ #: builders/latex/__init__.py:548
3606
3610
  #, python-format
3607
3611
  msgid "Unknown theme option: latex_theme_options[%r], ignored."
3608
3612
  msgstr ""
@@ -3635,23 +3639,23 @@ msgid ""
3635
3639
  "<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!"
3636
3640
  msgstr ""
3637
3641
 
3638
- #: transforms/post_transforms/__init__.py:124
3642
+ #: transforms/post_transforms/__init__.py:125
3639
3643
  msgid ""
3640
3644
  "Could not determine the fallback text for the cross-reference. Might be a "
3641
3645
  "bug."
3642
3646
  msgstr ""
3643
3647
 
3644
- #: transforms/post_transforms/__init__.py:184
3648
+ #: transforms/post_transforms/__init__.py:185
3645
3649
  #, python-format
3646
3650
  msgid "more than one target found for 'any' cross-reference %r: could be %s"
3647
3651
  msgstr ""
3648
3652
 
3649
- #: transforms/post_transforms/__init__.py:250
3653
+ #: transforms/post_transforms/__init__.py:251
3650
3654
  #, python-format
3651
3655
  msgid "%s:%s reference target not found: %s"
3652
3656
  msgstr ""
3653
3657
 
3654
- #: transforms/post_transforms/__init__.py:256
3658
+ #: transforms/post_transforms/__init__.py:257
3655
3659
  #, python-format
3656
3660
  msgid "%r reference target not found: %s"
3657
3661
  msgstr ""
@@ -3727,23 +3731,23 @@ msgstr ""
3727
3731
  msgid "malformed string literal (missing opening quote): %s"
3728
3732
  msgstr ""
3729
3733
 
3730
- #: ext/autosummary/__init__.py:255
3734
+ #: ext/autosummary/__init__.py:256
3731
3735
  #, python-format
3732
3736
  msgid "autosummary references excluded document %r. Ignored."
3733
3737
  msgstr ""
3734
3738
 
3735
- #: ext/autosummary/__init__.py:257
3739
+ #: ext/autosummary/__init__.py:258
3736
3740
  #, python-format
3737
3741
  msgid ""
3738
3742
  "autosummary: stub file not found %r. Check your autosummary_generate "
3739
3743
  "setting."
3740
3744
  msgstr ""
3741
3745
 
3742
- #: ext/autosummary/__init__.py:276
3746
+ #: ext/autosummary/__init__.py:277
3743
3747
  msgid "A captioned autosummary requires :toctree: option. ignored."
3744
3748
  msgstr ""
3745
3749
 
3746
- #: ext/autosummary/__init__.py:329
3750
+ #: ext/autosummary/__init__.py:330
3747
3751
  #, python-format
3748
3752
  msgid ""
3749
3753
  "autosummary: failed to import %s.\n"
@@ -3751,51 +3755,51 @@ msgid ""
3751
3755
  "%s"
3752
3756
  msgstr ""
3753
3757
 
3754
- #: ext/autosummary/__init__.py:343
3758
+ #: ext/autosummary/__init__.py:344
3755
3759
  #, python-format
3756
3760
  msgid "failed to parse name %s"
3757
3761
  msgstr ""
3758
3762
 
3759
- #: ext/autosummary/__init__.py:348
3763
+ #: ext/autosummary/__init__.py:349
3760
3764
  #, python-format
3761
3765
  msgid "failed to import object %s"
3762
3766
  msgstr ""
3763
3767
 
3764
- #: ext/autosummary/__init__.py:647
3768
+ #: ext/autosummary/__init__.py:648
3765
3769
  #, python-format
3766
3770
  msgid ""
3767
3771
  "Summarised items should not include the current module. Replace %r with %r."
3768
3772
  msgstr ""
3769
3773
 
3770
- #: ext/autosummary/__init__.py:818
3774
+ #: ext/autosummary/__init__.py:819
3771
3775
  #, python-format
3772
3776
  msgid "autosummary_generate: file not found: %s"
3773
3777
  msgstr ""
3774
3778
 
3775
- #: ext/autosummary/__init__.py:826
3779
+ #: ext/autosummary/__init__.py:827
3776
3780
  msgid ""
3777
3781
  "autosummary generates .rst files internally. But your source_suffix does not"
3778
3782
  " contain .rst. Skipped."
3779
3783
  msgstr ""
3780
3784
 
3781
- #: ext/autosummary/generate.py:214 ext/autosummary/generate.py:390
3785
+ #: ext/autosummary/generate.py:215 ext/autosummary/generate.py:391
3782
3786
  #, python-format
3783
3787
  msgid ""
3784
3788
  "autosummary: failed to determine %r to be documented, the following exception was raised:\n"
3785
3789
  "%s"
3786
3790
  msgstr ""
3787
3791
 
3788
- #: ext/autosummary/generate.py:525
3792
+ #: ext/autosummary/generate.py:526
3789
3793
  #, python-format
3790
3794
  msgid "[autosummary] generating autosummary for: %s"
3791
3795
  msgstr ""
3792
3796
 
3793
- #: ext/autosummary/generate.py:529
3797
+ #: ext/autosummary/generate.py:530
3794
3798
  #, python-format
3795
3799
  msgid "[autosummary] writing to %s"
3796
3800
  msgstr ""
3797
3801
 
3798
- #: ext/autosummary/generate.py:571
3802
+ #: ext/autosummary/generate.py:572
3799
3803
  #, python-format
3800
3804
  msgid ""
3801
3805
  "[autosummary] failed to import %s.\n"
@@ -3803,7 +3807,7 @@ msgid ""
3803
3807
  "%s"
3804
3808
  msgstr ""
3805
3809
 
3806
- #: ext/autosummary/generate.py:766
3810
+ #: ext/autosummary/generate.py:767
3807
3811
  msgid ""
3808
3812
  "\n"
3809
3813
  "Generate ReStructuredText using autosummary directives.\n"
@@ -3818,30 +3822,30 @@ msgid ""
3818
3822
  " pydoc sphinx.ext.autosummary\n"
3819
3823
  msgstr ""
3820
3824
 
3821
- #: ext/autosummary/generate.py:788
3825
+ #: ext/autosummary/generate.py:789
3822
3826
  msgid "source files to generate rST files for"
3823
3827
  msgstr ""
3824
3828
 
3825
- #: ext/autosummary/generate.py:796
3829
+ #: ext/autosummary/generate.py:797
3826
3830
  msgid "directory to place all output in"
3827
3831
  msgstr ""
3828
3832
 
3829
- #: ext/autosummary/generate.py:804
3833
+ #: ext/autosummary/generate.py:805
3830
3834
  #, python-format
3831
3835
  msgid "default suffix for files (default: %(default)s)"
3832
3836
  msgstr ""
3833
3837
 
3834
- #: ext/autosummary/generate.py:812
3838
+ #: ext/autosummary/generate.py:813
3835
3839
  #, python-format
3836
3840
  msgid "custom template directory (default: %(default)s)"
3837
3841
  msgstr ""
3838
3842
 
3839
- #: ext/autosummary/generate.py:820
3843
+ #: ext/autosummary/generate.py:821
3840
3844
  #, python-format
3841
3845
  msgid "document imported members (default: %(default)s)"
3842
3846
  msgstr ""
3843
3847
 
3844
- #: ext/autosummary/generate.py:828
3848
+ #: ext/autosummary/generate.py:829
3845
3849
  #, python-format
3846
3850
  msgid ""
3847
3851
  "document exactly the members in module __all__ attribute. (default: "
@@ -3973,34 +3977,34 @@ msgstr ""
3973
3977
  msgid "Failed to parse type_comment for %r: %s"
3974
3978
  msgstr ""
3975
3979
 
3976
- #: ext/autodoc/__init__.py:141
3980
+ #: ext/autodoc/__init__.py:142
3977
3981
  #, python-format
3978
3982
  msgid "invalid value for member-order option: %s"
3979
3983
  msgstr ""
3980
3984
 
3981
- #: ext/autodoc/__init__.py:149
3985
+ #: ext/autodoc/__init__.py:150
3982
3986
  #, python-format
3983
3987
  msgid "invalid value for class-doc-from option: %s"
3984
3988
  msgstr ""
3985
3989
 
3986
- #: ext/autodoc/__init__.py:408
3990
+ #: ext/autodoc/__init__.py:415
3987
3991
  #, python-format
3988
3992
  msgid "invalid signature for auto%s (%r)"
3989
3993
  msgstr ""
3990
3994
 
3991
- #: ext/autodoc/__init__.py:525
3995
+ #: ext/autodoc/__init__.py:532
3992
3996
  #, python-format
3993
3997
  msgid "error while formatting arguments for %s: %s"
3994
3998
  msgstr ""
3995
3999
 
3996
- #: ext/autodoc/__init__.py:795
4000
+ #: ext/autodoc/__init__.py:807
3997
4001
  #, python-format
3998
4002
  msgid ""
3999
4003
  "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
4000
4004
  "%s"
4001
4005
  msgstr ""
4002
4006
 
4003
- #: ext/autodoc/__init__.py:890
4007
+ #: ext/autodoc/__init__.py:902
4004
4008
  #, python-format
4005
4009
  msgid ""
4006
4010
  "don't know which module to import for autodocumenting %r (try placing a "
@@ -4008,76 +4012,76 @@ msgid ""
4008
4012
  "explicit module name)"
4009
4013
  msgstr ""
4010
4014
 
4011
- #: ext/autodoc/__init__.py:934
4015
+ #: ext/autodoc/__init__.py:946
4012
4016
  #, python-format
4013
4017
  msgid "A mocked object is detected: %r"
4014
4018
  msgstr ""
4015
4019
 
4016
- #: ext/autodoc/__init__.py:953
4020
+ #: ext/autodoc/__init__.py:965
4017
4021
  #, python-format
4018
4022
  msgid "error while formatting signature for %s: %s"
4019
4023
  msgstr ""
4020
4024
 
4021
- #: ext/autodoc/__init__.py:1016
4025
+ #: ext/autodoc/__init__.py:1028
4022
4026
  msgid "\"::\" in automodule name doesn't make sense"
4023
4027
  msgstr ""
4024
4028
 
4025
- #: ext/autodoc/__init__.py:1023
4029
+ #: ext/autodoc/__init__.py:1035
4026
4030
  #, python-format
4027
4031
  msgid "signature arguments or return annotation given for automodule %s"
4028
4032
  msgstr ""
4029
4033
 
4030
- #: ext/autodoc/__init__.py:1036
4034
+ #: ext/autodoc/__init__.py:1048
4031
4035
  #, python-format
4032
4036
  msgid ""
4033
4037
  "__all__ should be a list of strings, not %r (in module %s) -- ignoring "
4034
4038
  "__all__"
4035
4039
  msgstr ""
4036
4040
 
4037
- #: ext/autodoc/__init__.py:1102
4041
+ #: ext/autodoc/__init__.py:1114
4038
4042
  #, python-format
4039
4043
  msgid ""
4040
4044
  "missing attribute mentioned in :members: option: module %s, attribute %s"
4041
4045
  msgstr ""
4042
4046
 
4043
- #: ext/autodoc/__init__.py:1325 ext/autodoc/__init__.py:1402
4044
- #: ext/autodoc/__init__.py:2810
4047
+ #: ext/autodoc/__init__.py:1337 ext/autodoc/__init__.py:1414
4048
+ #: ext/autodoc/__init__.py:2829
4045
4049
  #, python-format
4046
4050
  msgid "Failed to get a function signature for %s: %s"
4047
4051
  msgstr ""
4048
4052
 
4049
- #: ext/autodoc/__init__.py:1616
4053
+ #: ext/autodoc/__init__.py:1633
4050
4054
  #, python-format
4051
4055
  msgid "Failed to get a constructor signature for %s: %s"
4052
4056
  msgstr ""
4053
4057
 
4054
- #: ext/autodoc/__init__.py:1743
4058
+ #: ext/autodoc/__init__.py:1760
4055
4059
  #, python-format
4056
4060
  msgid "Bases: %s"
4057
4061
  msgstr ""
4058
4062
 
4059
- #: ext/autodoc/__init__.py:1757
4063
+ #: ext/autodoc/__init__.py:1774
4060
4064
  #, python-format
4061
4065
  msgid "missing attribute %s in object %s"
4062
4066
  msgstr ""
4063
4067
 
4064
- #: ext/autodoc/__init__.py:1838 ext/autodoc/__init__.py:1875
4065
- #: ext/autodoc/__init__.py:1970
4068
+ #: ext/autodoc/__init__.py:1855 ext/autodoc/__init__.py:1892
4069
+ #: ext/autodoc/__init__.py:1987
4066
4070
  #, python-format
4067
4071
  msgid "alias of %s"
4068
4072
  msgstr ""
4069
4073
 
4070
- #: ext/autodoc/__init__.py:1858
4074
+ #: ext/autodoc/__init__.py:1875
4071
4075
  #, python-format
4072
4076
  msgid "alias of TypeVar(%s)"
4073
4077
  msgstr ""
4074
4078
 
4075
- #: ext/autodoc/__init__.py:2198 ext/autodoc/__init__.py:2298
4079
+ #: ext/autodoc/__init__.py:2217 ext/autodoc/__init__.py:2317
4076
4080
  #, python-format
4077
4081
  msgid "Failed to get a method signature for %s: %s"
4078
4082
  msgstr ""
4079
4083
 
4080
- #: ext/autodoc/__init__.py:2429
4084
+ #: ext/autodoc/__init__.py:2448
4081
4085
  #, python-format
4082
4086
  msgid "Invalid __slots__ found on %s. Ignored."
4083
4087
  msgstr ""