Sphinx 7.3.7__py3-none-any.whl → 7.4.1__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (357) hide show
  1. sphinx/__init__.py +5 -6
  2. sphinx/_cli/__init__.py +296 -0
  3. sphinx/_cli/util/__init__.py +0 -0
  4. sphinx/_cli/util/colour.py +103 -0
  5. sphinx/_cli/util/errors.py +165 -0
  6. sphinx/application.py +78 -43
  7. sphinx/builders/__init__.py +59 -15
  8. sphinx/builders/_epub_base.py +11 -5
  9. sphinx/builders/changes.py +2 -2
  10. sphinx/builders/epub3.py +2 -2
  11. sphinx/builders/gettext.py +10 -10
  12. sphinx/builders/html/__init__.py +56 -54
  13. sphinx/builders/latex/__init__.py +5 -5
  14. sphinx/builders/latex/constants.py +5 -0
  15. sphinx/builders/linkcheck.py +73 -38
  16. sphinx/builders/texinfo.py +1 -1
  17. sphinx/cmd/build.py +1 -1
  18. sphinx/cmd/quickstart.py +11 -11
  19. sphinx/config.py +57 -38
  20. sphinx/directives/__init__.py +7 -9
  21. sphinx/directives/code.py +12 -15
  22. sphinx/directives/other.py +12 -15
  23. sphinx/directives/patches.py +26 -0
  24. sphinx/domains/__init__.py +1 -1
  25. sphinx/domains/c/__init__.py +5 -5
  26. sphinx/domains/c/_ast.py +436 -12
  27. sphinx/domains/c/_symbol.py +89 -134
  28. sphinx/domains/changeset.py +3 -4
  29. sphinx/domains/cpp/__init__.py +5 -6
  30. sphinx/domains/cpp/_ast.py +822 -25
  31. sphinx/domains/cpp/_symbol.py +3 -0
  32. sphinx/domains/javascript.py +3 -6
  33. sphinx/domains/math.py +3 -2
  34. sphinx/domains/python/__init__.py +44 -6
  35. sphinx/domains/python/_object.py +7 -5
  36. sphinx/domains/rst.py +2 -2
  37. sphinx/domains/std/__init__.py +95 -14
  38. sphinx/environment/__init__.py +35 -15
  39. sphinx/environment/adapters/indexentries.py +71 -24
  40. sphinx/environment/adapters/toctree.py +1 -1
  41. sphinx/environment/collectors/__init__.py +18 -4
  42. sphinx/environment/collectors/asset.py +4 -4
  43. sphinx/environment/collectors/toctree.py +27 -14
  44. sphinx/events.py +7 -6
  45. sphinx/ext/apidoc.py +377 -170
  46. sphinx/ext/autodoc/__init__.py +13 -13
  47. sphinx/ext/autodoc/directive.py +10 -13
  48. sphinx/ext/autodoc/mock.py +10 -7
  49. sphinx/ext/autodoc/preserve_defaults.py +1 -1
  50. sphinx/ext/autodoc/typehints.py +2 -2
  51. sphinx/ext/autosummary/__init__.py +15 -9
  52. sphinx/ext/autosummary/generate.py +270 -154
  53. sphinx/ext/coverage.py +108 -18
  54. sphinx/ext/duration.py +10 -3
  55. sphinx/ext/extlinks.py +3 -2
  56. sphinx/ext/graphviz.py +3 -3
  57. sphinx/ext/ifconfig.py +1 -2
  58. sphinx/ext/imgconverter.py +1 -0
  59. sphinx/ext/imgmath.py +7 -6
  60. sphinx/ext/inheritance_diagram.py +3 -3
  61. sphinx/ext/intersphinx/__init__.py +81 -0
  62. sphinx/ext/intersphinx/__main__.py +10 -0
  63. sphinx/ext/intersphinx/_cli.py +44 -0
  64. sphinx/ext/intersphinx/_load.py +253 -0
  65. sphinx/ext/{intersphinx.py → intersphinx/_resolve.py} +17 -368
  66. sphinx/ext/intersphinx/_shared.py +53 -0
  67. sphinx/ext/mathjax.py +1 -1
  68. sphinx/ext/todo.py +2 -2
  69. sphinx/io.py +2 -6
  70. sphinx/locale/__init__.py +1 -5
  71. sphinx/locale/ar/LC_MESSAGES/sphinx.js +1 -1
  72. sphinx/locale/ar/LC_MESSAGES/sphinx.mo +0 -0
  73. sphinx/locale/ar/LC_MESSAGES/sphinx.po +678 -471
  74. sphinx/locale/bg/LC_MESSAGES/sphinx.js +1 -1
  75. sphinx/locale/bg/LC_MESSAGES/sphinx.mo +0 -0
  76. sphinx/locale/bg/LC_MESSAGES/sphinx.po +684 -476
  77. sphinx/locale/bn/LC_MESSAGES/sphinx.js +1 -1
  78. sphinx/locale/bn/LC_MESSAGES/sphinx.mo +0 -0
  79. sphinx/locale/bn/LC_MESSAGES/sphinx.po +679 -472
  80. sphinx/locale/ca/LC_MESSAGES/sphinx.js +1 -1
  81. sphinx/locale/ca/LC_MESSAGES/sphinx.mo +0 -0
  82. sphinx/locale/ca/LC_MESSAGES/sphinx.po +681 -474
  83. sphinx/locale/cak/LC_MESSAGES/sphinx.js +1 -1
  84. sphinx/locale/cak/LC_MESSAGES/sphinx.mo +0 -0
  85. sphinx/locale/cak/LC_MESSAGES/sphinx.po +678 -471
  86. sphinx/locale/cs/LC_MESSAGES/sphinx.js +1 -1
  87. sphinx/locale/cs/LC_MESSAGES/sphinx.mo +0 -0
  88. sphinx/locale/cs/LC_MESSAGES/sphinx.po +679 -472
  89. sphinx/locale/cy/LC_MESSAGES/sphinx.js +1 -1
  90. sphinx/locale/cy/LC_MESSAGES/sphinx.mo +0 -0
  91. sphinx/locale/cy/LC_MESSAGES/sphinx.po +679 -472
  92. sphinx/locale/da/LC_MESSAGES/sphinx.js +1 -1
  93. sphinx/locale/da/LC_MESSAGES/sphinx.mo +0 -0
  94. sphinx/locale/da/LC_MESSAGES/sphinx.po +679 -472
  95. sphinx/locale/de/LC_MESSAGES/sphinx.js +1 -1
  96. sphinx/locale/de/LC_MESSAGES/sphinx.mo +0 -0
  97. sphinx/locale/de/LC_MESSAGES/sphinx.po +679 -472
  98. sphinx/locale/de_DE/LC_MESSAGES/sphinx.js +1 -1
  99. sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo +0 -0
  100. sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +678 -471
  101. sphinx/locale/el/LC_MESSAGES/sphinx.js +1 -1
  102. sphinx/locale/el/LC_MESSAGES/sphinx.mo +0 -0
  103. sphinx/locale/el/LC_MESSAGES/sphinx.po +701 -494
  104. sphinx/locale/en_DE/LC_MESSAGES/sphinx.js +1 -1
  105. sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo +0 -0
  106. sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +700 -493
  107. sphinx/locale/en_FR/LC_MESSAGES/sphinx.js +1 -1
  108. sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +0 -0
  109. sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +700 -493
  110. sphinx/locale/en_GB/LC_MESSAGES/sphinx.js +1 -1
  111. sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +0 -0
  112. sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +701 -494
  113. sphinx/locale/en_HK/LC_MESSAGES/sphinx.js +1 -1
  114. sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +0 -0
  115. sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +700 -493
  116. sphinx/locale/eo/LC_MESSAGES/sphinx.js +1 -1
  117. sphinx/locale/eo/LC_MESSAGES/sphinx.mo +0 -0
  118. sphinx/locale/eo/LC_MESSAGES/sphinx.po +701 -494
  119. sphinx/locale/es/LC_MESSAGES/sphinx.js +1 -1
  120. sphinx/locale/es/LC_MESSAGES/sphinx.mo +0 -0
  121. sphinx/locale/es/LC_MESSAGES/sphinx.po +701 -494
  122. sphinx/locale/es_CO/LC_MESSAGES/sphinx.js +1 -1
  123. sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo +0 -0
  124. sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +700 -493
  125. sphinx/locale/et/LC_MESSAGES/sphinx.js +1 -1
  126. sphinx/locale/et/LC_MESSAGES/sphinx.mo +0 -0
  127. sphinx/locale/et/LC_MESSAGES/sphinx.po +701 -494
  128. sphinx/locale/eu/LC_MESSAGES/sphinx.js +1 -1
  129. sphinx/locale/eu/LC_MESSAGES/sphinx.mo +0 -0
  130. sphinx/locale/eu/LC_MESSAGES/sphinx.po +701 -494
  131. sphinx/locale/fa/LC_MESSAGES/sphinx.js +1 -1
  132. sphinx/locale/fa/LC_MESSAGES/sphinx.mo +0 -0
  133. sphinx/locale/fa/LC_MESSAGES/sphinx.po +701 -494
  134. sphinx/locale/fi/LC_MESSAGES/sphinx.js +1 -1
  135. sphinx/locale/fi/LC_MESSAGES/sphinx.mo +0 -0
  136. sphinx/locale/fi/LC_MESSAGES/sphinx.po +700 -493
  137. sphinx/locale/fr/LC_MESSAGES/sphinx.js +1 -1
  138. sphinx/locale/fr/LC_MESSAGES/sphinx.mo +0 -0
  139. sphinx/locale/fr/LC_MESSAGES/sphinx.po +725 -518
  140. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js +1 -1
  141. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +0 -0
  142. sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +700 -493
  143. sphinx/locale/gl/LC_MESSAGES/sphinx.js +1 -1
  144. sphinx/locale/gl/LC_MESSAGES/sphinx.mo +0 -0
  145. sphinx/locale/gl/LC_MESSAGES/sphinx.po +701 -494
  146. sphinx/locale/he/LC_MESSAGES/sphinx.js +1 -1
  147. sphinx/locale/he/LC_MESSAGES/sphinx.mo +0 -0
  148. sphinx/locale/he/LC_MESSAGES/sphinx.po +700 -493
  149. sphinx/locale/hi/LC_MESSAGES/sphinx.js +1 -1
  150. sphinx/locale/hi/LC_MESSAGES/sphinx.mo +0 -0
  151. sphinx/locale/hi/LC_MESSAGES/sphinx.po +701 -494
  152. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js +1 -1
  153. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +0 -0
  154. sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +700 -493
  155. sphinx/locale/hr/LC_MESSAGES/sphinx.js +1 -1
  156. sphinx/locale/hr/LC_MESSAGES/sphinx.mo +0 -0
  157. sphinx/locale/hr/LC_MESSAGES/sphinx.po +701 -494
  158. sphinx/locale/hu/LC_MESSAGES/sphinx.js +1 -1
  159. sphinx/locale/hu/LC_MESSAGES/sphinx.mo +0 -0
  160. sphinx/locale/hu/LC_MESSAGES/sphinx.po +701 -494
  161. sphinx/locale/id/LC_MESSAGES/sphinx.js +1 -1
  162. sphinx/locale/id/LC_MESSAGES/sphinx.mo +0 -0
  163. sphinx/locale/id/LC_MESSAGES/sphinx.po +701 -494
  164. sphinx/locale/is/LC_MESSAGES/sphinx.js +1 -1
  165. sphinx/locale/is/LC_MESSAGES/sphinx.mo +0 -0
  166. sphinx/locale/is/LC_MESSAGES/sphinx.po +700 -493
  167. sphinx/locale/it/LC_MESSAGES/sphinx.js +1 -1
  168. sphinx/locale/it/LC_MESSAGES/sphinx.mo +0 -0
  169. sphinx/locale/it/LC_MESSAGES/sphinx.po +708 -500
  170. sphinx/locale/ja/LC_MESSAGES/sphinx.js +1 -1
  171. sphinx/locale/ja/LC_MESSAGES/sphinx.mo +0 -0
  172. sphinx/locale/ja/LC_MESSAGES/sphinx.po +701 -494
  173. sphinx/locale/ka/LC_MESSAGES/sphinx.js +1 -1
  174. sphinx/locale/ka/LC_MESSAGES/sphinx.mo +0 -0
  175. sphinx/locale/ka/LC_MESSAGES/sphinx.po +700 -493
  176. sphinx/locale/ko/LC_MESSAGES/sphinx.js +1 -1
  177. sphinx/locale/ko/LC_MESSAGES/sphinx.mo +0 -0
  178. sphinx/locale/ko/LC_MESSAGES/sphinx.po +701 -494
  179. sphinx/locale/lt/LC_MESSAGES/sphinx.js +1 -1
  180. sphinx/locale/lt/LC_MESSAGES/sphinx.mo +0 -0
  181. sphinx/locale/lt/LC_MESSAGES/sphinx.po +701 -494
  182. sphinx/locale/lv/LC_MESSAGES/sphinx.js +1 -1
  183. sphinx/locale/lv/LC_MESSAGES/sphinx.mo +0 -0
  184. sphinx/locale/lv/LC_MESSAGES/sphinx.po +701 -494
  185. sphinx/locale/mk/LC_MESSAGES/sphinx.js +1 -1
  186. sphinx/locale/mk/LC_MESSAGES/sphinx.mo +0 -0
  187. sphinx/locale/mk/LC_MESSAGES/sphinx.po +700 -493
  188. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +1 -1
  189. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +0 -0
  190. sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +701 -494
  191. sphinx/locale/ne/LC_MESSAGES/sphinx.js +1 -1
  192. sphinx/locale/ne/LC_MESSAGES/sphinx.mo +0 -0
  193. sphinx/locale/ne/LC_MESSAGES/sphinx.po +701 -494
  194. sphinx/locale/nl/LC_MESSAGES/sphinx.js +1 -1
  195. sphinx/locale/nl/LC_MESSAGES/sphinx.mo +0 -0
  196. sphinx/locale/nl/LC_MESSAGES/sphinx.po +701 -494
  197. sphinx/locale/pl/LC_MESSAGES/sphinx.js +1 -1
  198. sphinx/locale/pl/LC_MESSAGES/sphinx.mo +0 -0
  199. sphinx/locale/pl/LC_MESSAGES/sphinx.po +701 -494
  200. sphinx/locale/pt/LC_MESSAGES/sphinx.js +1 -1
  201. sphinx/locale/pt/LC_MESSAGES/sphinx.mo +0 -0
  202. sphinx/locale/pt/LC_MESSAGES/sphinx.po +700 -493
  203. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +1 -1
  204. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +0 -0
  205. sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +705 -498
  206. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js +1 -1
  207. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +0 -0
  208. sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +701 -494
  209. sphinx/locale/ro/LC_MESSAGES/sphinx.js +1 -1
  210. sphinx/locale/ro/LC_MESSAGES/sphinx.mo +0 -0
  211. sphinx/locale/ro/LC_MESSAGES/sphinx.po +701 -494
  212. sphinx/locale/ru/LC_MESSAGES/sphinx.js +1 -1
  213. sphinx/locale/ru/LC_MESSAGES/sphinx.mo +0 -0
  214. sphinx/locale/ru/LC_MESSAGES/sphinx.po +890 -680
  215. sphinx/locale/si/LC_MESSAGES/sphinx.js +1 -1
  216. sphinx/locale/si/LC_MESSAGES/sphinx.mo +0 -0
  217. sphinx/locale/si/LC_MESSAGES/sphinx.po +700 -493
  218. sphinx/locale/sk/LC_MESSAGES/sphinx.js +1 -1
  219. sphinx/locale/sk/LC_MESSAGES/sphinx.mo +0 -0
  220. sphinx/locale/sk/LC_MESSAGES/sphinx.po +701 -494
  221. sphinx/locale/sl/LC_MESSAGES/sphinx.js +1 -1
  222. sphinx/locale/sl/LC_MESSAGES/sphinx.mo +0 -0
  223. sphinx/locale/sl/LC_MESSAGES/sphinx.po +701 -494
  224. sphinx/locale/sphinx.pot +702 -494
  225. sphinx/locale/sq/LC_MESSAGES/sphinx.js +1 -1
  226. sphinx/locale/sq/LC_MESSAGES/sphinx.mo +0 -0
  227. sphinx/locale/sq/LC_MESSAGES/sphinx.po +704 -497
  228. sphinx/locale/sr/LC_MESSAGES/sphinx.js +1 -1
  229. sphinx/locale/sr/LC_MESSAGES/sphinx.mo +0 -0
  230. sphinx/locale/sr/LC_MESSAGES/sphinx.po +700 -493
  231. sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo +0 -0
  232. sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo +0 -0
  233. sphinx/locale/sv/LC_MESSAGES/sphinx.js +1 -1
  234. sphinx/locale/sv/LC_MESSAGES/sphinx.mo +0 -0
  235. sphinx/locale/sv/LC_MESSAGES/sphinx.po +701 -494
  236. sphinx/locale/ta/LC_MESSAGES/sphinx.po +1016 -808
  237. sphinx/locale/te/LC_MESSAGES/sphinx.js +1 -1
  238. sphinx/locale/te/LC_MESSAGES/sphinx.mo +0 -0
  239. sphinx/locale/te/LC_MESSAGES/sphinx.po +700 -493
  240. sphinx/locale/tr/LC_MESSAGES/sphinx.js +1 -1
  241. sphinx/locale/tr/LC_MESSAGES/sphinx.mo +0 -0
  242. sphinx/locale/tr/LC_MESSAGES/sphinx.po +701 -494
  243. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js +1 -1
  244. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +0 -0
  245. sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +701 -494
  246. sphinx/locale/ur/LC_MESSAGES/sphinx.js +1 -1
  247. sphinx/locale/ur/LC_MESSAGES/sphinx.mo +0 -0
  248. sphinx/locale/ur/LC_MESSAGES/sphinx.po +700 -493
  249. sphinx/locale/vi/LC_MESSAGES/sphinx.js +1 -1
  250. sphinx/locale/vi/LC_MESSAGES/sphinx.mo +0 -0
  251. sphinx/locale/vi/LC_MESSAGES/sphinx.po +701 -494
  252. sphinx/locale/yue/LC_MESSAGES/sphinx.js +1 -1
  253. sphinx/locale/yue/LC_MESSAGES/sphinx.mo +0 -0
  254. sphinx/locale/yue/LC_MESSAGES/sphinx.po +700 -493
  255. sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +704 -496
  256. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js +1 -1
  257. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +0 -0
  258. sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +700 -493
  259. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +1 -1
  260. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +0 -0
  261. sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +729 -522
  262. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js +1 -1
  263. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +0 -0
  264. sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +700 -493
  265. sphinx/roles.py +1 -1
  266. sphinx/search/__init__.py +17 -9
  267. sphinx/templates/quickstart/{root_doc.rst_t → root_doc.rst.jinja} +7 -10
  268. sphinx/testing/fixtures.py +22 -20
  269. sphinx/testing/path.py +6 -2
  270. sphinx/testing/util.py +8 -13
  271. sphinx/texinputs/sphinx.sty +449 -332
  272. sphinx/texinputs/sphinxlatexadmonitions.sty +209 -66
  273. sphinx/texinputs/sphinxlatexliterals.sty +9 -16
  274. sphinx/texinputs/sphinxlatexstyletext.sty +4 -38
  275. sphinx/texinputs/sphinxlatextables.sty +6 -14
  276. sphinx/texinputs/sphinxpackageboxes.sty +15 -42
  277. sphinx/texinputs/sphinxpackagefootnote.sty +4 -3
  278. sphinx/themes/agogo/layout.html +3 -3
  279. sphinx/themes/basic/genindex-single.html +2 -1
  280. sphinx/themes/basic/layout.html +3 -6
  281. sphinx/themes/basic/static/searchtools.js +4 -3
  282. sphinx/themes/haiku/layout.html +4 -4
  283. sphinx/themes/pyramid/layout.html +1 -1
  284. sphinx/themes/scrolls/layout.html +2 -2
  285. sphinx/theming.py +3 -3
  286. sphinx/transforms/__init__.py +34 -20
  287. sphinx/transforms/i18n.py +8 -7
  288. sphinx/transforms/post_transforms/__init__.py +1 -1
  289. sphinx/transforms/post_transforms/images.py +7 -10
  290. sphinx/util/_pathlib.py +2 -2
  291. sphinx/util/cfamily.py +52 -30
  292. sphinx/util/console.py +1 -1
  293. sphinx/util/display.py +16 -11
  294. sphinx/util/docutils.py +88 -40
  295. sphinx/util/fileutil.py +15 -3
  296. sphinx/util/images.py +1 -0
  297. sphinx/util/inspect.py +66 -22
  298. sphinx/util/inventory.py +15 -0
  299. sphinx/util/logging.py +14 -21
  300. sphinx/util/math.py +3 -1
  301. sphinx/util/nodes.py +9 -12
  302. sphinx/util/osutil.py +5 -5
  303. sphinx/util/parsing.py +93 -0
  304. sphinx/util/tags.py +71 -47
  305. sphinx/util/typing.py +265 -143
  306. sphinx/versioning.py +17 -17
  307. sphinx/writers/html5.py +26 -19
  308. sphinx/writers/latex.py +60 -30
  309. sphinx/writers/manpage.py +4 -3
  310. sphinx/writers/texinfo.py +19 -14
  311. {sphinx-7.3.7.dist-info → sphinx-7.4.1.dist-info}/METADATA +21 -20
  312. sphinx-7.4.1.dist-info/RECORD +591 -0
  313. sphinx-7.3.7.dist-info/RECORD +0 -581
  314. /sphinx/templates/apidoc/{module.rst_t → module.rst.jinja} +0 -0
  315. /sphinx/templates/apidoc/{package.rst_t → package.rst.jinja} +0 -0
  316. /sphinx/templates/apidoc/{toc.rst_t → toc.rst.jinja} +0 -0
  317. /sphinx/templates/epub3/{content.opf_t → content.opf.jinja} +0 -0
  318. /sphinx/templates/epub3/{nav.xhtml_t → nav.xhtml.jinja} +0 -0
  319. /sphinx/templates/epub3/{toc.ncx_t → toc.ncx.jinja} +0 -0
  320. /sphinx/templates/gettext/{message.pot_t → message.pot.jinja} +0 -0
  321. /sphinx/templates/imgmath/{preview.tex_t → preview.tex.jinja} +0 -0
  322. /sphinx/templates/imgmath/{template.tex_t → template.tex.jinja} +0 -0
  323. /sphinx/templates/latex/{latex.tex_t → latex.tex.jinja} +0 -0
  324. /sphinx/templates/latex/{longtable.tex_t → longtable.tex.jinja} +0 -0
  325. /sphinx/templates/latex/{sphinxmessages.sty_t → sphinxmessages.sty.jinja} +0 -0
  326. /sphinx/templates/latex/{tabular.tex_t → tabular.tex.jinja} +0 -0
  327. /sphinx/templates/latex/{tabulary.tex_t → tabulary.tex.jinja} +0 -0
  328. /sphinx/templates/quickstart/{Makefile_t → Makefile.jinja} +0 -0
  329. /sphinx/templates/quickstart/{Makefile.new_t → Makefile.new.jinja} +0 -0
  330. /sphinx/templates/quickstart/{conf.py_t → conf.py.jinja} +0 -0
  331. /sphinx/templates/quickstart/{make.bat_t → make.bat.jinja} +0 -0
  332. /sphinx/templates/quickstart/{make.bat.new_t → make.bat.new.jinja} +0 -0
  333. /sphinx/texinputs/{Makefile_t → Makefile.jinja} +0 -0
  334. /sphinx/texinputs/{latexmkjarc_t → latexmkjarc.jinja} +0 -0
  335. /sphinx/texinputs/{latexmkrc_t → latexmkrc.jinja} +0 -0
  336. /sphinx/texinputs/{make.bat_t → make.bat.jinja} +0 -0
  337. /sphinx/texinputs_win/{Makefile_t → Makefile.jinja} +0 -0
  338. /sphinx/themes/agogo/static/{agogo.css_t → agogo.css.jinja} +0 -0
  339. /sphinx/themes/basic/static/{basic.css_t → basic.css.jinja} +0 -0
  340. /sphinx/themes/basic/static/{documentation_options.js_t → documentation_options.js.jinja} +0 -0
  341. /sphinx/themes/basic/static/{language_data.js_t → language_data.js.jinja} +0 -0
  342. /sphinx/themes/bizstyle/static/{bizstyle.css_t → bizstyle.css.jinja} +0 -0
  343. /sphinx/themes/bizstyle/static/{bizstyle.js_t → bizstyle.js.jinja} +0 -0
  344. /sphinx/themes/classic/static/{classic.css_t → classic.css.jinja} +0 -0
  345. /sphinx/themes/classic/static/{sidebar.js_t → sidebar.js.jinja} +0 -0
  346. /sphinx/themes/epub/static/{epub.css_t → epub.css.jinja} +0 -0
  347. /sphinx/themes/haiku/static/{haiku.css_t → haiku.css.jinja} +0 -0
  348. /sphinx/themes/nature/static/{nature.css_t → nature.css.jinja} +0 -0
  349. /sphinx/themes/nonav/static/{nonav.css_t → nonav.css.jinja} +0 -0
  350. /sphinx/themes/pyramid/static/{epub.css_t → epub.css.jinja} +0 -0
  351. /sphinx/themes/pyramid/static/{pyramid.css_t → pyramid.css.jinja} +0 -0
  352. /sphinx/themes/scrolls/static/{scrolls.css_t → scrolls.css.jinja} +0 -0
  353. /sphinx/themes/sphinxdoc/static/{sphinxdoc.css_t → sphinxdoc.css.jinja} +0 -0
  354. /sphinx/themes/traditional/static/{traditional.css_t → traditional.css.jinja} +0 -0
  355. {sphinx-7.3.7.dist-info → sphinx-7.4.1.dist-info}/LICENSE.rst +0 -0
  356. {sphinx-7.3.7.dist-info → sphinx-7.4.1.dist-info}/WHEEL +0 -0
  357. {sphinx-7.3.7.dist-info → sphinx-7.4.1.dist-info}/entry_points.txt +0 -0
