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