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

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

Potentially problematic release.


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

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