@@ -9,134 +9,134 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: Sphinx\n"
11
11
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
12
- "POT-Creation-Date: 2024-04-14 23:27+0000\n"
12
+ "POT-Creation-Date: 2024-07-14 04:28+0000\n"
13
13
  "PO-Revision-Date: 2013-04-02 08:44+0000\n"
14
14
  "Last-Translator: Abdullah ahmed <Alhadab@hotmail.co.uk>, 2020\n"
15
15
  "Language-Team: Arabic (http://app.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
- "Generated-By: Babel 2.14.0\n"
19
+ "Generated-By: Babel 2.15.0\n"
20
20
  "Language: ar\n"
21
21
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
22
22
 
23
- #: sphinx/application.py:157
23
+ #: sphinx/application.py:179
24
24
  #, python-format
25
25
  msgid "Cannot find source directory (%s)"
26
26
  msgstr "لا يمكن العثور على المجلد المصدر (%s)"
27
27
 
28
- #: sphinx/application.py:161
28
+ #: sphinx/application.py:183
29
29
  #, python-format
30
30
  msgid "Output directory (%s) is not a directory"
31
31
  msgstr ""
32
32
 
33
- #: sphinx/application.py:165
33
+ #: sphinx/application.py:187
34
34
  msgid "Source directory and destination directory cannot be identical"
35
35
  msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين"
36
36
 
37
- #: sphinx/application.py:197
37
+ #: sphinx/application.py:219
38
38
  #, python-format
39
39
  msgid "Running Sphinx v%s"
40
40
  msgstr "تشغيل Sphinx v%s"
41
41
 
42
- #: sphinx/application.py:219
42
+ #: sphinx/application.py:241
43
43
  #, python-format
44
44
  msgid ""
45
45
  "This project needs at least Sphinx v%s and therefore cannot be built with "
46
46
  "this version."
47
47
  msgstr "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي"
48
48
 
49
- #: sphinx/application.py:235
49
+ #: sphinx/application.py:257
50
50
  msgid "making output directory"
51
51
  msgstr ""
52
52
 
53
- #: sphinx/application.py:240 sphinx/registry.py:450
53
+ #: sphinx/application.py:262 sphinx/registry.py:450
54
54
  #, python-format
55
55
  msgid "while setting up extension %s:"
56
56
  msgstr ""
57
57
 
58
- #: sphinx/application.py:246
58
+ #: sphinx/application.py:268
59
59
  msgid ""
60
60
  "'setup' as currently defined in conf.py isn't a Python callable. Please "
61
61
  "modify its definition to make it a callable function. This is needed for "
62
62
  "conf.py to behave as a Sphinx extension."
63
63
  msgstr ""
64
64
 
65
- #: sphinx/application.py:277
65
+ #: sphinx/application.py:303
66
66
  #, python-format
67
67
  msgid "loading translations [%s]... "
68
68
  msgstr "تحميل الترجمات [ %s ]"
69
69
 
70
- #: sphinx/application.py:294 sphinx/util/display.py:85
70
+ #: sphinx/application.py:320 sphinx/util/display.py:87
71
71
  msgid "done"
72
72
  msgstr "تم"
73
73
 
74
- #: sphinx/application.py:296
74
+ #: sphinx/application.py:322
75
75
  msgid "not available for built-in messages"
76
76
  msgstr "غير متوفرة للرسائل الافتراضية المدمجة"
77
77
 
78
- #: sphinx/application.py:310
78
+ #: sphinx/application.py:336
79
79
  msgid "loading pickled environment"
80
80
  msgstr ""
81
81
 
82
- #: sphinx/application.py:318
82
+ #: sphinx/application.py:344
83
83
  #, python-format
84
84
  msgid "failed: %s"
85
85
  msgstr "فشل: %s"
86
86
 
87
- #: sphinx/application.py:332
87
+ #: sphinx/application.py:357
88
88
  msgid "No builder selected, using default: html"
89
89
  msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html"
90
90
 
91
- #: sphinx/application.py:365
91
+ #: sphinx/application.py:390
92
92
  msgid "succeeded"
93
93
  msgstr "نجح"
94
94
 
95
- #: sphinx/application.py:366
95
+ #: sphinx/application.py:391
96
96
  msgid "finished with problems"
97
97
  msgstr "انتهى مع وجود مشاكل"
98
98
 
99
- #: sphinx/application.py:370
99
+ #: sphinx/application.py:395
100
100
  #, python-format
101
101
  msgid "build %s, %s warning (with warnings treated as errors)."
102
102
  msgstr ""
103
103
 
104
- #: sphinx/application.py:372
104
+ #: sphinx/application.py:397
105
105
  #, python-format
106
106
  msgid "build %s, %s warnings (with warnings treated as errors)."
107
107
  msgstr ""
108
108
 
109
- #: sphinx/application.py:375
109
+ #: sphinx/application.py:400
110
110
  #, python-format
111
111
  msgid "build %s, %s warning."
112
112
  msgstr "بناء %s، %sتحذير."
113
113
 
114
- #: sphinx/application.py:377
114
+ #: sphinx/application.py:402
115
115
  #, python-format
116
116
  msgid "build %s, %s warnings."
117
117
  msgstr ""
118
118
 
119
- #: sphinx/application.py:381
119
+ #: sphinx/application.py:406
120
120
  #, python-format
121
121
  msgid "build %s."
122
122
  msgstr "بناء %s."
123
123
 
124
- #: sphinx/application.py:610
124
+ #: sphinx/application.py:641
125
125
  #, python-format
126
126
  msgid "node class %r is already registered, its visitors will be overridden"
127
127
  msgstr ""
128
128
 
129
- #: sphinx/application.py:689
129
+ #: sphinx/application.py:720
130
130
  #, python-format
131
131
  msgid "directive %r is already registered, it will be overridden"
132
132
  msgstr ""
133
133
 
134
- #: sphinx/application.py:711 sphinx/application.py:733
134
+ #: sphinx/application.py:742 sphinx/application.py:764
135
135
  #, python-format
136
136
  msgid "role %r is already registered, it will be overridden"
137
137
  msgstr ""
138
138
 
139
- #: sphinx/application.py:1282
139
+ #: sphinx/application.py:1313
140
140
  #, python-format
141
141
  msgid ""
142
142
  "the %s extension does not declare if it is safe for parallel reading, "
@@ -144,12 +144,12 @@ msgid ""
144
144
  "explicit"
145
145
  msgstr ""
146
146
 
147
- #: sphinx/application.py:1286
147
+ #: sphinx/application.py:1317
148
148
  #, python-format
149
149
  msgid "the %s extension is not safe for parallel reading"
150
150
  msgstr ""
151
151
 
152
- #: sphinx/application.py:1289
152
+ #: sphinx/application.py:1320
153
153
  #, python-format
154
154
  msgid ""
155
155
  "the %s extension does not declare if it is safe for parallel writing, "
@@ -157,75 +157,77 @@ msgid ""
157
157
  "explicit"
158
158
  msgstr ""
159
159
 
160
- #: sphinx/application.py:1293
160
+ #: sphinx/application.py:1324
161
161
  #, python-format
162
162
  msgid "the %s extension is not safe for parallel writing"
163
163
  msgstr ""
164
164
 
165
- #: sphinx/application.py:1301 sphinx/application.py:1305
165
+ #: sphinx/application.py:1332 sphinx/application.py:1336
166
166
  #, python-format
167
167
  msgid "doing serial %s"
168
168
  msgstr ""
169
169
 
170
- #: sphinx/config.py:309
170
+ #: sphinx/config.py:314
171
171
  #, python-format
