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

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

Potentially problematic release.


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

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