172
172
  msgid "config directory doesn't contain a conf.py file (%s)"
173
173
  msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)"
174
174
 
175
- #: sphinx/config.py:318
175
+ #: sphinx/config.py:323
176
176
  msgid ""
177
177
  "Invalid configuration value found: 'language = None'. Update your "
178
178
  "configuration to a valid language code. Falling back to 'en' (English)."
179
179
  msgstr ""
180
180
 
181
- #: sphinx/config.py:341
181
+ #: sphinx/config.py:346
182
182
  #, python-format
183
183
  msgid ""
184
184
  "cannot override dictionary config setting %r, ignoring (use %r to set "
185
185
  "individual elements)"
186
186
  msgstr ""
187
187
 
188
- #: sphinx/config.py:350
188
+ #: sphinx/config.py:355
189
189
  #, python-format
190
190
  msgid "invalid number %r for config value %r, ignoring"
191
191
  msgstr ""
192
192
 
193
- #: sphinx/config.py:355
193
+ #: sphinx/config.py:361
194
194
  #, python-format
195
195
  msgid "cannot override config setting %r with unsupported type, ignoring"
196
196
  msgstr ""
197
197
 
198
- #: sphinx/config.py:378
198
+ #: sphinx/config.py:382
199
199
  #, python-format
200
200
  msgid "unknown config value %r in override, ignoring"
201
201
  msgstr ""
202
202
 
203
- #: sphinx/config.py:418
203
+ #: sphinx/config.py:435
204
204
  #, python-format
205
205
  msgid "No such config value: %r"
206
206
  msgstr ""
207
207
 
208
- #: sphinx/config.py:440
208
+ #: sphinx/config.py:458
209
209
  #, python-format
210
210
  msgid "Config value %r already present"
211
211
  msgstr ""
212
212
 
213
- #: sphinx/config.py:473
213
+ #: sphinx/config.py:494
214
214
  #, python-format
215
- msgid "cannot cache unpickable configuration value: %r"
215
+ msgid ""
216
+ "cannot cache unpickable configuration value: %r (because it contains a "
217
+ "function, class, or module object)"
216
218
  msgstr ""
217
219
 
218
- #: sphinx/config.py:509
220
+ #: sphinx/config.py:531
219
221
  #, python-format
220
222
  msgid "There is a syntax error in your configuration file: %s\n"
221
223
  msgstr ""
222
224
 
223
- #: sphinx/config.py:512
225
+ #: sphinx/config.py:534
224
226
  msgid ""
225
227
  "The configuration file (or one of the modules it imports) called sys.exit()"
226
228
  msgstr ""
227
229
 
228
- #: sphinx/config.py:519
230
+ #: sphinx/config.py:541
229
231
  #, python-format
230
232
  msgid ""
231
233
  "There is a programmable error in your configuration file:\n"
@@ -233,62 +235,62 @@ msgid ""
233
235
  "%s"
234
236
  msgstr ""
235
237
 
236
- #: sphinx/config.py:540
238
+ #: sphinx/config.py:564
237
239
  #, python-format
238
240
  msgid "Failed to convert %r to a set or tuple"
239
241
  msgstr ""
240
242
 
241
- #: sphinx/config.py:565
243
+ #: sphinx/config.py:589
242
244
  #, python-format
243
245
  msgid ""
244
246
  "The config value `source_suffix' expects a string, list of strings, or "
245
247
  "dictionary. But `%r' is given."
246
248
  msgstr ""
247
249
 
248
- #: sphinx/config.py:585
250
+ #: sphinx/config.py:608
249
251
  #, python-format
250
252
  msgid "Section %s"
251
253
  msgstr "قسم %s"
252
254
 
253
- #: sphinx/config.py:586
255
+ #: sphinx/config.py:609
254
256
  #, python-format
255
257
  msgid "Fig. %s"
256
258
  msgstr ""
257
259
 
258
- #: sphinx/config.py:587
260
+ #: sphinx/config.py:610
259
261
  #, python-format
260
262
  msgid "Table %s"
261
263
  msgstr "جدول %s"
262
264
 
263
- #: sphinx/config.py:588
265
+ #: sphinx/config.py:611
264
266
  #, python-format
265
267
  msgid "Listing %s"
266
268
  msgstr ""
267
269
 
268
- #: sphinx/config.py:663
270
+ #: sphinx/config.py:686
269
271
  msgid ""
270
272
  "The config value `{name}` has to be a one of {candidates}, but `{current}` "
271
273
  "is given."
272
274
  msgstr ""
273
275
 
274
- #: sphinx/config.py:687
276
+ #: sphinx/config.py:710
275
277
  msgid ""
276
278
  "The config value `{name}' has type `{current.__name__}'; expected "
277
279
  "{permitted}."
278
280
  msgstr ""
279
281
 
280
- #: sphinx/config.py:700
282
+ #: sphinx/config.py:723
281
283
  msgid ""
282
284
  "The config value `{name}' has type `{current.__name__}', defaults to "
283
285
  "`{default.__name__}'."
284
286
  msgstr ""
285
287
 
286
- #: sphinx/config.py:711
288
+ #: sphinx/config.py:734
287
289
  #, python-format
288
290
  msgid "primary_domain %r not found, ignored."
289
291
  msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة"
290
292
 
291
- #: sphinx/config.py:723
293
+ #: sphinx/config.py:746
292
294
  msgid ""
293
295
  "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add "
294
296
  "\"root_doc = 'contents'\" to your conf.py."
@@ -489,190 +491,342 @@ msgstr ""
489
491
  msgid "invalid RFC number %s"
490
492
  msgstr ""
491
493
 
492
- #: sphinx/theming.py:125
494
+ #: sphinx/theming.py:128
495
+ #, python-format
496
+ msgid ""
497
+ "Theme configuration sections other than [theme] and [options] are not "
498
+ "supported, returning the default value instead (tried to get a value from "
499
+ "%r)"
500
+ msgstr ""
501
+
502
+ #: sphinx/theming.py:136
493
503
  #, python-format
494
504
  msgid "setting %s.%s occurs in none of the searched theme configs"
495
505
  msgstr ""
496
506
 
497
- #: sphinx/theming.py:140
507
+ #: sphinx/theming.py:151
498
508
  #, python-format
499
509
  msgid "unsupported theme option %r given"
500
510
  msgstr ""
501
511
 
502
- #: sphinx/theming.py:206
512
+ #: sphinx/theming.py:224
503
513
  #, python-format
504
514
  msgid "file %r on theme path is not a valid zipfile or contains no theme"
505
515
  msgstr ""
506
516
 
507
- #: sphinx/theming.py:226
517
+ #: sphinx/theming.py:245
508
518
  #, python-format
509
519
  msgid "no theme named %r found (missing theme.toml?)"
510
520
  msgstr ""
511
521
 
512
- #: sphinx/theming.py:259
522
+ #: sphinx/theming.py:285
513
523
  #, python-format
514
524
  msgid "The %r theme has circular inheritance"
515
525
  msgstr ""
516
526
 
517
- #: sphinx/theming.py:262
527
+ #: sphinx/theming.py:292
518
528
  #, python-format
519
529
  msgid ""
520
530
  "The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
521
531
  "are: %s"
522
532
  msgstr ""
523
533
 
524
- #: sphinx/theming.py:269
534
+ #: sphinx/theming.py:299
525
535
  #, python-format
526
536
  msgid "The %r theme has too many ancestors"
527
537
  msgstr ""
528
538
 
529
- #: sphinx/theming.py:295
539
+ #: sphinx/theming.py:325
530
540
  #, python-format
531
541
  msgid "no theme configuration file found in %r"
532
542
  msgstr ""
533
543
 
534
- #: sphinx/theming.py:323 sphinx/theming.py:374
544
+ #: sphinx/theming.py:353 sphinx/theming.py:404
535
545
  #, python-format
536
546
  msgid "theme %r doesn't have the \"theme\" table"
537
547
  msgstr ""
538
548
 
539
- #: sphinx/theming.py:327
549
+ #: sphinx/theming.py:357
540
550
  #, python-format
541
551
  msgid "The %r theme \"[theme]\" table is not a table"
542
552
  msgstr ""
543
553
 
544
- #: sphinx/theming.py:331 sphinx/theming.py:377
554
+ #: sphinx/theming.py:361 sphinx/theming.py:407
545
555
  #, python-format
546
556
  msgid "The %r theme must define the \"theme.inherit\" setting"
547
557
  msgstr ""
548
558
 
549
- #: sphinx/theming.py:335
559
+ #: sphinx/theming.py:365
550
560
  #, python-format
551
561
  msgid "The %r theme \"[options]\" table is not a table"
552
562
  msgstr ""
553
563
 
554
- #: sphinx/theming.py:353
564
+ #: sphinx/theming.py:383
555
565
  #, python-format
556
566
  msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
557
567
  msgstr ""
558
568
 
559
- #: sphinx/builders/__init__.py:183
569
+ #: sphinx/_cli/__init__.py:72
570
+ msgid "Usage:"
571
+ msgstr ""
572
+
573
+ #: sphinx/_cli/__init__.py:74
574
+ msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]"
575
+ msgstr ""
576
+
577
+ #: sphinx/_cli/__init__.py:77
578
+ msgid " The Sphinx documentation generator."
579
+ msgstr ""
580
+
581
+ #: sphinx/_cli/__init__.py:85
582
+ msgid "Commands:"
583
+ msgstr ""
584
+
585
+ #: sphinx/_cli/__init__.py:96
586
+ msgid "Options"
587
+ msgstr ""
588
+
589
+ #: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175
590
+ msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
591
+ msgstr ""
592
+
593
+ #: sphinx/_cli/__init__.py:164
594
+ msgid ""
595
+ "{0}: error: {1}\n"
596
+ "Run '{0} --help' for information"
597
+ msgstr ""
598
+
599
+ #: sphinx/_cli/__init__.py:174
600
+ msgid " Manage documentation with Sphinx."
601
+ msgstr ""
602
+
603
+ #: sphinx/_cli/__init__.py:183
604
+ msgid "Show the version and exit."
605
+ msgstr ""
606
+
607
+ #: sphinx/_cli/__init__.py:189
608
+ msgid "Show this message and exit."
609
+ msgstr ""
610
+
611
+ #: sphinx/_cli/__init__.py:193
612
+ msgid "Logging"
613
+ msgstr ""
614
+
615
+ #: sphinx/_cli/__init__.py:199
616
+ msgid "Increase verbosity (can be repeated)"
617
+ msgstr ""
618
+
619
+ #: sphinx/_cli/__init__.py:206
620
+ msgid "Only print errors and warnings."
621
+ msgstr ""
622
+
623
+ #: sphinx/_cli/__init__.py:213
624
+ msgid "No output at all"
625
+ msgstr ""
626
+
627
+ #: sphinx/_cli/__init__.py:219
628
+ msgid "<command>"
629
+ msgstr ""
630
+
631
+ #: sphinx/_cli/__init__.py:248
632
+ msgid "See 'sphinx --help'.\n"
633
+ msgstr ""
634
+
635
+ #: sphinx/_cli/util/errors.py:119
636
+ msgid "Exception occurred, starting debugger:"
637
+ msgstr ""
638
+
639
+ #: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61
640
+ msgid "Interrupted!"
641
+ msgstr ""
642
+
643
+ #: sphinx/_cli/util/errors.py:128
644
+ msgid "reStructuredText markup error:"
645
+ msgstr ""
646
+
647
+ #: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69
648
+ msgid "Encoding error:"
649
+ msgstr ""
650
+
651
+ #: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76
652
+ msgid "Recursion error:"
653
+ msgstr ""
654
+
655
+ #: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79
656
+ msgid ""
657
+ "This can happen with very large or deeply nested source files. You can "
658
+ "carefully increase the default Python recursion limit of 1000 in conf.py "
659
+ "with e.g.:"
660
+ msgstr ""
661
+
662
+ #: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84
663
+ msgid "Exception occurred:"
664
+ msgstr ""
665
+
666
+ #: sphinx/_cli/util/errors.py:159
667
+ msgid "The full traceback has been saved in:"
668
+ msgstr ""
669
+
670
+ #: sphinx/_cli/util/errors.py:162
671
+ msgid ""
672
+ "To report this error to the developers, please open an issue at "
673
+ "<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!"
674
+ msgstr ""
675
+
676
+ #: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90
677
+ msgid ""
678
+ "Please also report this if it was a user error, so that a better error "
679
+ "message can be provided next time."
680
+ msgstr ""
681
+
682
+ #: sphinx/builders/__init__.py:184
560
683
  #, python-format
561
684
  msgid "a suitable image for %s builder not found: %s (%s)"
562
685
  msgstr ""
563
686
 
564
- #: sphinx/builders/__init__.py:187
687
+ #: sphinx/builders/__init__.py:188
565
688
  #, python-format
566
689
  msgid "a suitable image for %s builder not found: %s"
567
690
  msgstr ""
568
691
 
569
- #: sphinx/builders/__init__.py:207
692
+ #: sphinx/builders/__init__.py:208
570
693
  msgid "building [mo]: "
571
694
  msgstr "بناء [mo]:"
572
695
 
573
- #: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574
574
- #: sphinx/builders/__init__.py:601
696
+ #: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615
697
+ #: sphinx/builders/__init__.py:642
575
698
  msgid "writing output... "
576
699
  msgstr ""
577
700
 
578
- #: sphinx/builders/__init__.py:217
701
+ #: sphinx/builders/__init__.py:218
579
702
  #, python-format
580
703
  msgid "all of %d po files"
581
704
  msgstr ""
582
705
 
583
- #: sphinx/builders/__init__.py:235
706
+ #: sphinx/builders/__init__.py:236
584
707
  #, python-format
585
708
  msgid "targets for %d po files that are specified"
586
709
  msgstr ""
587
710
 
588
- #: sphinx/builders/__init__.py:243
711
+ #: sphinx/builders/__init__.py:244
589
712
  #, python-format
590
713
  msgid "targets for %d po files that are out of date"
591
714
  msgstr ""
592
715
 
593
- #: sphinx/builders/__init__.py:252
716
+ #: sphinx/builders/__init__.py:254
594
717
  msgid "all source files"
595
718
  msgstr "جميع ملفات المصدر"
596
719
 
597
- #: sphinx/builders/__init__.py:262
720
+ #: sphinx/builders/__init__.py:265
598
721
  #, python-format
599
722
  msgid "file %r given on command line does not exist, "
600
723
  msgstr ""
601
724
 
602
- #: sphinx/builders/__init__.py:267
725
+ #: sphinx/builders/__init__.py:270
603
726
  #, python-format
604
727
  msgid ""
605
728
  "file %r given on command line is not under the source directory, ignoring"
606
729
  msgstr ""
607
730
 
608
- #: sphinx/builders/__init__.py:273
731
+ #: sphinx/builders/__init__.py:276
609
732
  #, python-format
610
733
  msgid "file %r given on command line is not a valid document, ignoring"
611
734
  msgstr ""
612
735
 
613
- #: sphinx/builders/__init__.py:282
736
+ #: sphinx/builders/__init__.py:285
614
737
  #, python-format
615
738
  msgid "%d source files given on command line"
616
739
  msgstr ""
617
740
 
618
- #: sphinx/builders/__init__.py:294
741
+ #: sphinx/builders/__init__.py:298
619
742
  #, python-format
620
743
  msgid "targets for %d source files that are out of date"
621
744
  msgstr ""
622
745
 
623
- #: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243
746
+ #: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243
624
747
  #, python-format
625
748
  msgid "building [%s]: "
626
749
  msgstr "بناء [%s]"
627
750
 
628
- #: sphinx/builders/__init__.py:316
751
+ #: sphinx/builders/__init__.py:321
629
752
  msgid "looking for now-outdated files... "
630
753
  msgstr ""
631
754
 
632
- #: sphinx/builders/__init__.py:320
755
+ #: sphinx/builders/__init__.py:325
633
756
  #, python-format
634
757
  msgid "%d found"
635
758
  msgstr ""
636
759
 
637
- #: sphinx/builders/__init__.py:322
760
+ #: sphinx/builders/__init__.py:327
638
761
  msgid "none found"
639
762
  msgstr ""
640
763
 
641
- #: sphinx/builders/__init__.py:327
764
+ #: sphinx/builders/__init__.py:332
642
765
  msgid "pickling environment"
643
766
  msgstr ""
644
767
 
645
- #: sphinx/builders/__init__.py:333
768
+ #: sphinx/builders/__init__.py:338
646
769
  msgid "checking consistency"
647
770
  msgstr "التحقق من التوافق"
648
771
 
649
- #: sphinx/builders/__init__.py:337
772
+ #: sphinx/builders/__init__.py:342
650
773
  msgid "no targets are out of date."
651
774
  msgstr ""
652
775
 
653
- #: sphinx/builders/__init__.py:376
776
+ #: sphinx/builders/__init__.py:382
654
777
  msgid "updating environment: "
655
778
  msgstr "تحديث البيئة:"
656
779
 
657
- #: sphinx/builders/__init__.py:397
780
+ #: sphinx/builders/__init__.py:403
658
781
  #, python-format
659
782
  msgid "%s added, %s changed, %s removed"
660
783
  msgstr ""
661
784
 
662
- #: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447
785
+ #: sphinx/builders/__init__.py:436
786
+ #, python-format
787
+ msgid ""
788
+ "Sphinx is unable to load the master document (%s) because it matches a "
789
+ "built-in exclude pattern %r. Please move your master document to a different"
790
+ " location."
791
+ msgstr ""
792
+
793
+ #: sphinx/builders/__init__.py:443
794
+ #, python-format
795
+ msgid ""
796
+ "Sphinx is unable to load the master document (%s) because it matches an "
797
+ "exclude pattern specified in conf.py, %r. Please remove this pattern from "
798
+ "conf.py."
799
+ msgstr ""
800
+
801
+ #: sphinx/builders/__init__.py:452
802
+ #, python-format
803
+ msgid ""
804
+ "Sphinx is unable to load the master document (%s) because it is not included"
805
+ " in the custom include_patterns = %r. Ensure that a pattern in "
806
+ "include_patterns matches the master document."
807
+ msgstr ""
808
+
809
+ #: sphinx/builders/__init__.py:457
810
+ #, python-format
811
+ msgid ""
812
+ "Sphinx is unable to load the master document (%s). The master document must "
813
+ "be within the source directory or a subdirectory of it."
814
+ msgstr ""
815
+
816
+ #: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484
663
817
  msgid "reading sources... "
664
818
  msgstr ""
665
819
 
666
- #: sphinx/builders/__init__.py:549
820
+ #: sphinx/builders/__init__.py:590
667
821
  #, python-format
668
822
  msgid "docnames to write: %s"
669
823
  msgstr ""
670
824
 
671
- #: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157
825
+ #: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157
672
826
  msgid "preparing documents"
673
827
  msgstr "تجهيز المستندات"
674
828
 
675
- #: sphinx/builders/__init__.py:561
829
+ #: sphinx/builders/__init__.py:602
676
830
  msgid "copying assets"
677
831
  msgstr ""
678
832
 
@@ -681,7 +835,7 @@ msgstr ""
681
835
  msgid "duplicated ToC entry found: %s"
682
836
  msgstr ""
683
837
 
684
- #: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758
838
+ #: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757
685
839
  #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187
686
840
  msgid "copying images... "
687
841
  msgstr "نسخ الصور..."
@@ -691,7 +845,7 @@ msgstr "نسخ الصور..."
691
845
  msgid "cannot read image file %r: copying it instead"
692
846
  msgstr ""
693
847
 
694
- #: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766
848
+ #: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765
695
849
  #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197
696
850
  #, python-format
697
851
  msgid "cannot copy image file %r: %s"
@@ -816,7 +970,7 @@ msgstr ""
816
970
  msgid "conf value \"version\" should not be empty for EPUB3"
817
971
  msgstr ""
818
972
 
819
- #: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187
973
+ #: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184
820
974
  #, python-format
821
975
  msgid "invalid css_file: %r, ignored"
822
976
  msgstr ""
@@ -849,7 +1003,12 @@ msgstr ""
849
1003
  msgid "broken link: %s (%s)"
850
1004
  msgstr ""
851
1005
 
852
- #: sphinx/builders/linkcheck.py:660
1006
+ #: sphinx/builders/linkcheck.py:480
1007
+ #, python-format
1008
+ msgid "Anchor '%s' not found"
1009
+ msgstr ""
1010
+
1011
+ #: sphinx/builders/linkcheck.py:691
853
1012
  #, python-format
854
1013
  msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
855
1014
  msgstr ""
@@ -934,7 +1093,7 @@ msgstr ""
934
1093
  msgid "The text files are in %(outdir)s."
935
1094
  msgstr ""
936
1095
 
937
- #: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77
1096
+ #: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77
938
1097
  #: sphinx/builders/xml.py:96
939
1098
  #, python-format
940
1099
  msgid "error writing file %s: %s"
@@ -960,164 +1119,169 @@ msgstr ""
960
1119
  msgid "The HTML pages are in %(outdir)s."
961
1120
  msgstr "صفحة الHTML موجودة في %(outdir)s"
962
1121
 
963
- #: sphinx/builders/html/__init__.py:394
1122
+ #: sphinx/builders/html/__init__.py:390
964
1123
  #, python-format
965
1124
  msgid "Failed to read build info file: %r"
966
1125
  msgstr ""
967
1126
 
968
- #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189
1127
+ #: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189
969
1128
  #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101
970
1129
  #: sphinx/writers/texinfo.py:227
971
1130
  #, python-format
972
1131
  msgid "%b %d, %Y"
973
1132
  msgstr ""
974
1133
 
975
- #: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30
1134
+ #: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30
976
1135
  msgid "General Index"
977
1136
  msgstr "الفهرس العام"
978
1137
 
979
- #: sphinx/builders/html/__init__.py:506
1138
+ #: sphinx/builders/html/__init__.py:504
980
1139
  msgid "index"
981
1140
  msgstr "الفهرس"
982
1141
 
983
- #: sphinx/builders/html/__init__.py:579
1142
+ #: sphinx/builders/html/__init__.py:553
1143
+ #, python-format
1144
+ msgid "Logo of %s"
1145
+ msgstr ""
1146
+
1147
+ #: sphinx/builders/html/__init__.py:578
984
1148
  msgid "next"
985
1149
  msgstr "التالي"
986
1150
 
987
- #: sphinx/builders/html/__init__.py:588
1151
+ #: sphinx/builders/html/__init__.py:587
988
1152
  msgid "previous"
989
1153
  msgstr "السابق"
990
1154
 
991
- #: sphinx/builders/html/__init__.py:684
1155
+ #: sphinx/builders/html/__init__.py:683
992
1156
  msgid "generating indices"
993
1157
  msgstr "إنشاء الفهرس"
994
1158
 
995
- #: sphinx/builders/html/__init__.py:699
1159
+ #: sphinx/builders/html/__init__.py:698
996
1160
  msgid "writing additional pages"
997
1161
  msgstr "كتابة صفحات إضافية "
998
1162
 
999
- #: sphinx/builders/html/__init__.py:776
1163
+ #: sphinx/builders/html/__init__.py:775
1000
1164
  msgid "copying downloadable files... "
1001
1165
  msgstr "نسخ الملفات القابلة للتحميل للنسخ..."
1002
1166
 
1003
- #: sphinx/builders/html/__init__.py:784
1167
+ #: sphinx/builders/html/__init__.py:783
1004
1168
  #, python-format
1005
1169
  msgid "cannot copy downloadable file %r: %s"
1006
1170
  msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s"
1007
1171
 
1008
- #: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829
1172
+ #: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828
1009
1173
  #, python-format
1010
1174
  msgid "Failed to copy a file in html_static_file: %s: %r"
1011
1175
  msgstr ""
1012
1176
 
1013
- #: sphinx/builders/html/__init__.py:850
1177
+ #: sphinx/builders/html/__init__.py:849
1014
1178
  msgid "copying static files"
1015
1179
  msgstr ""
1016
1180
 
1017
- #: sphinx/builders/html/__init__.py:866
1181
+ #: sphinx/builders/html/__init__.py:865
1018
1182
  #, python-format
1019
1183
  msgid "cannot copy static file %r"
1020
1184
  msgstr "غير قادر على نسخ الملف الثابت %r"
1021
1185
 
1022
- #: sphinx/builders/html/__init__.py:871
1186
+ #: sphinx/builders/html/__init__.py:870
1023
1187
  msgid "copying extra files"
1024
1188
  msgstr "نسخ ملفات إضافية"
1025
1189
 
1026
- #: sphinx/builders/html/__init__.py:877
1190
+ #: sphinx/builders/html/__init__.py:876
1027
1191
  #, python-format
1028
1192
  msgid "cannot copy extra file %r"
1029
1193
  msgstr "غير قادر على نسخ المف الإضافي %r"
1030
1194
 
1031
- #: sphinx/builders/html/__init__.py:884
1195
+ #: sphinx/builders/html/__init__.py:883
1032
1196
  #, python-format
1033
1197
  msgid "Failed to write build info file: %r"
1034
1198
  msgstr ""
1035
1199
 
1036
- #: sphinx/builders/html/__init__.py:933
1200
+ #: sphinx/builders/html/__init__.py:932
1037
1201
  msgid ""
1038
1202
  "search index couldn't be loaded, but not all documents will be built: the "
1039
1203
  "index will be incomplete."
1040
1204
  msgstr ""
1041
1205
 
1042
- #: sphinx/builders/html/__init__.py:978
1206
+ #: sphinx/builders/html/__init__.py:976
1043
1207
  #, python-format
1044
1208
  msgid "page %s matches two patterns in html_sidebars: %r and %r"
1045
1209
  msgstr ""
1046
1210
 
1047
- #: sphinx/builders/html/__init__.py:1121
1211
+ #: sphinx/builders/html/__init__.py:1118
1048
1212
  #, python-format
1049
1213
  msgid ""
1050
1214
  "a Unicode error occurred when rendering the page %s. Please make sure all "
1051
1215
  "config values that contain non-ASCII content are Unicode strings."
1052
1216
  msgstr ""
1053
1217
 
1054
- #: sphinx/builders/html/__init__.py:1126
1218
+ #: sphinx/builders/html/__init__.py:1123
1055
1219
  #, python-format
1056
1220
  msgid ""
1057
1221
  "An error happened in rendering the page %s.\n"
1058
1222
  "Reason: %r"
1059
1223
  msgstr ""
1060
1224
 
1061
- #: sphinx/builders/html/__init__.py:1154
1225
+ #: sphinx/builders/html/__init__.py:1151
1062
1226
  msgid "dumping object inventory"
1063
1227
  msgstr ""
1064
1228
 
1065
- #: sphinx/builders/html/__init__.py:1162
1229
+ #: sphinx/builders/html/__init__.py:1159
1066
1230
  #, python-format
1067
1231
  msgid "dumping search index in %s"
1068
1232
  msgstr ""
1069
1233
 
1070
- #: sphinx/builders/html/__init__.py:1210
1234
+ #: sphinx/builders/html/__init__.py:1207
1071
1235
  #, python-format
1072
1236
  msgid "invalid js_file: %r, ignored"
1073
1237
  msgstr ""
1074
1238
 
1075
- #: sphinx/builders/html/__init__.py:1238
1239
+ #: sphinx/builders/html/__init__.py:1235
1076
1240
  msgid "Many math_renderers are registered. But no math_renderer is selected."
1077
1241
  msgstr ""
1078
1242
 
1079
- #: sphinx/builders/html/__init__.py:1241
1243
+ #: sphinx/builders/html/__init__.py:1238
1080
1244
  #, python-format
1081
1245
  msgid "Unknown math_renderer %r is given."
1082
1246
  msgstr ""
1083
1247
 
1084
- #: sphinx/builders/html/__init__.py:1249
1248
+ #: sphinx/builders/html/__init__.py:1246
1085
1249
  #, python-format
1086
1250
  msgid "html_extra_path entry %r does not exist"
1087
1251
  msgstr ""
1088
1252
 
1089
- #: sphinx/builders/html/__init__.py:1253
1253
+ #: sphinx/builders/html/__init__.py:1250
1090
1254
  #, python-format
1091
1255
  msgid "html_extra_path entry %r is placed inside outdir"
1092
1256
  msgstr ""
1093
1257
 
1094
- #: sphinx/builders/html/__init__.py:1262
1258
+ #: sphinx/builders/html/__init__.py:1259
1095
1259
  #, python-format
1096
1260
  msgid "html_static_path entry %r does not exist"
1097
1261
  msgstr ""
1098
1262
 
1099
- #: sphinx/builders/html/__init__.py:1266
1263
+ #: sphinx/builders/html/__init__.py:1263
1100
1264
  #, python-format
1101
1265
  msgid "html_static_path entry %r is placed inside outdir"
1102
1266
  msgstr ""
1103
1267
 
1104
- #: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444
1268
+ #: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444
1105
1269
  #, python-format
1106
1270
  msgid "logo file %r does not exist"
1107
1271
  msgstr "ملف الشعار %r غير موجود"
1108
1272
 
1109
- #: sphinx/builders/html/__init__.py:1284
1273
+ #: sphinx/builders/html/__init__.py:1281
1110
1274
  #, python-format
1111
1275
  msgid "favicon file %r does not exist"
1112
1276
  msgstr "ملف الايقونة %r غير موجود"
1113
1277
 
1114
- #: sphinx/builders/html/__init__.py:1291
1278
+ #: sphinx/builders/html/__init__.py:1288
1115
1279
  msgid ""
1116
1280
  "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
1117
1281
  "configuration options)"
1118
1282
  msgstr ""
1119
1283
 
1120
- #: sphinx/builders/html/__init__.py:1306
1284
+ #: sphinx/builders/html/__init__.py:1303
1121
1285
  #, python-format
1122
1286
  msgid "%s %s documentation"
1123
1287
  msgstr ""
@@ -1143,19 +1307,21 @@ msgstr ""
1143
1307
  msgid "\"latex_documents\" config value references unknown document %s"
1144
1308
  msgstr ""
1145
1309
 
1146
- #: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559
1147
- #: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106
1310
+ #: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640
1311
+ #: sphinx/domains/std/__init__.py:652
1312
+ #: sphinx/templates/latex/latex.tex.jinja:106
1148
1313
  #: sphinx/themes/basic/genindex-single.html:30
1149
- #: sphinx/themes/basic/genindex-single.html:55
1314
+ #: sphinx/themes/basic/genindex-single.html:56
1150
1315
  #: sphinx/themes/basic/genindex-split.html:11
1151
1316
  #: sphinx/themes/basic/genindex-split.html:14
1152
1317
  #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
1153
- #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138
1154
- #: sphinx/writers/texinfo.py:497
1318
+ #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135
1319
+ #: sphinx/writers/texinfo.py:502
1155
1320
  msgid "Index"
1156
1321
  msgstr ""
1157
1322
 
1158
- #: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91
1323
+ #: sphinx/builders/latex/__init__.py:199
1324
+ #: sphinx/templates/latex/latex.tex.jinja:91
1159
1325
  msgid "Release"
1160
1326
  msgstr ""
1161
1327
 
@@ -1213,18 +1379,10 @@ msgstr ""
1213
1379
  msgid "Exception occurred while building, starting debugger:"
1214
1380
  msgstr ""
1215
1381
 
1216
- #: sphinx/cmd/build.py:61
1217
- msgid "Interrupted!"
1218
- msgstr ""
1219
-
1220
1382
  #: sphinx/cmd/build.py:63
1221
1383
  msgid "reST markup error:"
1222
1384
  msgstr ""
1223
1385
 
1224
- #: sphinx/cmd/build.py:69
1225
- msgid "Encoding error:"
1226
- msgstr ""
1227
-
1228
1386
  #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87
1229
1387
  #, python-format
1230
1388
  msgid ""
@@ -1232,27 +1390,6 @@ msgid ""
1232
1390
  "the developers."
1233
1391
  msgstr ""
1234
1392
 
1235
- #: sphinx/cmd/build.py:76
1236
- msgid "Recursion error:"
1237
- msgstr ""
1238
-
1239
- #: sphinx/cmd/build.py:79
1240
- msgid ""
1241
- "This can happen with very large or deeply nested source files. You can "
1242
- "carefully increase the default Python recursion limit of 1000 in conf.py "
1243
- "with e.g.:"
1244
- msgstr ""
1245
-
1246
- #: sphinx/cmd/build.py:84
1247
- msgid "Exception occurred:"
1248
- msgstr ""
1249
-
1250
- #: sphinx/cmd/build.py:90
1251
- msgid ""
1252
- "Please also report this if it was a user error, so that a better error "
1253
- "message can be provided next time."
1254
- msgstr ""
1255
-
1256
1393
  #: sphinx/cmd/build.py:93
1257
1394
  msgid ""
1258
1395
  "A bug report can be filed in the tracker at <https://github.com/sphinx-"
@@ -1264,7 +1401,7 @@ msgid "job number should be a positive number"
1264
1401
  msgstr ""
1265
1402
 
1266
1403
  #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474
1267
- #: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689
1404
+ #: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755
1268
1405
  msgid "For more information, visit <https://www.sphinx-doc.org/>."
1269
1406
  msgstr ""
1270
1407
 
@@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG"
1353
1490
  msgstr ""
1354
1491
 
1355
1492
  #: sphinx/cmd/build.py:182
1356
- msgid "nit-picky mode: warn about all missing references"
1493
+ msgid "nitpicky mode: warn about all missing references"
1357
1494
  msgstr ""
1358
1495
 
1359
1496
  #: sphinx/cmd/build.py:184
@@ -1364,7 +1501,7 @@ msgstr ""
1364
1501
  msgid "increase verbosity (can be repeated)"
1365
1502
  msgstr ""
1366
1503
 
1367
- #: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340
1504
+ #: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402
1368
1505
  msgid "no output on stdout, just warnings on stderr"
1369
1506
  msgstr ""
1370
1507
 
@@ -1646,12 +1783,12 @@ msgstr "إنشاء Makefile ؟ (نعم / لا)"
1646
1783
  msgid "Create Windows command file? (y/n)"
1647
1784
  msgstr "إنشاء ملف أوامر للويندوز؟ (نعم/لا)"
1648
1785
 
1649
- #: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93
1786
+ #: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92
1650
1787
  #, python-format
1651
1788
  msgid "Creating file %s."
1652
1789
  msgstr ""
1653
1790
 
1654
- #: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90
1791
+ #: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89
1655
1792
  #, python-format
1656
1793
  msgid "File %s already exists, skipping."
1657
1794
  msgstr ""
@@ -1760,12 +1897,12 @@ msgstr ""
1760
1897
  msgid "Extension options"
1761
1898
  msgstr ""
1762
1899
 
1763
- #: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400
1900
+ #: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559
1764
1901
  #, python-format
1765
1902
  msgid "enable %s extension"
1766
1903
  msgstr ""
1767
1904
 
1768
- #: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396
1905
+ #: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551
1769
1906
  msgid "enable arbitrary extensions"
1770
1907
  msgstr ""
1771
1908
 
@@ -1797,11 +1934,11 @@ msgstr ""
1797
1934
  msgid "do not use make-mode for Makefile/make.bat"
1798
1935
  msgstr ""
1799
1936
 
1800
- #: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402
1937
+ #: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562
1801
1938
  msgid "Project templating"
1802
1939
  msgstr ""
1803
1940
 
1804
- #: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405
1941
+ #: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568
1805
1942
  msgid "template directory for template files"
1806
1943
  msgstr ""
1807
1944
 
@@ -1829,85 +1966,85 @@ msgstr ""
1829
1966
  msgid "Invalid template variable: %s"
1830
1967
  msgstr ""
1831
1968
 
1832
- #: sphinx/directives/code.py:61
1969
+ #: sphinx/directives/code.py:60
1833
1970
  msgid "non-whitespace stripped by dedent"
1834
1971
  msgstr ""
1835
1972
 
1836
- #: sphinx/directives/code.py:82
1973
+ #: sphinx/directives/code.py:80
1837
1974
  #, python-format
1838
1975
  msgid "Invalid caption: %s"
1839
1976
  msgstr ""
1840
1977
 
1841
- #: sphinx/directives/code.py:127 sphinx/directives/code.py:277
1842
- #: sphinx/directives/code.py:453
1978
+ #: sphinx/directives/code.py:124 sphinx/directives/code.py:274
1979
+ #: sphinx/directives/code.py:450
1843
1980
  #, python-format
1844
1981
  msgid "line number spec is out of range(1-%d): %r"
1845
1982
  msgstr ""
1846
1983
 
1847
- #: sphinx/directives/code.py:206
1984
+ #: sphinx/directives/code.py:203
1848
1985
  #, python-format
1849
1986
  msgid "Cannot use both \"%s\" and \"%s\" options"
1850
1987
  msgstr ""
1851
1988
 
1852
- #: sphinx/directives/code.py:220
1989
+ #: sphinx/directives/code.py:217
1853
1990
  #, python-format
1854
1991
  msgid "Include file %r not found or reading it failed"
1855
1992
  msgstr ""
1856
1993
 
1857
- #: sphinx/directives/code.py:223
1994
+ #: sphinx/directives/code.py:220
1858
1995
  #, python-format
1859
1996
  msgid ""
1860
1997
  "Encoding %r used for reading included file %r seems to be wrong, try giving "
1861
1998
  "an :encoding: option"
1862
1999
  msgstr ""
1863
2000
 
1864
- #: sphinx/directives/code.py:260
2001
+ #: sphinx/directives/code.py:257
1865
2002
  #, python-format
1866
2003
  msgid "Object named %r not found in include file %r"
1867
2004
  msgstr ""
1868
2005
 
1869
- #: sphinx/directives/code.py:286
2006
+ #: sphinx/directives/code.py:283
1870
2007
  msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
1871
2008
  msgstr ""
1872
2009
 
1873
- #: sphinx/directives/code.py:291
2010
+ #: sphinx/directives/code.py:288
1874
2011
  #, python-format
1875
2012
  msgid "Line spec %r: no lines pulled from include file %r"
1876
2013
  msgstr ""
1877
2014
 
1878
- #: sphinx/directives/other.py:120
2015
+ #: sphinx/directives/other.py:123
1879
2016
  #, python-format
1880
2017
  msgid "toctree glob pattern %r didn't match any documents"
1881
2018
  msgstr ""
1882
2019
 
1883
- #: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324
2020
+ #: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324
1884
2021
  #, python-format
1885
2022
  msgid "toctree contains reference to excluded document %r"
1886
2023
  msgstr ""
1887
2024
 
1888
- #: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328
2025
+ #: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328
1889
2026
  #, python-format
1890
2027
  msgid "toctree contains reference to nonexisting document %r"
1891
2028
  msgstr ""
1892
2029
 
1893
- #: sphinx/directives/other.py:160
2030
+ #: sphinx/directives/other.py:163
1894
2031
  #, python-format
1895
2032
  msgid "duplicated entry found in toctree: %s"
1896
2033
  msgstr ""
1897
2034
 
1898
- #: sphinx/directives/other.py:193
2035
+ #: sphinx/directives/other.py:196
1899
2036
  msgid "Section author: "
1900
2037
  msgstr "مؤلف القسم:"
1901
2038
 
1902
- #: sphinx/directives/other.py:195
2039
+ #: sphinx/directives/other.py:198
1903
2040
  msgid "Module author: "
1904
2041
  msgstr ""
1905
2042
 
1906
- #: sphinx/directives/other.py:197
2043
+ #: sphinx/directives/other.py:200
1907
2044
  msgid "Code author: "
1908
2045
  msgstr "كاتب الكود:"
1909
2046
 
1910
- #: sphinx/directives/other.py:199
2047
+ #: sphinx/directives/other.py:202
1911
2048
  msgid "Author: "
1912
2049
  msgstr "المؤلف"
1913
2050
 
@@ -1915,7 +2052,7 @@ msgstr "المؤلف"
1915
2052
  msgid ".. acks content is not a list"
1916
2053
  msgstr ""
1917
2054
 
1918
- #: sphinx/directives/other.py:301
2055
+ #: sphinx/directives/other.py:298
1919
2056
  msgid ".. hlist content is not a list"
1920
2057
  msgstr ""
1921
2058
 
@@ -1965,7 +2102,7 @@ msgstr ""
1965
2102
  msgid "%s() (built-in function)"
1966
2103
  msgstr ""
1967
2104
 
1968
- #: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240
2105
+ #: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253
1969
2106
  #, python-format
1970
2107
  msgid "%s() (%s method)"
1971
2108
  msgstr ""
@@ -1980,7 +2117,7 @@ msgstr ""
1980
2117
  msgid "%s (global variable or constant)"
1981
2118
  msgstr ""
1982
2119
 
1983
- #: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325
2120
+ #: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338
1984
2121
  #, python-format
1985
2122
  msgid "%s (%s attribute)"
1986
2123
  msgstr ""
@@ -1989,52 +2126,52 @@ msgstr ""
1989
2126
  msgid "Arguments"
1990
2127
  msgstr ""
1991
2128
 
1992
- #: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258
2129
+ #: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258
1993
2130
  msgid "Throws"
1994
2131
  msgstr ""
1995
2132
 
1996
- #: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361
2133
+ #: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453
1997
2134
  #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175
1998
2135
  msgid "Returns"
1999
2136
  msgstr ""
2000
2137
 
2001
- #: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263
2138
+ #: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263
2002
2139
  #: sphinx/domains/python/_object.py:177
2003
2140
  msgid "Return type"
2004
2141
  msgstr ""
2005
2142
 
2006
- #: sphinx/domains/javascript.py:331
2143
+ #: sphinx/domains/javascript.py:328
2007
2144
  #, python-format
2008
2145
  msgid "%s (module)"
2009
2146
  msgstr ""
2010
2147
 
2011
- #: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764
2012
- #: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574
2148
+ #: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855
2149
+ #: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623
2013
2150
  msgid "function"
2014
2151
  msgstr ""
2015
2152
 
2016
- #: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578
2153
+ #: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627
2017
2154
  msgid "method"
2018
2155
  msgstr ""
2019
2156
 
2020
- #: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370
2021
- #: sphinx/domains/python/__init__.py:576
2157
+ #: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367
2158
+ #: sphinx/domains/python/__init__.py:625
2022
2159
  msgid "class"
2023
2160
  msgstr "كائن"
2024
2161
 
2025
- #: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575
2162
+ #: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624
2026
2163
  msgid "data"
2027
2164
  msgstr ""
2028
2165
 
2029
- #: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581
2166
+ #: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630
2030
2167
  msgid "attribute"
2031
2168
  msgstr ""
2032
2169
 
2033
- #: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583
2170
+ #: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633
2034
2171
  msgid "module"
2035
2172
  msgstr ""
2036
2173
 
2037
- #: sphinx/domains/javascript.py:404
2174
+ #: sphinx/domains/javascript.py:401
2038
2175
  #, python-format
2039
2176
  msgid "duplicate %s description of %s, other %s in %s"
2040
2177
  msgstr ""
@@ -2044,7 +2181,7 @@ msgstr ""
2044
2181
  msgid "duplicate label of equation %s, other instance in %s"
2045
2182
  msgstr ""
2046
2183
 
2047
- #: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252
2184
+ #: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274
2048
2185
  #, python-format
2049
2186
  msgid "Invalid math_eqref_format: %r"
2050
2187
  msgstr ""
@@ -2081,169 +2218,178 @@ msgstr "متغير بيئة العمل"
2081
2218
  msgid "duplicate description of %s %s, other instance in %s"
2082
2219
  msgstr ""
2083
2220
 
2084
- #: sphinx/domains/c/__init__.py:146
2221
+ #: sphinx/domains/c/__init__.py:199
2085
2222
  #, python-format
2086
2223
  msgid "%s (C %s)"
2087
2224
  msgstr ""
2088
2225
 
2089
- #: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552
2226
+ #: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510
2090
2227
  #, python-format
2091
2228
  msgid ""
2092
2229
  "Duplicate C declaration, also defined at %s:%s.\n"
2093
2230
  "Declaration is '.. c:%s:: %s'."
2094
2231
  msgstr ""
2095
2232
 
2096
- #: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344
2233
+ #: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436
2097
2234
  #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762
2098
2235
  msgid "Parameters"
2099
2236
  msgstr ""
2100
2237
 
2101
- #: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357
2238
+ #: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449
2102
2239
  msgid "Return values"
2103
2240
  msgstr ""
2104
2241
 
2105
- #: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765
2242
+ #: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856
2106
2243
  msgid "member"
2107
2244
  msgstr ""
2108
2245
 
2109
- #: sphinx/domains/c/__init__.py:621
2246
+ #: sphinx/domains/c/__init__.py:674
2110
2247
  msgid "variable"
2111
2248
  msgstr "متغير"
2112
2249
 
2113
- #: sphinx/domains/c/__init__.py:623
2250
+ #: sphinx/domains/c/__init__.py:676
2114
2251
  msgid "macro"
2115
2252
  msgstr ""
2116
2253
 
2117
- #: sphinx/domains/c/__init__.py:624
2254
+ #: sphinx/domains/c/__init__.py:677
2118
2255
  msgid "struct"
2119
2256
  msgstr ""
2120
2257
 
2121
- #: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763
2258
+ #: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854
2122
2259
  msgid "union"
2123
2260
  msgstr ""
2124
2261
 
2125
- #: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768
2262
+ #: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859
2126
2263
  msgid "enum"
2127
2264
  msgstr ""
2128
2265
 
2129
- #: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769
2266
+ #: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860
2130
2267
  msgid "enumerator"
2131
2268
  msgstr ""
2132
2269
 
2133
- #: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766
2270
+ #: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857
2134
2271
  msgid "type"
2135
2272
  msgstr "نوع"
2136
2273
 
2137
- #: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771
2274
+ #: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862
2138
2275
  msgid "function parameter"
2139
2276
  msgstr ""
2140
2277
 
2141
- #: sphinx/domains/cpp/__init__.py:63
2278
+ #: sphinx/domains/cpp/__init__.py:155
2142
2279
  msgid "Template Parameters"
2143
2280
  msgstr ""
2144
2281
 
2145
- #: sphinx/domains/cpp/__init__.py:185
2282
+ #: sphinx/domains/cpp/__init__.py:277
2146
2283
  #, python-format
2147
2284
  msgid "%s (C++ %s)"
2148
2285
  msgstr ""
2149
2286
 
2150
- #: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790
2287
+ #: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793
2151
2288
  #, python-format
2152
2289
  msgid ""
2153
2290
  "Duplicate C++ declaration, also defined at %s:%s.\n"
2154
2291
  "Declaration is '.. cpp:%s:: %s'."
2155
2292
  msgstr ""
2156
2293
 
2157
- #: sphinx/domains/cpp/__init__.py:767
2294
+ #: sphinx/domains/cpp/__init__.py:858
2158
2295
  msgid "concept"
2159
2296
  msgstr ""
2160
2297
 
2161
- #: sphinx/domains/cpp/__init__.py:772
2298
+ #: sphinx/domains/cpp/__init__.py:863
2162
2299
  msgid "template parameter"
2163
2300
  msgstr ""
2164
2301
 
2165
- #: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231
2302
+ #: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244
2166
2303
  #, python-format
2167
2304
  msgid "%s() (in module %s)"
2168
2305
  msgstr ""
2169
2306
 
2170
- #: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321
2171
- #: sphinx/domains/python/__init__.py:372
2307
+ #: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334
2308
+ #: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424
2172
2309
  #, python-format
2173
2310
  msgid "%s (in module %s)"
2174
2311
  msgstr ""
2175
2312
 
2176
- #: sphinx/domains/python/__init__.py:156
2313
+ #: sphinx/domains/python/__init__.py:169
2177
2314
  #, python-format
2178
2315
  msgid "%s (built-in variable)"
2179
2316
  msgstr ""
2180
2317
 
2181
- #: sphinx/domains/python/__init__.py:181
2318
+ #: sphinx/domains/python/__init__.py:194
2182
2319
  #, python-format
2183
2320
  msgid "%s (built-in class)"
2184
2321
  msgstr ""
2185
2322
 
2186
- #: sphinx/domains/python/__init__.py:182
2323
+ #: sphinx/domains/python/__init__.py:195
2187
2324
  #, python-format
2188
2325
  msgid "%s (class in %s)"
2189
2326
  msgstr ""
2190
2327
 
2191
- #: sphinx/domains/python/__init__.py:236
2328
+ #: sphinx/domains/python/__init__.py:249
2192
2329
  #, python-format
2193
2330
  msgid "%s() (%s class method)"
2194
2331
  msgstr ""
2195
2332
 
2196
- #: sphinx/domains/python/__init__.py:238
2333
+ #: sphinx/domains/python/__init__.py:251
2197
2334
  #, python-format
2198
2335
  msgid "%s() (%s static method)"
2199
2336
  msgstr ""
2200
2337
 
2201
- #: sphinx/domains/python/__init__.py:376
2338
+ #: sphinx/domains/python/__init__.py:389
2202
2339
  #, python-format
2203
2340
  msgid "%s (%s property)"
2204
2341
  msgstr ""
2205
2342
 
2206
- #: sphinx/domains/python/__init__.py:502
2343
+ #: sphinx/domains/python/__init__.py:428
2344
+ #, python-format
2345
+ msgid "%s (type alias in %s)"
2346
+ msgstr ""
2347
+
2348
+ #: sphinx/domains/python/__init__.py:551
2207
2349
  msgid "Python Module Index"
2208
2350
  msgstr ""
2209
2351
 
2210
- #: sphinx/domains/python/__init__.py:503
2352
+ #: sphinx/domains/python/__init__.py:552
2211
2353
  msgid "modules"
2212
2354
  msgstr ""
2213
2355
 
2214
- #: sphinx/domains/python/__init__.py:552
2356
+ #: sphinx/domains/python/__init__.py:601
2215
2357
  msgid "Deprecated"
2216
2358
  msgstr ""
2217
2359
 
2218
- #: sphinx/domains/python/__init__.py:577
2360
+ #: sphinx/domains/python/__init__.py:626
2219
2361
  msgid "exception"
2220
2362
  msgstr ""
2221
2363
 
2222
- #: sphinx/domains/python/__init__.py:579
2364
+ #: sphinx/domains/python/__init__.py:628
2223
2365
  msgid "class method"
2224
2366
  msgstr ""
2225
2367
 
2226
- #: sphinx/domains/python/__init__.py:580
2368
+ #: sphinx/domains/python/__init__.py:629
2227
2369
  msgid "static method"
2228
2370
  msgstr ""
2229
2371
 
2230
- #: sphinx/domains/python/__init__.py:582
2372
+ #: sphinx/domains/python/__init__.py:631
2231
2373
  msgid "property"
2232
2374
  msgstr ""
2233
2375
 
2234
- #: sphinx/domains/python/__init__.py:640
2376
+ #: sphinx/domains/python/__init__.py:632
2377
+ msgid "type alias"
2378
+ msgstr ""
2379
+
2380
+ #: sphinx/domains/python/__init__.py:692
2235
2381
  #, python-format
2236
2382
  msgid ""
2237
2383
  "duplicate object description of %s, other instance in %s, use :no-index: for"
2238
2384
  " one of them"
2239
2385
  msgstr ""
2240
2386
 
2241
- #: sphinx/domains/python/__init__.py:760
2387
+ #: sphinx/domains/python/__init__.py:812
2242
2388
  #, python-format
2243
2389
  msgid "more than one target found for cross-reference %r: %s"
2244
2390
  msgstr ""
2245
2391
 
2246
- #: sphinx/domains/python/__init__.py:821
2392
+ #: sphinx/domains/python/__init__.py:873
2247
2393
  msgid " (deprecated)"
2248
2394
  msgstr ""
2249
2395
 
@@ -2255,158 +2401,171 @@ msgstr "متغيرات"
2255
2401
  msgid "Raises"
2256
2402
  msgstr ""
2257
2403
 
2258
- #: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97
2404
+ #: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98
2259
2405
  #, python-format
2260
2406
  msgid "environment variable; %s"
2261
2407
  msgstr ""
2262
2408
 
2263
- #: sphinx/domains/std/__init__.py:157
2409
+ #: sphinx/domains/std/__init__.py:106
2410
+ #, python-format
2411
+ msgid "%s; configuration value"
2412
+ msgstr ""
2413
+
2414
+ #: sphinx/domains/std/__init__.py:159
2415
+ msgid "Type"
2416
+ msgstr ""
2417
+
2418
+ #: sphinx/domains/std/__init__.py:169
2419
+ msgid "Default"
2420
+ msgstr ""
2421
+
2422
+ #: sphinx/domains/std/__init__.py:228
2264
2423
  #, python-format
2265
2424
  msgid ""
2266
2425
  "Malformed option description %r, should look like \"opt\", \"-opt args\", \""
2267
2426
  "--opt args\", \"/opt args\" or \"+opt args\""
2268
2427
  msgstr ""
2269
2428
 
2270
- #: sphinx/domains/std/__init__.py:228
2429
+ #: sphinx/domains/std/__init__.py:299
2271
2430
  #, python-format
2272
2431
  msgid "%s command line option"
2273
2432
  msgstr ""
2274
2433
 
2275
- #: sphinx/domains/std/__init__.py:230
2434
+ #: sphinx/domains/std/__init__.py:301
2276
2435
  msgid "command line option"
2277
2436
  msgstr ""
2278
2437
 
2279
- #: sphinx/domains/std/__init__.py:348
2438
+ #: sphinx/domains/std/__init__.py:424
2280
2439
  msgid "glossary term must be preceded by empty line"
2281
2440
  msgstr ""
2282
2441
 
2283
- #: sphinx/domains/std/__init__.py:356
2442
+ #: sphinx/domains/std/__init__.py:432
2284
2443
  msgid "glossary terms must not be separated by empty lines"
2285
2444
  msgstr ""
2286
2445
 
2287
- #: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375
2446
+ #: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451
2288
2447
  msgid "glossary seems to be misformatted, check indentation"
2289
2448
  msgstr ""
2290
2449
 
2291
- #: sphinx/domains/std/__init__.py:518
2450
+ #: sphinx/domains/std/__init__.py:596
2292
2451
  msgid "glossary term"
2293
2452
  msgstr ""
2294
2453
 
2295
- #: sphinx/domains/std/__init__.py:519
2454
+ #: sphinx/domains/std/__init__.py:597
2296
2455
  msgid "grammar token"
2297
2456
  msgstr ""
2298
2457
 
2299
- #: sphinx/domains/std/__init__.py:520
2458
+ #: sphinx/domains/std/__init__.py:598
2300
2459
  msgid "reference label"
2301
2460
  msgstr ""
2302
2461
 
2303
- #: sphinx/domains/std/__init__.py:522
2462
+ #: sphinx/domains/std/__init__.py:601
2304
2463
  msgid "environment variable"
2305
2464
  msgstr ""
2306
2465
 
2307
- #: sphinx/domains/std/__init__.py:523
2466
+ #: sphinx/domains/std/__init__.py:602
2308
2467
  msgid "program option"
2309
2468
  msgstr ""
2310
2469
 
2311
- #: sphinx/domains/std/__init__.py:524
2470
+ #: sphinx/domains/std/__init__.py:603
2312
2471
  msgid "document"
2313
2472
  msgstr ""
2314
2473
 
2315
- #: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572
2474
+ #: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653
2316
2475
  msgid "Module Index"
2317
2476
  msgstr ""
2318
2477
 
2319
- #: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573
2478
+ #: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654
2320
2479
  #: sphinx/themes/basic/defindex.html:25
2321
2480
  msgid "Search Page"
2322
2481
  msgstr "صفحة البحث"
2323
2482
 
2324
- #: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722
2483
+ #: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803
2325
2484
  #: sphinx/ext/autosectionlabel.py:53
2326
2485
  #, python-format
2327
2486
  msgid "duplicate label %s, other instance in %s"
2328
2487
  msgstr ""
2329
2488
 
2330
- #: sphinx/domains/std/__init__.py:635
2489
+ #: sphinx/domains/std/__init__.py:716
2331
2490
  #, python-format
2332
2491
  msgid "duplicate %s description of %s, other instance in %s"
2333
2492
  msgstr ""
2334
2493
 
2335
- #: sphinx/domains/std/__init__.py:841
2494
+ #: sphinx/domains/std/__init__.py:922
2336
2495
  msgid "numfig is disabled. :numref: is ignored."
2337
2496
  msgstr ""
2338
2497
 
2339
- #: sphinx/domains/std/__init__.py:849
2498
+ #: sphinx/domains/std/__init__.py:930
2340
2499
  #, python-format
2341
2500
  msgid "Failed to create a cross reference. Any number is not assigned: %s"
2342
2501
  msgstr ""
2343
2502
 
2344
- #: sphinx/domains/std/__init__.py:861
2503
+ #: sphinx/domains/std/__init__.py:942
2345
2504
  #, python-format
2346
2505
  msgid "the link has no caption: %s"
2347
2506
  msgstr ""
2348
2507
 
2349
- #: sphinx/domains/std/__init__.py:875
2508
+ #: sphinx/domains/std/__init__.py:956
2350
2509
  #, python-format
2351
2510
  msgid "invalid numfig_format: %s (%r)"
2352
2511
  msgstr ""
2353
2512
 
2354
- #: sphinx/domains/std/__init__.py:878
2513
+ #: sphinx/domains/std/__init__.py:959
2355
2514
  #, python-format
2356
2515
  msgid "invalid numfig_format: %s"
2357
2516
  msgstr ""
2358
2517
 
2359
- #: sphinx/domains/std/__init__.py:1109
2518
+ #: sphinx/domains/std/__init__.py:1190
2360
2519
  #, python-format
2361
2520
  msgid "undefined label: %r"
2362
2521
  msgstr ""
2363
2522
 
2364
- #: sphinx/domains/std/__init__.py:1111
2523
+ #: sphinx/domains/std/__init__.py:1192
2365
2524
  #, python-format
2366
2525
  msgid "Failed to create a cross reference. A title or caption not found: %r"
2367
2526
  msgstr ""
2368
2527
 
2369
- #: sphinx/environment/__init__.py:71
2528
+ #: sphinx/environment/__init__.py:72
2370
2529
  msgid "new config"
2371
2530
  msgstr ""
2372
2531
 
2373
- #: sphinx/environment/__init__.py:72
2532
+ #: sphinx/environment/__init__.py:73
2374
2533
  msgid "config changed"
2375
2534
  msgstr ""
2376
2535
 
2377
- #: sphinx/environment/__init__.py:73
2536
+ #: sphinx/environment/__init__.py:74
2378
2537
  msgid "extensions changed"
2379
2538
  msgstr ""
2380
2539
 
2381
- #: sphinx/environment/__init__.py:279
2540
+ #: sphinx/environment/__init__.py:292
2382
2541
  msgid "build environment version not current"
2383
2542
  msgstr ""
2384
2543
 
2385
- #: sphinx/environment/__init__.py:281
2544
+ #: sphinx/environment/__init__.py:294
2386
2545
  msgid "source directory has changed"
2387
2546
  msgstr ""
2388
2547
 
2389
- #: sphinx/environment/__init__.py:360
2548
+ #: sphinx/environment/__init__.py:373
2390
2549
  msgid ""
2391
2550
  "This environment is incompatible with the selected builder, please choose "
2392
2551
  "another doctree directory."
2393
2552
  msgstr ""
2394
2553
 
2395
- #: sphinx/environment/__init__.py:459
2554
+ #: sphinx/environment/__init__.py:472
2396
2555
  #, python-format
2397
2556
  msgid "Failed to scan documents in %s: %r"
2398
2557
  msgstr ""
2399
2558
 
2400
- #: sphinx/environment/__init__.py:596
2559
+ #: sphinx/environment/__init__.py:614
2401
2560
  #, python-format
2402
2561
  msgid "Domain %r is not registered"
2403
2562
  msgstr ""
2404
2563
 
2405
- #: sphinx/environment/__init__.py:730
2564
+ #: sphinx/environment/__init__.py:748
2406
2565
  msgid "document isn't included in any toctree"
2407
2566
  msgstr ""
2408
2567
 
2409
- #: sphinx/environment/__init__.py:766
2568
+ #: sphinx/environment/__init__.py:784
2410
2569
  msgid "self referenced toctree found. Ignored."
2411
2570
  msgstr ""
2412
2571
 
@@ -2426,7 +2585,7 @@ msgid "unknown index entry type %r"
2426
2585
  msgstr ""
2427
2586
 
2428
2587
  #: sphinx/environment/adapters/indexentries.py:187
2429
- #: sphinx/templates/latex/sphinxmessages.sty_t:11
2588
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:11
2430
2589
  msgid "Symbols"
2431
2590
  msgstr ""
2432
2591
 
@@ -2462,17 +2621,17 @@ msgstr ""
2462
2621
  msgid "download file not readable: %s"
2463
2622
  msgstr ""
2464
2623
 
2465
- #: sphinx/environment/collectors/toctree.py:225
2624
+ #: sphinx/environment/collectors/toctree.py:235
2466
2625
  #, python-format
2467
2626
  msgid "%s is already assigned section numbers (nested numbered toctree?)"
2468
2627
  msgstr ""
2469
2628
 
2470
- #: sphinx/ext/apidoc.py:86
2629
+ #: sphinx/ext/apidoc.py:85
2471
2630
  #, python-format
2472
2631
  msgid "Would create file %s."
2473
2632
  msgstr ""
2474
2633
 
2475
- #: sphinx/ext/apidoc.py:318
2634
+ #: sphinx/ext/apidoc.py:366
2476
2635
  msgid ""
2477
2636
  "\n"
2478
2637
  "Look recursively in <MODULE_PATH> for Python modules and packages and create\n"
@@ -2484,149 +2643,171 @@ msgid ""
2484
2643
  "Note: By default this script will not overwrite already created files."
2485
2644
  msgstr ""
2486
2645
 
2487
- #: sphinx/ext/apidoc.py:331
2646
+ #: sphinx/ext/apidoc.py:383
2488
2647
  msgid "path to module to document"
2489
2648
  msgstr ""
2490
2649
 
2491
- #: sphinx/ext/apidoc.py:333
2650
+ #: sphinx/ext/apidoc.py:387
2492
2651
  msgid ""
2493
2652
  "fnmatch-style file and/or directory patterns to exclude from generation"
2494
2653
  msgstr ""
2495
2654
 
2496
- #: sphinx/ext/apidoc.py:338
2655
+ #: sphinx/ext/apidoc.py:396
2497
2656
  msgid "directory to place all output"
2498
2657
  msgstr ""
2499
2658
 
2500
- #: sphinx/ext/apidoc.py:343
2659
+ #: sphinx/ext/apidoc.py:411
2501
2660
  msgid "maximum depth of submodules to show in the TOC (default: 4)"
2502
2661
  msgstr ""
2503
2662
 
2504
- #: sphinx/ext/apidoc.py:346
2663
+ #: sphinx/ext/apidoc.py:414
2505
2664
  msgid "overwrite existing files"
2506
2665
  msgstr ""
2507
2666
 
2508
- #: sphinx/ext/apidoc.py:349
2667
+ #: sphinx/ext/apidoc.py:422
2509
2668
  msgid ""
2510
2669
  "follow symbolic links. Powerful when combined with "
2511
2670
  "collective.recipe.omelette."
2512
2671
  msgstr ""
2513
2672
 
2514
- #: sphinx/ext/apidoc.py:352
2673
+ #: sphinx/ext/apidoc.py:431
2515
2674
  msgid "run the script without creating files"
2516
2675
  msgstr ""
2517
2676
 
2518
- #: sphinx/ext/apidoc.py:355
2677
+ #: sphinx/ext/apidoc.py:438
2519
2678
  msgid "put documentation for each module on its own page"
2520
2679
  msgstr ""
2521
2680
 
2522
- #: sphinx/ext/apidoc.py:358
2681
+ #: sphinx/ext/apidoc.py:445
2523
2682
  msgid "include \"_private\" modules"
2524
2683
  msgstr ""
2525
2684
 
2526
- #: sphinx/ext/apidoc.py:360
2685
+ #: sphinx/ext/apidoc.py:452
2527
2686
  msgid "filename of table of contents (default: modules)"
2528
2687
  msgstr ""
2529
2688
 
2530
- #: sphinx/ext/apidoc.py:362
2689
+ #: sphinx/ext/apidoc.py:459
2531
2690
  msgid "don't create a table of contents file"
2532
2691
  msgstr ""
2533
2692
 
2534
- #: sphinx/ext/apidoc.py:365
2693
+ #: sphinx/ext/apidoc.py:466
2535
2694
  msgid ""
2536
2695
  "don't create headings for the module/package packages (e.g. when the "
2537
2696
  "docstrings already contain them)"
2538
2697
  msgstr ""
2539
2698
 
2540
- #: sphinx/ext/apidoc.py:370
2699
+ #: sphinx/ext/apidoc.py:477
2541
2700
  msgid "put module documentation before submodule documentation"
2542
2701
  msgstr ""
2543
2702
 
2544
- #: sphinx/ext/apidoc.py:374
2703
+ #: sphinx/ext/apidoc.py:483
2545
2704
  msgid ""
2546
2705
  "interpret module paths according to PEP-0420 implicit namespaces "
2547
2706
  "specification"
2548
2707
  msgstr ""
2549
2708
 
2550
- #: sphinx/ext/apidoc.py:378
2709
+ #: sphinx/ext/apidoc.py:493
2551
2710
  msgid "file suffix (default: rst)"
2552
2711
  msgstr ""
2553
2712
 
2554
- #: sphinx/ext/apidoc.py:380
2713
+ #: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828
2714
+ msgid "Remove existing files in the output directory that were not generated"
2715
+ msgstr ""
2716
+
2717
+ #: sphinx/ext/apidoc.py:507
2555
2718
  msgid "generate a full project with sphinx-quickstart"
2556
2719
  msgstr ""
2557
2720
 
2558
- #: sphinx/ext/apidoc.py:383
2721
+ #: sphinx/ext/apidoc.py:514
2559
2722
  msgid "append module_path to sys.path, used when --full is given"
2560
2723
  msgstr ""
2561
2724
 
2562
- #: sphinx/ext/apidoc.py:385
2725
+ #: sphinx/ext/apidoc.py:521
2563
2726
  msgid "project name (default: root module name)"
2564
2727
  msgstr ""
2565
2728
 
2566
- #: sphinx/ext/apidoc.py:387
2729
+ #: sphinx/ext/apidoc.py:528
2567
2730
  msgid "project author(s), used when --full is given"
2568
2731
  msgstr ""
2569
2732
 
2570
- #: sphinx/ext/apidoc.py:389
2733
+ #: sphinx/ext/apidoc.py:535
2571
2734
  msgid "project version, used when --full is given"
2572
2735
  msgstr ""
2573
2736
 
2574
- #: sphinx/ext/apidoc.py:391
2737
+ #: sphinx/ext/apidoc.py:542
2575
2738
  msgid "project release, used when --full is given, defaults to --doc-version"
2576
2739
  msgstr ""
2577
2740
 
2578
- #: sphinx/ext/apidoc.py:394
2741
+ #: sphinx/ext/apidoc.py:545
2579
2742
  msgid "extension options"
2580
2743
  msgstr ""
2581
2744
 
2582
- #: sphinx/ext/apidoc.py:427
2745
+ #: sphinx/ext/apidoc.py:620
2583
2746
  #, python-format
2584
2747
  msgid "%s is not a directory."
2585
2748
  msgstr "%s ليس مجلد."
2586
2749
 
2750
+ #: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862
2751
+ #, python-format
2752
+ msgid "Failed to remove %s: %s"
2753
+ msgstr ""
2754
+
2587
2755
  #: sphinx/ext/autosectionlabel.py:49
2588
2756
  #, python-format
2589
2757
  msgid "section \"%s\" gets labeled as \"%s\""
2590
2758
  msgstr ""
2591
2759
 
2592
- #: sphinx/ext/coverage.py:46
2760
+ #: sphinx/ext/coverage.py:47
2593
2761
  #, python-format
2594
2762
  msgid "invalid regex %r in %s"
2595
2763
  msgstr ""
2596
2764
 
2597
- #: sphinx/ext/coverage.py:75
2765
+ #: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280
2766
+ #, python-format
2767
+ msgid "module %s could not be imported: %s"
2768
+ msgstr ""
2769
+
2770
+ #: sphinx/ext/coverage.py:141
2771
+ #, python-format
2772
+ msgid ""
2773
+ "the following modules are documented but were not specified in "
2774
+ "coverage_modules: %s"
2775
+ msgstr ""
2776
+
2777
+ #: sphinx/ext/coverage.py:149
2778
+ msgid ""
2779
+ "the following modules are specified in coverage_modules but were not "
2780
+ "documented"
2781
+ msgstr ""
2782
+
2783
+ #: sphinx/ext/coverage.py:163
2598
2784
  #, python-format
2599
2785
  msgid ""
2600
2786
  "Testing of coverage in the sources finished, look at the results in "
2601
2787
  "%(outdir)spython.txt."
2602
2788
  msgstr ""
2603
2789
 
2604
- #: sphinx/ext/coverage.py:89
2790
+ #: sphinx/ext/coverage.py:177
2605
2791
  #, python-format
2606
2792
  msgid "invalid regex %r in coverage_c_regexes"
2607
2793
  msgstr ""
2608
2794
 
2609
- #: sphinx/ext/coverage.py:157
2795
+ #: sphinx/ext/coverage.py:245
2610
2796
  #, python-format
2611
2797
  msgid "undocumented c api: %s [%s] in file %s"
2612
2798
  msgstr ""
2613
2799
 
2614
- #: sphinx/ext/coverage.py:189
2615
- #, python-format
2616
- msgid "module %s could not be imported: %s"
2617
- msgstr ""
2618
-
2619
- #: sphinx/ext/coverage.py:340
2800
+ #: sphinx/ext/coverage.py:429
2620
2801
  #, python-format
2621
2802
  msgid "undocumented python function: %s :: %s"
2622
2803
  msgstr ""
2623
2804
 
2624
- #: sphinx/ext/coverage.py:356
2805
+ #: sphinx/ext/coverage.py:445
2625
2806
  #, python-format
2626
2807
  msgid "undocumented python class: %s :: %s"
2627
2808
  msgstr ""
2628
2809
 
2629
- #: sphinx/ext/coverage.py:369
2810
+ #: sphinx/ext/coverage.py:458
2630
2811
  #, python-format
2631
2812
  msgid "undocumented python method: %s :: %s :: %s"
2632
2813
  msgstr ""
@@ -2667,7 +2848,7 @@ msgstr ""
2667
2848
  msgid "ignoring invalid doctest code: %r"
2668
2849
  msgstr ""
2669
2850
 
2670
- #: sphinx/ext/duration.py:77
2851
+ #: sphinx/ext/duration.py:84
2671
2852
  msgid ""
2672
2853
  "====================== slowest reading durations ======================="
2673
2854
  msgstr ""
@@ -2743,7 +2924,7 @@ msgstr ""
2743
2924
  msgid "[graph]"
2744
2925
  msgstr ""
2745
2926
 
2746
- #: sphinx/ext/imgconverter.py:39
2927
+ #: sphinx/ext/imgconverter.py:40
2747
2928
  #, python-format
2748
2929
  msgid ""
2749
2930
  "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"
@@ -2751,7 +2932,7 @@ msgid ""
2751
2932
  "Traceback: %s"
2752
2933
  msgstr ""
2753
2934
 
2754
- #: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72
2935
+ #: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73
2755
2936
  #, python-format
2756
2937
  msgid ""
2757
2938
  "convert exited with error:\n"
@@ -2761,99 +2942,39 @@ msgid ""
2761
2942
  "%r"
2762
2943
  msgstr ""
2763
2944
 
2764
- #: sphinx/ext/imgconverter.py:67
2945
+ #: sphinx/ext/imgconverter.py:68
2765
2946
  #, python-format
2766
2947
  msgid "convert command %r cannot be run, check the image_converter setting"
2767
2948
  msgstr ""
2768
2949
 
2769
- #: sphinx/ext/imgmath.py:158
2950
+ #: sphinx/ext/imgmath.py:159
2770
2951
  #, python-format
2771
2952
  msgid ""
2772
2953
  "LaTeX command %r cannot be run (needed for math display), check the "
2773
2954
  "imgmath_latex setting"
2774
2955
  msgstr ""
2775
2956
 
2776
- #: sphinx/ext/imgmath.py:173
2957
+ #: sphinx/ext/imgmath.py:174
2777
2958
  #, python-format
2778
2959
  msgid ""
2779
2960
  "%s command %r cannot be run (needed for math display), check the imgmath_%s "
2780
2961
  "setting"
2781
2962
  msgstr ""
2782
2963
 
2783
- #: sphinx/ext/imgmath.py:327
2964
+ #: sphinx/ext/imgmath.py:328
2784
2965
  #, python-format
2785
2966
  msgid "display latex %r: %s"
2786
2967
  msgstr ""
2787
2968
 
2788
- #: sphinx/ext/imgmath.py:361
2969
+ #: sphinx/ext/imgmath.py:362
2789
2970
  #, python-format
2790
2971
  msgid "inline latex %r: %s"
2791
2972
  msgstr ""
2792
2973
 
2793
- #: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53
2974
+ #: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53
2794
2975
  msgid "Link to this equation"
2795
2976
  msgstr ""
2796
2977
 
2797
- #: sphinx/ext/intersphinx.py:195
2798
- #, python-format
2799
- msgid "intersphinx inventory has moved: %s -> %s"
2800
- msgstr ""
2801
-
2802
- #: sphinx/ext/intersphinx.py:230
2803
- #, python-format
2804
- msgid "loading intersphinx inventory from %s..."
2805
- msgstr ""
2806
-
2807
- #: sphinx/ext/intersphinx.py:244
2808
- msgid ""
2809
- "encountered some issues with some of the inventories, but they had working "
2810
- "alternatives:"
2811
- msgstr ""
2812
-
2813
- #: sphinx/ext/intersphinx.py:250
2814
- msgid "failed to reach any of the inventories with the following issues:"
2815
- msgstr ""
2816
-
2817
- #: sphinx/ext/intersphinx.py:303
2818
- #, python-format
2819
- msgid "(in %s v%s)"
2820
- msgstr ""
2821
-
2822
- #: sphinx/ext/intersphinx.py:305
2823
- #, python-format
2824
- msgid "(in %s)"
2825
- msgstr ""
2826
-
2827
- #: sphinx/ext/intersphinx.py:538
2828
- #, python-format
2829
- msgid "inventory for external cross-reference not found: %r"
2830
- msgstr ""
2831
-
2832
- #: sphinx/ext/intersphinx.py:546
2833
- #, python-format
2834
- msgid "invalid external cross-reference suffix: %r"
2835
- msgstr ""
2836
-
2837
- #: sphinx/ext/intersphinx.py:557
2838
- #, python-format
2839
- msgid "domain for external cross-reference not found: %r"
2840
- msgstr ""
2841
-
2842
- #: sphinx/ext/intersphinx.py:750
2843
- #, python-format
2844
- msgid "external %s:%s reference target not found: %s"
2845
- msgstr ""
2846
-
2847
- #: sphinx/ext/intersphinx.py:775
2848
- #, python-format
2849
- msgid "intersphinx identifier %r is not string. Ignored"
2850
- msgstr ""
2851
-
2852
- #: sphinx/ext/intersphinx.py:797
2853
- #, python-format
2854
- msgid "Failed to read intersphinx_mapping[%s], ignored: %r"
2855
- msgstr ""
2856
-
2857
2978
  #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199
2858
2979
  msgid "[source]"
2859
2980
  msgstr "[المصدر]"
@@ -3029,23 +3150,23 @@ msgstr ""
3029
3150
  msgid "Failed to parse type_comment for %r: %s"
3030
3151
  msgstr ""
3031
3152
 
3032
- #: sphinx/ext/autosummary/__init__.py:251
3153
+ #: sphinx/ext/autosummary/__init__.py:252
3033
3154
  #, python-format
3034
3155
  msgid "autosummary references excluded document %r. Ignored."
3035
3156
  msgstr ""
3036
3157
 
3037
- #: sphinx/ext/autosummary/__init__.py:253
3158
+ #: sphinx/ext/autosummary/__init__.py:254
3038
3159
  #, python-format
3039
3160
  msgid ""
3040
3161
  "autosummary: stub file not found %r. Check your autosummary_generate "
3041
3162
  "setting."
3042
3163
  msgstr ""
3043
3164
 
3044
- #: sphinx/ext/autosummary/__init__.py:272
3165
+ #: sphinx/ext/autosummary/__init__.py:273
3045
3166
  msgid "A captioned autosummary requires :toctree: option. ignored."
3046
3167
  msgstr ""
3047
3168
 
3048
- #: sphinx/ext/autosummary/__init__.py:325
3169
+ #: sphinx/ext/autosummary/__init__.py:326
3049
3170
  #, python-format
3050
3171
  msgid ""
3051
3172
  "autosummary: failed to import %s.\n"
@@ -3053,46 +3174,52 @@ msgid ""
3053
3174
  "%s"
3054
3175
  msgstr ""
3055
3176
 
3056
- #: sphinx/ext/autosummary/__init__.py:339
3177
+ #: sphinx/ext/autosummary/__init__.py:340
3057
3178
  #, python-format
3058
3179
  msgid "failed to parse name %s"
3059
3180
  msgstr ""
3060
3181
 
3061
- #: sphinx/ext/autosummary/__init__.py:344
3182
+ #: sphinx/ext/autosummary/__init__.py:345
3062
3183
  #, python-format
3063
3184
  msgid "failed to import object %s"
3064
3185
  msgstr ""
3065
3186
 
3066
- #: sphinx/ext/autosummary/__init__.py:802
3187
+ #: sphinx/ext/autosummary/__init__.py:644
3188
+ #, python-format
3189
+ msgid ""
3190
+ "Summarised items should not include the current module. Replace %r with %r."
3191
+ msgstr ""
3192
+
3193
+ #: sphinx/ext/autosummary/__init__.py:808
3067
3194
  #, python-format
3068
3195
  msgid "autosummary_generate: file not found: %s"
3069
3196
  msgstr ""
3070
3197
 
3071
- #: sphinx/ext/autosummary/__init__.py:810
3198
+ #: sphinx/ext/autosummary/__init__.py:816
3072
3199
  msgid ""
3073
3200
  "autosummary generates .rst files internally. But your source_suffix does not"
3074
3201
  " contain .rst. Skipped."
3075
3202
  msgstr ""
3076
3203
 
3077
- #: sphinx/ext/autosummary/generate.py:200
3078
- #: sphinx/ext/autosummary/generate.py:358
3204
+ #: sphinx/ext/autosummary/generate.py:211
3205
+ #: sphinx/ext/autosummary/generate.py:387
3079
3206
  #, python-format
3080
3207
  msgid ""
3081
3208
  "autosummary: failed to determine %r to be documented, the following exception was raised:\n"
3082
3209
  "%s"
3083
3210
  msgstr ""
3084
3211
 
3085
- #: sphinx/ext/autosummary/generate.py:470
3212
+ #: sphinx/ext/autosummary/generate.py:516
3086
3213
  #, python-format
3087
3214
  msgid "[autosummary] generating autosummary for: %s"
3088
3215
  msgstr ""
3089
3216
 
3090
- #: sphinx/ext/autosummary/generate.py:474
3217
+ #: sphinx/ext/autosummary/generate.py:519
3091
3218
  #, python-format
3092
3219
  msgid "[autosummary] writing to %s"
3093
3220
  msgstr ""
3094
3221
 
3095
- #: sphinx/ext/autosummary/generate.py:517
3222
+ #: sphinx/ext/autosummary/generate.py:561
3096
3223
  #, python-format
3097
3224
  msgid ""
3098
3225
  "[autosummary] failed to import %s.\n"
@@ -3100,7 +3227,7 @@ msgid ""
3100
3227
  "%s"
3101
3228
  msgstr ""
3102
3229
 
3103
- #: sphinx/ext/autosummary/generate.py:690
3230
+ #: sphinx/ext/autosummary/generate.py:756
3104
3231
  msgid ""
3105
3232
  "\n"
3106
3233
  "Generate ReStructuredText using autosummary directives.\n"
@@ -3115,36 +3242,101 @@ msgid ""
3115
3242
  " pydoc sphinx.ext.autosummary\n"
3116
3243
  msgstr ""
3117
3244
 
3118
- #: sphinx/ext/autosummary/generate.py:707
3245
+ #: sphinx/ext/autosummary/generate.py:778
3119
3246
  msgid "source files to generate rST files for"
3120
3247
  msgstr ""
3121
3248
 
3122
- #: sphinx/ext/autosummary/generate.py:711
3249
+ #: sphinx/ext/autosummary/generate.py:786
3123
3250
  msgid "directory to place all output in"
3124
3251
  msgstr ""
3125
3252
 
3126
- #: sphinx/ext/autosummary/generate.py:714
3253
+ #: sphinx/ext/autosummary/generate.py:794
3127
3254
  #, python-format
3128
3255
  msgid "default suffix for files (default: %(default)s)"
3129
3256
  msgstr ""
3130
3257
 
3131
- #: sphinx/ext/autosummary/generate.py:718
3258
+ #: sphinx/ext/autosummary/generate.py:802
3132
3259
  #, python-format
3133
3260
  msgid "custom template directory (default: %(default)s)"
3134
3261
  msgstr ""
3135
3262
 
3136
- #: sphinx/ext/autosummary/generate.py:722
3263
+ #: sphinx/ext/autosummary/generate.py:810
3137
3264
  #, python-format
3138
3265
  msgid "document imported members (default: %(default)s)"
3139
3266
  msgstr ""
3140
3267
 
3141
- #: sphinx/ext/autosummary/generate.py:726
3268
+ #: sphinx/ext/autosummary/generate.py:818
3142
3269
  #, python-format
3143
3270
  msgid ""
3144
3271
  "document exactly the members in module __all__ attribute. (default: "
3145
3272
  "%(default)s)"
3146
3273
  msgstr ""
3147
3274
 
3275
+ #: sphinx/ext/intersphinx/_load.py:35
3276
+ #, python-format
3277
+ msgid "intersphinx identifier %r is not string. Ignored"
3278
+ msgstr ""
3279
+
3280
+ #: sphinx/ext/intersphinx/_load.py:57
3281
+ #, python-format
3282
+ msgid "Failed to read intersphinx_mapping[%s], ignored: %r"
3283
+ msgstr ""
3284
+
3285
+ #: sphinx/ext/intersphinx/_load.py:121
3286
+ #, python-format
3287
+ msgid "loading intersphinx inventory '%s' from %s..."
3288
+ msgstr ""
3289
+
3290
+ #: sphinx/ext/intersphinx/_load.py:136
3291
+ msgid ""
3292
+ "encountered some issues with some of the inventories, but they had working "
3293
+ "alternatives:"
3294
+ msgstr ""
3295
+
3296
+ #: sphinx/ext/intersphinx/_load.py:142
3297
+ msgid "failed to reach any of the inventories with the following issues:"
3298
+ msgstr ""
3299
+
3300
+ #: sphinx/ext/intersphinx/_load.py:166
3301
+ #, python-format
3302
+ msgid "intersphinx inventory has moved: %s -> %s"
3303
+ msgstr ""
3304
+
3305
+ #: sphinx/ext/intersphinx/_resolve.py:42
3306
+ #, python-format
3307
+ msgid "(in %s v%s)"
3308
+ msgstr ""
3309
+
3310
+ #: sphinx/ext/intersphinx/_resolve.py:44
3311
+ #, python-format
3312
+ msgid "(in %s)"
3313
+ msgstr ""
3314
+
3315
+ #: sphinx/ext/intersphinx/_resolve.py:85
3316
+ #, python-format
3317
+ msgid "inventory '%s': multiple matches found for %s:%s"
3318
+ msgstr ""
3319
+
3320
+ #: sphinx/ext/intersphinx/_resolve.py:281
3321
+ #, python-format
3322
+ msgid "inventory for external cross-reference not found: %r"
3323
+ msgstr ""
3324
+
3325
+ #: sphinx/ext/intersphinx/_resolve.py:289
3326
+ #, python-format
3327
+ msgid "invalid external cross-reference suffix: %r"
3328
+ msgstr ""
3329
+
3330
+ #: sphinx/ext/intersphinx/_resolve.py:300
3331
+ #, python-format
3332
+ msgid "domain for external cross-reference not found: %r"
3333
+ msgstr ""
3334
+
3335
+ #: sphinx/ext/intersphinx/_resolve.py:493
3336
+ #, python-format
3337
+ msgid "external %s:%s reference target not found: %s"
3338
+ msgstr ""
3339
+
3148
3340
  #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728
3149
3341
  msgid "Keyword Arguments"
3150
3342
  msgstr ""
@@ -3201,65 +3393,65 @@ msgstr ""
3201
3393
  msgid "malformed string literal (missing opening quote): %s"
3202
3394
  msgstr ""
3203
3395
 
3204
- #: sphinx/locale/__init__.py:228
3396
+ #: sphinx/locale/__init__.py:224
3205
3397
  msgid "Attention"
3206
3398
  msgstr "تنبيه"
3207
3399
 
3208
- #: sphinx/locale/__init__.py:229
3400
+ #: sphinx/locale/__init__.py:225
3209
3401
  msgid "Caution"
3210
3402
  msgstr "احتياط"
3211
3403
 
3212
- #: sphinx/locale/__init__.py:230
3404
+ #: sphinx/locale/__init__.py:226
3213
3405
  msgid "Danger"
3214
3406
  msgstr "خطر"
3215
3407
 
3216
- #: sphinx/locale/__init__.py:231
3408
+ #: sphinx/locale/__init__.py:227
3217
3409
  msgid "Error"
3218
3410
  msgstr "خطأ"
3219
3411
 
3220
- #: sphinx/locale/__init__.py:232
3412
+ #: sphinx/locale/__init__.py:228
3221
3413
  msgid "Hint"
3222
3414
  msgstr "تلميح"
3223
3415
 
3224
- #: sphinx/locale/__init__.py:233
3416
+ #: sphinx/locale/__init__.py:229
3225
3417
  msgid "Important"
3226
3418
  msgstr "مهم"
3227
3419
 
3228
- #: sphinx/locale/__init__.py:234
3420
+ #: sphinx/locale/__init__.py:230
3229
3421
  msgid "Note"
3230
3422
  msgstr "ملاحظة"
3231
3423
 
3232
- #: sphinx/locale/__init__.py:235
3424
+ #: sphinx/locale/__init__.py:231
3233
3425
  msgid "See also"
3234
3426
  msgstr "شاهد أيضا"
3235
3427
 
3236
- #: sphinx/locale/__init__.py:236
3428
+ #: sphinx/locale/__init__.py:232
3237
3429
  msgid "Tip"
3238
3430
  msgstr "نصيحة"
3239
3431
 
3240
- #: sphinx/locale/__init__.py:237
3432
+ #: sphinx/locale/__init__.py:233
3241
3433
  msgid "Warning"
3242
3434
  msgstr "تحذير"
3243
3435
 
3244
- #: sphinx/templates/latex/longtable.tex_t:52
3245
- #: sphinx/templates/latex/sphinxmessages.sty_t:8
3436
+ #: sphinx/templates/latex/longtable.tex.jinja:52
3437
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:8
3246
3438
  msgid "continued from previous page"
3247
3439
  msgstr ""
3248
3440
 
3249
- #: sphinx/templates/latex/longtable.tex_t:63
3250
- #: sphinx/templates/latex/sphinxmessages.sty_t:9
3441
+ #: sphinx/templates/latex/longtable.tex.jinja:63
3442
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:9
3251
3443
  msgid "continues on next page"
3252
3444
  msgstr "استمرار في الصفحة التالية"
3253
3445
 
3254
- #: sphinx/templates/latex/sphinxmessages.sty_t:10
3446
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:10
3255
3447
  msgid "Non-alphabetical"
3256
3448
  msgstr ""
3257
3449
 
3258
- #: sphinx/templates/latex/sphinxmessages.sty_t:12
3450
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:12
3259
3451
  msgid "Numbers"
3260
3452
  msgstr "أرقام"
3261
3453
 
3262
- #: sphinx/templates/latex/sphinxmessages.sty_t:13
3454
+ #: sphinx/templates/latex/sphinxmessages.sty.jinja:13
3263
3455
  msgid "page"
3264
3456
  msgstr "صفحة"
3265
3457
 
@@ -3268,7 +3460,7 @@ msgstr "صفحة"
3268
3460
  msgid "Table of Contents"
3269
3461
  msgstr "قائمة المحتويات"
3270
3462
 
3271
- #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141
3463
+ #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138
3272
3464
  #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23
3273
3465
  msgid "Search"
3274
3466
  msgstr "بحث"
@@ -3326,12 +3518,12 @@ msgstr ""
3326
3518
  msgid "all functions, classes, terms"
3327
3519
  msgstr ""
3328
3520
 
3329
- #: sphinx/themes/basic/genindex-single.html:33
3521
+ #: sphinx/themes/basic/genindex-single.html:34
3330
3522
  #, python-format
3331
- msgid "Index &ndash; %(key)s"
3523
+ msgid "Index &#x2013; %(key)s"
3332
3524
  msgstr ""
3333
3525
 
3334
- #: sphinx/themes/basic/genindex-single.html:61
3526
+ #: sphinx/themes/basic/genindex-single.html:62
3335
3527
  #: sphinx/themes/basic/genindex-split.html:24
3336
3528
  #: sphinx/themes/basic/genindex-split.html:38
3337
3529
  #: sphinx/themes/basic/genindex.html:73
@@ -3350,31 +3542,31 @@ msgstr ""
3350
3542
  msgid "Navigation"
3351
3543
  msgstr ""
3352
3544
 
3353
- #: sphinx/themes/basic/layout.html:126
3545
+ #: sphinx/themes/basic/layout.html:123
3354
3546
  #, python-format
3355
3547
  msgid "Search within %(docstitle)s"
3356
3548
  msgstr "البحث ضمن %(docstitle)s"
3357
3549
 
3358
- #: sphinx/themes/basic/layout.html:135
3550
+ #: sphinx/themes/basic/layout.html:132
3359
3551
  msgid "About these documents"
3360
3552
  msgstr ""
3361
3553
 
3362
- #: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188
3363
- #: sphinx/themes/basic/layout.html:190
3554
+ #: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185
3555
+ #: sphinx/themes/basic/layout.html:187
3364
3556
  msgid "Copyright"
3365
3557
  msgstr "الحقوق"
3366
3558
 
3367
- #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200
3559
+ #: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197
3368
3560
  #, python-format
3369
3561
  msgid "&#169; %(copyright_prefix)s %(copyright)s."
3370
3562
  msgstr ""
3371
3563
 
3372
- #: sphinx/themes/basic/layout.html:212
3564
+ #: sphinx/themes/basic/layout.html:209
3373
3565
  #, python-format
3374
3566
  msgid "Last updated on %(last_updated)s."
3375
3567
  msgstr ""
3376
3568
 
3377
- #: sphinx/themes/basic/layout.html:215
3569
+ #: sphinx/themes/basic/layout.html:212
3378
3570
  #, python-format
3379
3571
  msgid ""
3380
3572
  "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
@@ -3477,7 +3669,7 @@ msgstr ""
3477
3669
  msgid "Preparing search..."
3478
3670
  msgstr ""
3479
3671
 
3480
- #: sphinx/themes/basic/static/searchtools.js:463
3672
+ #: sphinx/themes/basic/static/searchtools.js:464
3481
3673
  msgid ", in "
3482
3674
  msgstr ""
3483
3675
 
@@ -3486,11 +3678,11 @@ msgid "Hide Search Matches"
3486
3678
  msgstr ""
3487
3679
 
3488
3680
  #: sphinx/themes/classic/layout.html:20
3489
- #: sphinx/themes/classic/static/sidebar.js_t:57
3681
+ #: sphinx/themes/classic/static/sidebar.js.jinja:57
3490
3682
  msgid "Collapse sidebar"
3491
3683
  msgstr ""
3492
3684
 
3493
- #: sphinx/themes/classic/static/sidebar.js_t:48
3685
+ #: sphinx/themes/classic/static/sidebar.js.jinja:48
3494
3686
  msgid "Expand sidebar"
3495
3687
  msgstr ""
3496
3688
 
@@ -3566,17 +3758,17 @@ msgstr ""
3566
3758
  msgid "%r reference target not found: %s"
3567
3759
  msgstr ""
3568
3760
 
3569
- #: sphinx/transforms/post_transforms/images.py:89
3761
+ #: sphinx/transforms/post_transforms/images.py:83
3570
3762
  #, python-format
3571
3763
  msgid "Could not fetch remote image: %s [%d]"
3572
3764
  msgstr ""
3573
3765
 
3574
- #: sphinx/transforms/post_transforms/images.py:117
3766
+ #: sphinx/transforms/post_transforms/images.py:111
3575
3767
  #, python-format
3576
3768
  msgid "Could not fetch remote image: %s [%s]"
3577
3769
  msgstr ""
3578
3770
 
3579
- #: sphinx/transforms/post_transforms/images.py:135
3771
+ #: sphinx/transforms/post_transforms/images.py:127
3580
3772
  #, python-format
3581
3773
  msgid "Unknown image format: %s..."
3582
3774
  msgstr ""
@@ -3586,11 +3778,11 @@ msgstr ""
3586
3778
  msgid "undecodable source characters, replacing with \"?\": %r"
3587
3779
  msgstr ""
3588
3780
 
3589
- #: sphinx/util/display.py:78
3781
+ #: sphinx/util/display.py:80
3590
3782
  msgid "skipped"
3591
3783
  msgstr ""
3592
3784
 
3593
- #: sphinx/util/display.py:83
3785
+ #: sphinx/util/display.py:85
3594
3786
  msgid "failed"
3595
3787
  msgstr "فشل"
3596
3788
 
@@ -3601,12 +3793,12 @@ msgid ""
3601
3793
  "not in the domain."
3602
3794
  msgstr ""
3603
3795
 
3604
- #: sphinx/util/docutils.py:295
3796
+ #: sphinx/util/docutils.py:261
3605
3797
  #, python-format
3606
3798
  msgid "unknown directive or role name: %s:%s"
3607
3799
  msgstr ""
3608
3800
 
3609
- #: sphinx/util/docutils.py:591
3801
+ #: sphinx/util/docutils.py:639
3610
3802
  #, python-format
3611
3803
  msgid "unknown node type: %r"
3612
3804
  msgstr ""
@@ -3633,18 +3825,23 @@ msgid ""
3633
3825
  "it directly: %s"
3634
3826
  msgstr ""
3635
3827
 
3636
- #: sphinx/util/nodes.py:386
3828
+ #: sphinx/util/inventory.py:168
3829
+ #, python-format
3830
+ msgid "inventory <%s> contains multiple definitions for %s"
3831
+ msgstr ""
3832
+
3833
+ #: sphinx/util/nodes.py:383
3637
3834
  #, python-format
3638
3835
  msgid ""
3639
3836
  "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
3640
3837
  msgstr ""
3641
3838
 
3642
- #: sphinx/util/nodes.py:439
3839
+ #: sphinx/util/nodes.py:436
3643
3840
  #, python-format
3644
3841
  msgid "toctree contains ref to nonexisting file %r"
3645
3842
  msgstr ""
3646
3843
 
3647
- #: sphinx/util/nodes.py:637
3844
+ #: sphinx/util/nodes.py:634
3648
3845
  #, python-format
3649
3846
  msgid "exception while evaluating only directive expression: %s"
3650
3847
  msgstr ""
@@ -3654,45 +3851,50 @@ msgstr ""
3654
3851
  msgid "default role %s not found"
3655
3852
  msgstr ""
3656
3853
 
3657
- #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109
3854
+ #: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108
3658
3855
  msgid "Link to this definition"
3659
3856
  msgstr ""
3660
3857
 
3661
- #: sphinx/writers/html5.py:397
3858
+ #: sphinx/writers/html5.py:398
3662
3859
  #, python-format
3663
3860
  msgid "numfig_format is not defined for %s"
3664
3861
  msgstr ""
3665
3862
 
3666
- #: sphinx/writers/html5.py:407
3863
+ #: sphinx/writers/html5.py:408
3667
3864
  #, python-format
3668
3865
  msgid "Any IDs not assigned for %s node"
3669
3866
  msgstr ""
3670
3867
 
3671
- #: sphinx/writers/html5.py:462
3868
+ #: sphinx/writers/html5.py:463
3672
3869
  msgid "Link to this term"
3673
3870
  msgstr ""
3674
3871
 
3675
- #: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501
3872
+ #: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502
3676
3873
  msgid "Link to this heading"
3677
3874
  msgstr ""
3678
3875
 
3679
- #: sphinx/writers/html5.py:505
3876
+ #: sphinx/writers/html5.py:506
3680
3877
  msgid "Link to this table"
3681
3878
  msgstr ""
3682
3879
 
3683
- #: sphinx/writers/html5.py:548
3880
+ #: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977
3881
+ #, python-format
3882
+ msgid "unsupported rubric heading level: %s"
3883
+ msgstr ""
3884
+
3885
+ #: sphinx/writers/html5.py:573
3684
3886
  msgid "Link to this code"
3685
3887
  msgstr ""
3686
3888
 
3687
- #: sphinx/writers/html5.py:550
3889
+ #: sphinx/writers/html5.py:575
3688
3890
  msgid "Link to this image"
3689
3891
  msgstr ""
3690
3892
 
3691
- #: sphinx/writers/html5.py:552
3893
+ #: sphinx/writers/html5.py:577
3692
3894
  msgid "Link to this toctree"
3693
3895
  msgstr ""
3694
3896
 
3695
- #: sphinx/writers/html5.py:688
3897
+ #: sphinx/writers/html5.py:713
3696
3898
  msgid "Could not obtain image size. :scale: option is ignored."
3697
3899
  msgstr ""
3698
3900
 
@@ -3705,31 +3907,36 @@ msgstr ""
3705
3907
  msgid "too large :maxdepth:, ignored."
3706
3908
  msgstr ""
3707
3909
 
3708
- #: sphinx/writers/latex.py:625
3910
+ #: sphinx/writers/latex.py:530
3911
+ #, python-format
3912
+ msgid "template %s not found; loading from legacy %s instead"
3913
+ msgstr ""
3914
+
3915
+ #: sphinx/writers/latex.py:634
3709
3916
  msgid "document title is not a single Text node"
3710
3917
  msgstr ""
3711
3918
 
3712
- #: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626
3919
+ #: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631
3713
3920
  msgid ""
3714
3921
  "encountered title node not in section, topic, table, admonition or sidebar"
3715
3922
  msgstr ""
3716
3923
 
3717
- #: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259
3718
- #: sphinx/writers/texinfo.py:641
3924
+ #: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259
3925
+ #: sphinx/writers/texinfo.py:646
3719
3926
  msgid "Footnotes"
3720
3927
  msgstr ""
3721
3928
 
3722
- #: sphinx/writers/latex.py:1028
3929
+ #: sphinx/writers/latex.py:1050
3723
3930
  msgid ""
3724
3931
  "both tabularcolumns and :widths: option are given. :widths: is ignored."
3725
3932
  msgstr ""
3726
3933
 
3727
- #: sphinx/writers/latex.py:1388
3934
+ #: sphinx/writers/latex.py:1410
3728
3935
  #, python-format
3729
3936
  msgid "dimension unit %s is invalid. Ignored."
3730
3937
  msgstr ""
3731
3938
 
3732
- #: sphinx/writers/latex.py:1722
3939
+ #: sphinx/writers/latex.py:1744
3733
3940
  #, python-format
3734
3941
  msgid "unknown index entry type %s found"
3735
3942
  msgstr ""
@@ -3743,11 +3950,11 @@ msgstr ""
3743
3950
  msgid "[image]"
3744
3951
  msgstr ""
3745
3952
 
3746
- #: sphinx/writers/texinfo.py:1197
3953
+ #: sphinx/writers/texinfo.py:1202
3747
3954
  msgid "caption not inside a figure."
3748
3955
  msgstr ""
3749
3956
 
3750
- #: sphinx/writers/texinfo.py:1284
3957
+ #: sphinx/writers/texinfo.py:1289
3751
3958
  #, python-format
3752
3959
  msgid "unimplemented node type: %r"
3753
3960
  msgstr ""