From 6afde2e3016d61342977c55ac7f4a71e38adcb76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B?= <2589111+jfbu@users.noreply.github.com> Date: Thu, 30 Jun 2022 19:45:41 +0200 Subject: [PATCH 01/13] LaTeX: refactor sphinxShadowBox to allow colors for frame and shadow --- doc/latex.rst | 16 +++++++++- sphinx/texinputs/sphinx.sty | 5 ++- sphinx/texinputs/sphinxlatexshadowbox.sty | 39 +++++++++++++++++------ 3 files changed, 48 insertions(+), 12 deletions(-) diff --git a/doc/latex.rst b/doc/latex.rst index 294de5599..0140d0b2c 100644 --- a/doc/latex.rst +++ b/doc/latex.rst @@ -846,7 +846,7 @@ Do not use quotes to enclose values, whether numerical or strings. Default: ``5pt`` ``shadowsize`` - The width of the lateral "shadow" to the right. + The width of the lateral "shadow" to the right and bottom. Default: ``4pt`` @@ -855,6 +855,20 @@ Do not use quotes to enclose values, whether numerical or strings. Default: ``\fboxrule`` +``shadowBorderColor`` + The color of the frame around :dudir:`topic` boxes. + + Default: ``{rgb}{0,0,0}`` (black) + + .. versionadded:: 5.1.0 + +``shadowShadowColor`` + The color of the lateral "shadow" to the right and bottom. + + Default: ``{rgb}{0,0,0}`` (black) + + .. versionadded:: 5.1.0 + |notebdcolors| The colour for the two horizontal rules used by Sphinx in LaTeX for styling a :dudir:`note` type admonition. diff --git a/sphinx/texinputs/sphinx.sty b/sphinx/texinputs/sphinx.sty index 930d1b64f..b67722c1b 100644 --- a/sphinx/texinputs/sphinx.sty +++ b/sphinx/texinputs/sphinx.sty @@ -6,7 +6,7 @@ % \NeedsTeXFormat{LaTeX2e}[1995/12/01] -\ProvidesPackage{sphinx}[2021/01/27 v4.0.0 LaTeX package (Sphinx markup)] +\ProvidesPackage{sphinx}[2022/06/30 v5.1.0 LaTeX package (Sphinx markup)] % provides \ltx@ifundefined % (many packages load ltxcmds: graphicx does for pdftex and lualatex but @@ -154,6 +154,9 @@ }% % Default color chosen to be as in minted.sty LaTeX package! \sphinxDeclareSphinxColorOption{VerbatimHighlightColor}{{rgb}{0.878,1,1}} +% topic and contents boxes +\sphinxDeclareSphinxColorOption{shadowBorderColor}{{rgb}{0,0,0}} +\sphinxDeclareSphinxColorOption{shadowShadowColor}{{rgb}{0,0,0}} % admonition boxes, "light" style \sphinxDeclareSphinxColorOption{noteBorderColor}{{rgb}{0,0,0}} \sphinxDeclareSphinxColorOption{hintBorderColor}{{rgb}{0,0,0}} diff --git a/sphinx/texinputs/sphinxlatexshadowbox.sty b/sphinx/texinputs/sphinxlatexshadowbox.sty index 8d6c78666..420fee2f2 100644 --- a/sphinx/texinputs/sphinxlatexshadowbox.sty +++ b/sphinx/texinputs/sphinxlatexshadowbox.sty @@ -1,7 +1,7 @@ %% TOPIC AND CONTENTS BOXES % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexshadowbox.sty}[2021/01/27 sphinxShadowBox] +\ProvidesFile{sphinxlatexshadowbox.sty}[2022/06/30 sphinxShadowBox] % Provides support for this output mark-up from Sphinx latex writer: % @@ -17,30 +17,48 @@ % Requires: \RequirePackage{framed} -% Again based on use of "framed.sty", this allows breakable framed boxes. +% Let's draw the contents first, then the frame and the shadow last, +% to avoid problems with some pdf viewers. \long\def\spx@ShadowFBox#1{% \leavevmode\begingroup - % first we frame the box #1 + % first we prepare a box with the contents in an invisible frame \setbox\@tempboxa - \hbox{\vrule\@width\sphinxshadowrule - \vbox{\hrule\@height\sphinxshadowrule + \hbox{\kern\sphinxshadowrule + \vbox{\kern\sphinxshadowrule \kern\sphinxshadowsep \hbox{\kern\sphinxshadowsep #1\kern\sphinxshadowsep}% \kern\sphinxshadowsep + \kern\sphinxshadowrule}% + \kern\sphinxshadowrule}% + % now we unbox the previous one, drawing contents first, then + % we frame it with a color + \setbox\@tempboxa + \hbox{\unhcopy\@tempboxa + \kern-\wd\@tempboxa + {\color{sphinxshadowBorderColor}% + \vrule\@width\sphinxshadowrule + \vbox{\hrule\@height\sphinxshadowrule + \kern\dimexpr\ht\@tempboxa-\sphinxshadowrule\relax + \hbox{\kern\dimexpr\wd\@tempboxa-2\sphinxshadowrule\relax}% + \kern\dimexpr\dp\@tempboxa-\sphinxshadowrule\relax \hrule\@height\sphinxshadowrule}% \vrule\@width\sphinxshadowrule}% + }% % Now we add the shadow, like \shadowbox from fancybox.sty would do - \dimen@\dimexpr.5\sphinxshadowrule+\sphinxshadowsize\relax + % Formerly, shadow was drawn partly on top of frame, but this was + % before both frame and shadow acquired colors. \hbox{\vbox{\offinterlineskip - \hbox{\copy\@tempboxa\kern-.5\sphinxshadowrule + \hbox{\copy\@tempboxa % add shadow on right side \lower\sphinxshadowsize - \hbox{\vrule\@height\ht\@tempboxa \@width\dimen@}% + \hbox{{\color{sphinxshadowShadowColor}% + \vrule\@height\ht\@tempboxa \@width\sphinxshadowsize}}% }% - \kern-\dimen@ % shift back vertically to bottom of frame + \kern-\sphinxshadowsize % shift back vertically to bottom of frame % and add shadow at bottom \moveright\sphinxshadowsize - \vbox{\hrule\@width\wd\@tempboxa \@height\dimen@}% + \vbox{{\color{sphinxshadowShadowColor}% + \hrule\@width\wd\@tempboxa \@height\sphinxshadowsize}}% }% % move left by the size of right shadow so shadow adds no width \kern-\sphinxshadowsize @@ -48,6 +66,7 @@ \endgroup } +% Again based on use of "framed.sty", this allows breakable framed boxes. % use framed.sty to allow page breaks in frame+shadow % works well inside Lists and Quote-like environments % produced by ``topic'' directive (or local contents) From 0d3f606dff3a1e1fec23c30b0ae08e94653f9bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B?= <2589111+jfbu@users.noreply.github.com> Date: Fri, 1 Jul 2022 09:41:58 +0200 Subject: [PATCH 02/13] LaTeX: code comments on sphinxShadowBox for topic directive --- sphinx/texinputs/sphinxlatexshadowbox.sty | 79 ++++++++++++++++------- 1 file changed, 56 insertions(+), 23 deletions(-) diff --git a/sphinx/texinputs/sphinxlatexshadowbox.sty b/sphinx/texinputs/sphinxlatexshadowbox.sty index 420fee2f2..12d3cec09 100644 --- a/sphinx/texinputs/sphinxlatexshadowbox.sty +++ b/sphinx/texinputs/sphinxlatexshadowbox.sty @@ -21,7 +21,9 @@ % to avoid problems with some pdf viewers. \long\def\spx@ShadowFBox#1{% \leavevmode\begingroup - % first we prepare a box with the contents in an invisible frame + % First we prepare a box with the contents and some reserved space for the + % frame and inner separation; with more parameters we could allow various + % border widths for top, bottom, left, right, but here all are equal. \setbox\@tempboxa \hbox{\kern\sphinxshadowrule \vbox{\kern\sphinxshadowrule @@ -30,25 +32,41 @@ \kern\sphinxshadowsep \kern\sphinxshadowrule}% \kern\sphinxshadowrule}% - % now we unbox the previous one, drawing contents first, then - % we frame it with a color + % Now we rebox, adding the colored frame for which space was reserved. \setbox\@tempboxa - \hbox{\unhcopy\@tempboxa + \hbox{\unhcopy\@tempboxa % not \unhbox to be able to refer to \ht, \wd later \kern-\wd\@tempboxa - {\color{sphinxshadowBorderColor}% - \vrule\@width\sphinxshadowrule - \vbox{\hrule\@height\sphinxshadowrule - \kern\dimexpr\ht\@tempboxa-\sphinxshadowrule\relax - \hbox{\kern\dimexpr\wd\@tempboxa-2\sphinxshadowrule\relax}% - \kern\dimexpr\dp\@tempboxa-\sphinxshadowrule\relax - \hrule\@height\sphinxshadowrule}% - \vrule\@width\sphinxshadowrule}% - }% - % Now we add the shadow, like \shadowbox from fancybox.sty would do - % Formerly, shadow was drawn partly on top of frame, but this was - % before both frame and shadow acquired colors. + {\color{sphinxshadowBorderColor}% color push here + \vrule\@width\sphinxshadowrule% TeX auto-computes the height + \vbox{\hrule\@height\sphinxshadowrule% TeX auto-computes the width + \kern\dimexpr\ht\@tempboxa-\sphinxshadowrule\relax + % This empty \hbox is here to give width used by \hrule + % As \dp\@tempboxa is zero, the \hbox location is at the + % bottom of frame. + \hbox{\kern\dimexpr\wd\@tempboxa-2\sphinxshadowrule\relax}% + \kern\dimexpr\dp\@tempboxa-\sphinxshadowrule\relax + \hrule\@height\sphinxshadowrule% TeX auto-computes the width + }% + \vrule\@width\sphinxshadowrule% TeX auto-computes the height + }% color pop will happen here + }% + % Now we add the shadow. + % + % Formerly, shadow was drawn partly on top of frame, but this was before + % both frame and shadow acquired colors. The width of the part of the + % shadow on the right is hidden, so it will stick into the right page + % margin. + % + % The frame borders are included into this final \hbox, which is sent back + % to \MakeFramed/\endMakeFramed measurements and then finally to page + % shipout. As \advance\hsize-\width appears in \MakeFramed, where \width is + % the computed extra width added by the framing plus inner separation (so + % actually 2\sphinxshadowrule+2\sphinxshadowsep), this all means that + % horizontally the frame will be perfectly adjusted to the *total* text + % width limits (i.e. independent of current list nesting; but anyhow + % Docutils does not allow nesting of topic within topics or body elements). \hbox{\vbox{\offinterlineskip - \hbox{\copy\@tempboxa + \hbox{\copy\@tempboxa % not \box as we need \wd and \ht next % add shadow on right side \lower\sphinxshadowsize \hbox{{\color{sphinxshadowShadowColor}% @@ -60,17 +78,32 @@ \vbox{{\color{sphinxshadowShadowColor}% \hrule\@width\wd\@tempboxa \@height\sphinxshadowsize}}% }% - % move left by the size of right shadow so shadow adds no width + % move left by the size of right shadow so shadow adds no width, and + % will stick into right margin + % (we did not conceal of course from TeX the depth) \kern-\sphinxshadowsize }% \endgroup } -% Again based on use of "framed.sty", this allows breakable framed boxes. -% use framed.sty to allow page breaks in frame+shadow -% works well inside Lists and Quote-like environments -% produced by ``topic'' directive (or local contents) -% could nest if LaTeX writer authorized it +% Use framed.sty \MakeFramed/\endMakeFramed to allow page breaks for topic +% boxes. Originally Sphinx used \shadowbox from fancybox.sty but it did not +% allow pagebreaks (which was problematic for "contents" directive if there +% are many subsections). +% +% Docutils does not allow topic to be nested within topics or other body +% elements. But the LaTeX code here does allow it: +% +% - a topic inside another topic would be rendered in a minipage (thus not +% allowing pagebreaks). Its external frame would adapt perfectly to +% the *current (smaller) width for text*. +% +% - a topic inside (nested) lists or quote environments would have its frame +% take the *full width* of the page, but its text contents on the other hand +% would obey exactly the current indentation plus inner separation. This is +% in contrast with the framing used for literal blocks, also based, but in a +% more sophisticated way on usage of \MakeFramed/\endMakeFramed, and +% adjusting to current text indentation. \newenvironment{sphinxShadowBox} {\def\FrameCommand {\spx@ShadowFBox }% \advance\spx@image@maxheight From cf8d5357fc703f24fc287b97d1f4534d94d5f4cf Mon Sep 17 00:00:00 2001 From: neilnaveen <42328488+neilnaveen@users.noreply.github.com> Date: Sat, 2 Jul 2022 04:40:42 -0500 Subject: [PATCH 03/13] Set permissions for GitHub Actions (#10607) --- .github/workflows/builddoc.yml | 3 +++ .github/workflows/coverage.yml | 3 +++ .github/workflows/create-release.yml | 5 +++++ .github/workflows/docutils-latest.yml | 3 +++ .github/workflows/lint.yml | 3 +++ .github/workflows/transifex.yml | 6 ++++++ 6 files changed, 23 insertions(+) diff --git a/.github/workflows/builddoc.yml b/.github/workflows/builddoc.yml index b045fcfc2..3e1225c91 100644 --- a/.github/workflows/builddoc.yml +++ b/.github/workflows/builddoc.yml @@ -2,6 +2,9 @@ name: Build document on: [push, pull_request] +permissions: + contents: read + jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 091abd5c2..c98ff3620 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -2,6 +2,9 @@ name: Coverage on: [push] +permissions: + contents: read + jobs: coverage: runs-on: ubuntu-latest diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 2da2ad3ea..12ac825fb 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -5,8 +5,13 @@ on: tags: - "v*.*.*" +permissions: + contents: read + jobs: create-release: + permissions: + contents: write # for softprops/action-gh-release to create GitHub release runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.github/workflows/docutils-latest.yml b/.github/workflows/docutils-latest.yml index 7a730d657..91d9a4197 100644 --- a/.github/workflows/docutils-latest.yml +++ b/.github/workflows/docutils-latest.yml @@ -5,6 +5,9 @@ on: - cron: "0 0 * * SUN" workflow_dispatch: +permissions: + contents: read + jobs: test: if: github.repository_owner == 'sphinx-doc' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 48c21510a..5e583d7b6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,6 +2,9 @@ name: Lint source code on: [push, pull_request] +permissions: + contents: read + jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index d986293f8..0f9533a59 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -5,6 +5,9 @@ on: - cron: "0 0 * * SUN" workflow_dispatch: +permissions: + contents: read + jobs: push: if: github.repository_owner == 'sphinx-doc' @@ -30,6 +33,9 @@ jobs: TX_TOKEN: ${{ secrets.TX_TOKEN }} pull: + permissions: + contents: write # for peter-evans/create-pull-request to create branch + pull-requests: write # for peter-evans/create-pull-request to create a PR if: github.repository_owner == 'sphinx-doc' runs-on: ubuntu-latest From 8d99168794ab8be0de1e6281d1b76af8177acd3d Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 2 Jul 2022 10:56:29 +0100 Subject: [PATCH 04/13] Use `get_settings()` from Docutils 0.19 (#10624) --- sphinx/builders/html/__init__.py | 7 +++++-- sphinx/io.py | 6 +++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index e023e8194..4a6bc6ce0 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -229,8 +229,11 @@ class StandaloneHTMLBuilder(Builder): source_class=DocTreeInput, destination=StringOutput(encoding='unicode'), ) - op = pub.setup_option_parser(output_encoding='unicode', traceback=True) - pub.settings = op.get_default_values() + if docutils.__version_info__[:2] >= (0, 19): + pub.get_settings(output_encoding='unicode', traceback=True) + else: + op = pub.setup_option_parser(output_encoding='unicode', traceback=True) + pub.settings = op.get_default_values() self._publisher = pub def init(self) -> None: diff --git a/sphinx/io.py b/sphinx/io.py index 5ab7b2b63..1c36a791d 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -3,6 +3,7 @@ import codecs import warnings from typing import TYPE_CHECKING, Any, List, Type +import docutils from docutils import nodes from docutils.core import Publisher from docutils.frontend import Values @@ -212,5 +213,8 @@ def create_publisher(app: "Sphinx", filetype: str) -> Publisher: # Propagate exceptions by default when used programmatically: defaults = {"traceback": True, **app.env.settings} # Set default settings - pub.settings = pub.setup_option_parser(**defaults).get_default_values() # type: ignore + if docutils.__version_info__[:2] >= (0, 19): + pub.get_settings(**defaults) # type: ignore[arg-type] + else: + pub.settings = pub.setup_option_parser(**defaults).get_default_values() # type: ignore return pub From 13fb17468e547b18b3b8d6b5616ef3d1eb23ac98 Mon Sep 17 00:00:00 2001 From: danieleades <33452915+danieleades@users.noreply.github.com> Date: Sat, 2 Jul 2022 11:04:31 +0100 Subject: [PATCH 05/13] Remove redundant static typing casts (#10612) --- setup.cfg | 1 + sphinx/domains/c.py | 1 - sphinx/domains/changeset.py | 2 +- sphinx/domains/cpp.py | 3 +-- sphinx/util/nodes.py | 4 ++-- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index b0bfa28d3..1bc41de69 100644 --- a/setup.cfg +++ b/setup.cfg @@ -33,6 +33,7 @@ check_untyped_defs = True warn_unused_ignores = True strict_optional = False no_implicit_optional = True +warn_redundant_casts = True [tool:pytest] filterwarnings = diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index 3f7d4bf4b..375ed501a 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -3552,7 +3552,6 @@ class AliasTransform(SphinxTransform): def apply(self, **kwargs: Any) -> None: for node in self.document.findall(AliasNode): - node = cast(AliasNode, node) sig = node.sig parentKey = node.parentKey try: diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index 31fa44020..40e46159c 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -76,7 +76,7 @@ class VersionChange(SphinxDirective): content += node[0].children node[0].replace_self(nodes.paragraph('', '', content, translatable=False)) - para = cast(nodes.paragraph, node[0]) + para = node[0] para.insert(0, nodes.inline('', '%s: ' % text, classes=classes)) elif len(node) > 0: # the contents do not starts with a paragraph diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 980c4db5c..9cfb68ca9 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -2,7 +2,7 @@ import re from typing import (Any, Callable, Dict, Generator, Iterator, List, Optional, Tuple, TypeVar, - Union, cast) + Union) from docutils import nodes from docutils.nodes import Element, Node, TextElement, system_message @@ -7519,7 +7519,6 @@ class AliasTransform(SphinxTransform): def apply(self, **kwargs: Any) -> None: for node in self.document.findall(AliasNode): - node = cast(AliasNode, node) sig = node.sig parentKey = node.parentKey try: diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index 4abc3afa4..1a861a060 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -3,7 +3,7 @@ import re import unicodedata from typing import (TYPE_CHECKING, Any, Callable, Iterable, List, Optional, Set, Tuple, Type, - Union, cast) + Union) from docutils import nodes from docutils.nodes import Element, Node @@ -412,7 +412,7 @@ def inline_all_toctrees(builder: "Builder", docnameset: Set[str], docname: str, Record all docnames in *docnameset*, and output docnames with *colorfunc*. """ - tree = cast(nodes.document, tree.deepcopy()) + tree = tree.deepcopy() for toctreenode in list(tree.findall(addnodes.toctree)): newnodes = [] includefiles = map(str, toctreenode['includefiles']) From 213c29b3aa06d85fd63c2a21457493167c260aa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B?= <2589111+jfbu@users.noreply.github.com> Date: Sat, 2 Jul 2022 17:29:25 +0200 Subject: [PATCH 06/13] Fix #10506 (again): replacements to Pygments escapes Relates: pygments/pygments#2172 --- CHANGES | 4 +-- sphinx/highlighting.py | 35 ++++++++++++++++++++--- sphinx/texinputs/sphinxlatexstyletext.sty | 3 +- 3 files changed, 35 insertions(+), 7 deletions(-) diff --git a/CHANGES b/CHANGES index d52b5e70b..9123a0f76 100644 --- a/CHANGES +++ b/CHANGES @@ -19,8 +19,8 @@ Bugs fixed * #10594: HTML Theme: field term colons are doubled if using Docutils 0.18+ * #10596: Build failure if Docutils version is 0.18 (not 0.18.1) due to missing ``Node.findall()`` -* #10506: LaTeX: build error when using ``:cpp:stuff`` syntax highlighting in - figure caption +* #10506: LaTeX: build error if highlighting inline code role in figure caption + (refs: #10251) Testing -------- diff --git a/sphinx/highlighting.py b/sphinx/highlighting.py index b86c31f5e..62f10f7a1 100644 --- a/sphinx/highlighting.py +++ b/sphinx/highlighting.py @@ -40,12 +40,39 @@ escape_hl_chars = {ord('\\'): '\\PYGZbs{}', ord('}'): '\\PYGZcb{}'} # used if Pygments is available +# MEMO: no use of \protected here to avoid having to do hyperref extras, +# (if in future code highlighting in sectioning titles is activated): +# the definitions here use only robust, protected or chardef tokens, +# which are all known to the hyperref re-encoding for bookmarks. +# The " is troublesome because we would like to use \text\textquotedbl +# but \textquotedbl is *defined to raise an error* (!) if the font +# encoding is OT1. This however could happen from 'fontenc' key. +# MEMO: the Pygments escapes with \char`\ syntax, if the document +# uses old OT1 font encoding, work correctly only in monospace font. +# MEMO: the Pygmentize output mark-up is always with a {} after. _LATEX_ADD_STYLES = r''' -% Sphinx additions -% use textcomp quote to get a true single quote -\renewcommand\PYGZsq{\textquotesingle} +% Sphinx redefinitions +% Originally to obtain a straight single quote via package textcomp, then +% to fix problems for the 5.0.0 inline code highlighting (captions!). +% The \text is from amstext, a dependency of sphinx.sty. It is here only +% to avoid build errors if for some reason expansion is in math mode. +\def\PYGZbs{\text\textbackslash} +\def\PYGZus{\_} +\def\PYGZob{\{} +\def\PYGZcb{\}} +\def\PYGZca{\text\textasciicircum} +\def\PYGZam{\&} +\def\PYGZlt{\text\textless} +\def\PYGZgt{\text\textgreater} +\def\PYGZsh{\#} +\def\PYGZpc{\%} +\def\PYGZdl{\$} +\def\PYGZhy{\sphinxhyphen}% defined in sphinxlatexstyletext.sty +\def\PYGZsq{\text\textquotesingle} +\def\PYGZdq{"} +\def\PYGZti{\text\textasciitilde} \makeatletter -% use \protected to allow \PYG in \caption +% use \protected to allow syntax highlighting in captions \protected\def\PYG#1#2{\PYG@reset\PYG@toks#1+\relax+{\PYG@do{#2}}} \makeatother ''' diff --git a/sphinx/texinputs/sphinxlatexstyletext.sty b/sphinx/texinputs/sphinxlatexstyletext.sty index 539ee0de3..31378b76f 100644 --- a/sphinx/texinputs/sphinxlatexstyletext.sty +++ b/sphinx/texinputs/sphinxlatexstyletext.sty @@ -1,7 +1,7 @@ %% TEXT STYLING % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexstyletext.sty}[2021/12/06 text styling] +\ProvidesFile{sphinxlatexstyletext.sty}[2022/07/02 text styling] % Basically everything here consists of macros which are part of the latex % markup produced by the Sphinx latex writer @@ -68,6 +68,7 @@ \let\sphinxcrossref \@firstofone \let\sphinxtermref \@firstofone \let\sphinxhyphen\sphinxhyphenforbookmarks + \def\PYG#1#2{#2}% (can not yet appear in section titles, but perhaps in future) }} % Special characters From ca53b2eefc42a6b7c91ebaa5d69515a3d3be0f44 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 3 Jul 2022 00:22:59 +0000 Subject: [PATCH 07/13] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7947 -> 7947 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 492 -> 492 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7976 -> 7976 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5587 -> 5587 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2424 -> 2424 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8265 -> 8265 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6214 -> 6214 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13160 -> 13160 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11216 -> 11216 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82273 -> 82273 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 462 -> 462 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 14119 -> 14119 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 508 -> 508 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1864 -> 1864 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 83320 -> 83320 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33773 -> 33773 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6727 -> 6727 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 99682 -> 99682 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 84411 -> 85471 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 216 +++++------ sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 555 -> 555 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 4947 -> 4947 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 98870 -> 98870 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17189 -> 17189 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11533 -> 11533 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 60797 -> 60797 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3082 -> 3082 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10819 -> 10819 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 84968 -> 84968 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 85235 -> 85235 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7104 -> 7104 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6786 -> 6786 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2011 -> 2011 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6766 -> 6766 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8869 -> 8869 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19426 -> 19426 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29699 -> 29703 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 148 ++++---- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 544 -> 544 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81410 -> 81410 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8035 -> 8035 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8822 -> 8822 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16427 -> 16427 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3602 -> 3602 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68247 -> 68247 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5417 -> 5417 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/sphinx.pot | 144 +++---- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 79913 -> 79913 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9426 -> 9426 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 584 -> 584 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 579 -> 579 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6754 -> 6754 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 647 -> 647 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 489 -> 489 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58341 -> 58341 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6693 -> 6693 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5971 -> 5971 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 76829 -> 76829 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 144 +++---- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 516 -> 516 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 144 +++---- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 60178 -> 76189 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 358 +++++++++--------- 125 files changed, 4681 insertions(+), 4681 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index cefd3baa86b48c6598952eeaa2766cfb7ec3ea20..167e452f70b09115cf7053e0293de72d0a447285 100644 GIT binary patch delta 23 ecmeCS>$cmVAi!m=YhbKkU|?lrv{_5wAs+xu8wNfA delta 23 ecmeCS>$cmVAi!m&Yh, 2020\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "تجهيز المستندات" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "نسخ الصور..." @@ -642,7 +642,7 @@ msgstr "نسخ الصور..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "صفحة الHTML موجودة في %(outdir)s" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "الفهرس العام" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "الفهرس" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "التالي" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "السابق" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "إنشاء الفهرس" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "كتابة صفحات إضافية " -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "نسخ الملفات القابلة للتحميل للنسخ..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "غير قادر على نسخ الملف الثابت %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "نسخ ملفات إضافية" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "غير قادر على نسخ المف الإضافي %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "ملف الشعار %r غير موجود" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "ملف الايقونة %r غير موجود" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1902,44 +1902,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "متغير" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "نوع" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "كائن" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "مثال" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "أمثلة" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "ملاحظات" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "مراجع" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index d95f50583ab344984a1ae59aefcb5b6fa2361ef3..b652891828781857fd43cfb5f557d0d3c6c86132 100644 GIT binary patch delta 21 ccmaFE{Dyf#8<)ARfw6*tft8Wb#tAWu08au2f&c&j delta 21 ccmaFE{Dyf#8<&}`k(q*lft8W*#tAWu08cUohX4Qo diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index eb055ecee..f5544df91 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 0cf7ac202aa6149dfc15eda9315f4d476205ee13..1132d485c22f95506642725f460bc889630415b8 100644 GIT binary patch delta 23 ecmZ2sx592iH!qjDu7R, 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "সাধারণ ইনডেক্স" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "পূর্ববর্তী" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "প্যারামিটার" @@ -1901,44 +1901,44 @@ msgstr "রিটার্নস" msgid "Return type" msgstr "রিটার্ন টাইপ" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 7535e9a127c95eb20662ba888cca29ddda662ace..a2bca6eb047aaa6fca0ef128622cfc9c57e62246 100644 GIT binary patch delta 23 ecmcbteOY@$884T)u7R, 2009\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índex General" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "índex" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "següent" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s documentació" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Paràmetres" @@ -1901,44 +1901,44 @@ msgstr "Retorna" msgid "Return type" msgstr "Tipus de retorn" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funció" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipus" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (obsolet)" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index eb8650219df9e0573f6835105f0546b2a031dbc5..11a101ebf22f269dcbc363a21523dbced8839fc5 100644 GIT binary patch delta 23 ecmew%^h0PvF)Nq3u7R7C4hLTV delta 23 ecmew%^h0PvF)Npuu92C7fq|8g@#b3A-^>7CLkDC4 diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 98d6a5ba8..b69e017fe 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Konojel cholwuj" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "cholwuj" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "jun chïk" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "chi rij kan" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Jalajöj" @@ -1901,44 +1901,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "retal jalöj" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "Ruwäch" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Tz'etb'äl" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Tz'etb'äl" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Jalajöj chïk" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 78213cd55de38767ae2909fd964188f704d0ccf3..022f74f3fab6c4640626557fe0ba972737b99dcf 100644 GIT binary patch delta 23 fcmX@+V{HeB delta 23 fcmX@+W1, 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Obecný rejstřík" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "rejstřík" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "další" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametry" @@ -1902,44 +1902,44 @@ msgstr "Vrací" msgid "Return type" msgstr "Typ návratové hodnoty" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "proměnná" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "Vyvolá" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "třída" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (zastaralé)" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 1b5ac225d86e173196b1c4e47a0784191ae5d92a..7de3f5f1ad03534fc306db3046db0ff88921ee50 100644 GIT binary patch delta 23 ecmX?RaLi!CCO$56T?1nU0|P4~qs@Exx;Oz~qz7C8 delta 23 ecmX?RaLi!CCO$4RT_ZCE0|P4~, 2016\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indecs cyffredinol" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indecs" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "nesaf" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "blaenorol" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Dogfennaeth %s %s " @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Paramedrau" @@ -1902,44 +1902,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "aelod" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index be33578c160086258927874993c0181fca3f7ac6..d32eb875943c2e79a56bdd6d63688ecc295bc164 100644 GIT binary patch delta 23 fcmaEn_9AV=c6lyyT?1nU0|P4~qs<59mkR>`ab5^t delta 23 fcmaEn_9AV=c6lx{T_ZCE0|P4~`agzvS diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 8f8201c96..272405acd 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -315,12 +315,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -634,7 +634,7 @@ msgstr "forbereder dokumenter" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -644,7 +644,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ugyldig css_file: %r, ignoreret" @@ -892,7 +892,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -918,164 +918,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "HTML-siderne er i %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d. %b, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Generelt indeks" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "næste" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "kan ikke kopiere statisk fil %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "udgyldig js_file: %r, ignoreret" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "favicon-filen %r findes ikke" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentation" @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametre" @@ -1904,44 +1904,44 @@ msgstr "Returnerer" msgid "Return type" msgstr "Returtype" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "optæl" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1990,16 +1990,16 @@ msgstr "" msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2178,7 +2178,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (forældet)" @@ -3097,58 +3097,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Nøgleordsargumenter" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Eksempler" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Andre parametre" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Referencer" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3470,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index f0bdcbfd10e06065d58418f1708666689188fc9f..8c7e0236718231776887093c1d24fa182117f069 100644 GIT binary patch delta 23 ecmcZ*ej$8=wiK7Su7R, 2018\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -315,12 +315,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments Lexer Name %r ist unbekannt" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -634,7 +634,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -644,7 +644,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -892,7 +892,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -918,164 +918,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "Index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "weiter" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "zurück" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s Dokumentation" @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parameter" @@ -1904,44 +1904,44 @@ msgstr "Rückgabe" msgid "Return type" msgstr "Rückgabetyp" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "Member" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "Variable" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "Typ" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1990,16 +1990,16 @@ msgstr "" msgid "Throws" msgstr "Wirft" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "Klasse" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2178,7 +2178,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (veraltet)" @@ -3097,58 +3097,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3470,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 34e27efa8f5b60d00031113ba5bb207a3cd032f8..6280ddc10e76985a5e733aa6857f3b365f9fe9d3 100644 GIT binary patch delta 25 gcmaFZ#QLy_bwhn4m$|Niv4Vktm66fr&c+-20ez|o!~g&Q delta 25 gcmaFZ#QLy_bwhn4mzl1SnSz0Vm67r0&c+-20e#;I$p8QV diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index fa7053d04..fc5ca8831 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -314,12 +314,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Το έργο χρειάζεται την επέκταση %s τουλάχιστον στην έκδοση %s και επομένως δεν είναι δυνατή η μεταγλώττιση με τη φορτωμένη έκδοση (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Το όνομα %r δεν είναι γνωστό" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "Δεν είναι δυνατό το lex του literal_block ως %s. Η επισήμανση παραβλέφθηκε." @@ -633,7 +633,7 @@ msgstr "προετοιμασία κειμένων" msgid "duplicated ToC entry found: %s" msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "αντιγραφή εικόνων..." @@ -643,7 +643,7 @@ msgstr "αντιγραφή εικόνων..." msgid "cannot read image file %r: copying it instead" msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -768,7 +768,7 @@ msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν msgid "conf value \"version\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" @@ -891,7 +891,7 @@ msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefi msgid "The text files are in %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -917,164 +917,164 @@ msgstr "το αρχείο πληροφοριών μεταγλώττισης εί msgid "The HTML pages are in %(outdir)s." msgstr "Οι σελίδες HTML βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %B %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Κεντρικό Ευρετήριοο" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "αντιγραφή αρχείων μεταφόρτωσης..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "ο κατάλογος εύρεσης δεν ήταν δυνατό να φορτωθεί, αλλά δε θα μεταγλωττιστούν όλα τα έγγραφα: ο κατάλογος δε θα είναι πλήρης." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "η σελιδα %s ταιριάζει δύο σχέδια στo html_sidebars: %r and %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ένα σφάλμα Unicode παρουσιάστηκε κατά τη δημιουργία της σελίδας %s. Παρακαλείστε να επιβεβαιώσετε ότι όλες οι τιμές παραμετροποίησης οι οποίες περιλαμβάνουν μη-ASCII περιεχόμενο είναι στοιχειοσειρές Unicode." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r " -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Δόθηκε άγνωστο math_renderer %r." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "η εγγραφή html_static_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "το αρχείο logo %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "το αρχείο favicon %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" @@ -1885,7 +1885,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Παράμετροι" @@ -1903,44 +1903,44 @@ msgstr "Επιστρέφει" msgid "Return type" msgstr "Επιστρεφόμενος τύπος" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "μέλος" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "ένωση" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "τύπος" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1989,16 +1989,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "Προκαλεί" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "κλάση" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "έννοια" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2177,7 +2177,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -3096,58 +3096,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Ορίσματα λέξης-κλειδί" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Παράδειγμα" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Παραδείγματα" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Σημειώσεις" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Άλλες παράμετροι" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Αναφορές" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Προειδοποιήσεις" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "Αποδόσεις" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3469,25 +3469,25 @@ msgstr "Δεν υπάρχει αναφορά για την υποσημείωσ msgid "Footnote [#] is not referenced." msgstr "Η υποσημείωση [#] δεν αναφέρεται." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "ασυνεπείς αναφορές υποσημείωσης στα μεταφρασμένα μηνύματα. original: {0}, translated: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "ασυνεπείς αναφορές στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "ασυνεπείς αναφορές παραπομπής στο μεταφρασμένο μήνυμα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 3ef9fb9eeb8c921f72e841d9542f7a71aeaa39af..ba28d2c8085b3be7b0a7f7a892d62fd23b128994 100644 GIT binary patch delta 21 ccmX@de2#fS8<)ARfw6*tft8Wb#tC+e07@1HC;$Ke delta 21 ccmX@de2#fS8<&}`k(q*lft8W*#tC+e07^y%EdT%j diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 4c6bf69c9..e956e4411 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index dc814f352daed2af53834577942542d4e243a093..f4c6472d7c0318ae7b5cb3c6bc8e43e279235abd 100644 GIT binary patch delta 23 ecmZ3Uw>)pdRXHwmT?1nU0|P4~qs{l_JR|^VNe9gU delta 23 ecmZ3Uw>)pdRXHv*T_ZCE0|P4~\n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 15961fb28bcff76dc90c46cccda09cff17f6fce2..8efb05731dfbb05ea9316dc4124a96b2dd7dc67a 100644 GIT binary patch delta 23 ecmX@XcY<$&0SlM8u7R, 2021\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indico universala" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indico" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "sekva" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "antaŭa" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentaro" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametroj" @@ -1902,44 +1902,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funkcio" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klaso" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Avertoj" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index b988cb986d1a6a2ba86985a9f009634e2d34c944..dbb3a27f0cd4af863b9ce21198ae1bff7564298f 100644 GIT binary patch delta 25 hcmey-#rmU*b;Id3T;{q4#tH@oRz^mfudZ1<0|1Pk3X}i< delta 25 hcmey-#rmU*b;Id3TxPmPW(o!dRz}8~udZ1<0|1QE3Yh=^ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 4d920e2d3..a15266c29 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016,2021\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -319,12 +319,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Este proyecto necesita la extensión %s por lo menos en la versión %s y por lo tanto no puede ser construido con la versión cargada (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "El nombre del lexer de pigmentos %r se desconoce" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "No pudo el léxico literal_block como \"%s\". Destacado omitido." @@ -638,7 +638,7 @@ msgstr "preparando documentos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabla de contenido duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "copiando imágenes... " @@ -648,7 +648,7 @@ msgstr "copiando imágenes... " msgid "cannot read image file %r: copying it instead" msgstr "no puede leer el archivo de imagen %r: en su lugar, lo copia" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -773,7 +773,7 @@ msgstr "el valor de configuración \"epub_identifier\" no debe estar vacío para msgid "conf value \"version\" should not be empty for EPUB3" msgstr "el valor de configuración \"version\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -896,7 +896,7 @@ msgstr "error escribiendo archivo Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Los archivos de texto están en %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -922,164 +922,164 @@ msgstr "el archivo de información de compilación está roto: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Las páginas HTML están en %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "Error al leer la información de compilación del fichero: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice General" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "siguiente" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "generando índices" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "escribiendo páginas adicionales" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "copiando archivos descargables... " -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "no se puede copiar archivo descargable %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Error al copiar un archivo en html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "copiar archivos estáticos" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "no se puede copiar archivo estático %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "copiando archivos extras" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "no se puede copiar archivo extra %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "Error al escribir el archivo de información de compilación: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "no se pudo cargar el índice de búsqueda, pero no se crearán todos los documentos: el índice estará incompleto." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "página %s coincide con dos patrones en html_sidebars: %r y %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "Se produjo un error Unicode al representar la página %s. Asegúrese de que todos los valores de configuración que contengan contenido que no sea ASCII sean cadenas Unicode." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ha ocurrido un error al renderizar la pagina %s.\nRazón: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "volcar inventario de objetos" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "volcar el índice de búsqueda en %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Muchos math_renderers están registrados. Pero no se ha seleccionado math_renderer." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Desconocido math_renderer %r es dado." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entrada html_extra_path %r no existe" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "entrada html_extra_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entrada html_static_path %r no existe" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "entrada html_static_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "archivo de logo %r no existe" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "el archivo %r usado para el favicon no existe" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks ha quedado en desuso desde v3.5.0. Por favor, use html_permalinks and html_permalinks_icon en cambio." -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "documentación de %s - %s" @@ -1890,7 +1890,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parámetros" @@ -1908,44 +1908,44 @@ msgstr "Devuelve" msgid "Return type" msgstr "Tipo del valor devuelto" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "miembro" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "función" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "estructura" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "unión" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "parámetro de función" @@ -1994,16 +1994,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "Lanzamientos" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "clase" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "parámetro de plantilla" @@ -2182,7 +2182,7 @@ msgstr "descripción duplicada del objeto de %s, otra instancia en %s, utilice : msgid "more than one target found for cross-reference %r: %s" msgstr "se encontró más de un objetivo para la referencia cruzada %r: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (obsoleto)" @@ -3101,58 +3101,58 @@ msgid "" "%(default)s)" msgstr "documentar exactamente los miembros en module __all__ attribute. (por defecto: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Argumentos de palabras clave" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Ejemplo" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Ejemplos" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Notas" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Otros parámetros" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "Recibe" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Referencias" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "Campos" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "conjunto de valores no válidos (falta la llave de cierre): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "conjunto de valor no válido (falta llave de apertura): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "literal de cadena con formato incorrecto (falta la comilla de cierre): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "literal de cadena con formato incorrecto (falta la comilla de apertura): %s" @@ -3474,25 +3474,25 @@ msgstr "Pie de página [%s] no está referenciado." msgid "Footnote [#] is not referenced." msgstr "Pie de página [#] no está referenciado." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referencias de pie de página inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referencias inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referencias de citas inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 46d40d3dc0dcf3de3f7ccbf6a363c452b8320bff..10ef2ed7efb9343ad0454ad6567d988016c32914 100644 GIT binary patch delta 25 hcmaFc&h)mOX~Pq5E^}Q2V+8{PD, 2013-2022\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -315,12 +315,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "See projekt vajab laiendust %s vähemalt versiooniga %s ja seetõttu pole projekti võimalik laaditud versiooniga (%s) ehitada." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -634,7 +634,7 @@ msgstr "dokumentide ettevalmistamine" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "kujutiste kopeerimine... " @@ -644,7 +644,7 @@ msgstr "kujutiste kopeerimine... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "vigane css_file: %r, eiratakse" @@ -892,7 +892,7 @@ msgstr "viga faili Makefile kirjutamisel: %s" msgid "The text files are in %(outdir)s." msgstr "Tekstifailid asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -918,164 +918,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "HTML-lehed asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "Viga ehitamise infofaili lugemisel: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Üldindeks" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "järgmine" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "eelmine" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "indeksite genereerimine" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "täiendavate lehtede kirjutamine" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "allalaaditavate failide kopeerimine..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "staatilist faili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "lisafailide kopeerimine" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "lisafaili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "Viga ehitamise infofaili kirjutamisel: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "lehe %s renderdamisel tekkis Unicode viga. Palun veendu, et kõik mitte-ASCII sisuga seadistusparameetrid on kirjeldatud Unicode stringidena." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "otsinguindeksi tõmmise kirjutamine keelele %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "vigane js_file: %r, eiratakse" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path kirjet %r pole olemas" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path kirje %r asub väljaspool väljundkataloogi" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "logofaili %r pole olemas" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "favicon faili %r pole olemas" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parameetrid" @@ -1904,44 +1904,44 @@ msgstr "Tagastab" msgid "Return type" msgstr "Tagastustüüp" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "liige" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "muutuja" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "loend" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tüüp" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "funktsiooni parameeter" @@ -1990,16 +1990,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2178,7 +2178,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (iganenud)" @@ -3097,58 +3097,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Võtmesõnadega argumendid" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Näide" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Näited" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Märkused" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3470,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 154f9505282f056a7e2244f228f4e6fa8ba225f0..1a08e126356910f1162662aee83c7826a64c59b9 100644 GIT binary patch delta 23 ecmX?Za@=HtngEx%u7R, 2018\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y %b %d" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indize orokorra" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indizea" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "hurrengoa" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "aurrekoa" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentazioa" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametroak" @@ -1902,44 +1902,44 @@ msgstr "Itzultzen du" msgid "Return type" msgstr "Itzulketa mota" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "partaidea" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "aldagaia" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funtzioa" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makroa" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "mota" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "Jaurtitzen du" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klasea" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (zaharkitua)" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 2eed987616d81f560b1b66013ddfb7110ca299e4..327affdb250c1762fc415568e0f20979e3b0194f 100644 GIT binary patch delta 25 hcmaFV#rCL+ZNr46T;{q4#tH@oRz^mfXDvN(9{_{03Q_<7 delta 25 hcmaFV#rCL+ZNr46TxPmPW(o!dRz}8~XDvN(9{_{r3ReIC diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 80a1d5f0d..9363f4a1a 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hadi F , 2020-2021\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -315,12 +315,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "این پروژه افزونه‌ی %s (دست کم نسخه‌ی %s) را نیاز دارد، بنابراین نمی تواند با نسخه بارگذاری شده (%s) ساخته شود." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "نام رنگ‌مایه خوان %r شناخته شده نیست" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "امکان خواندن قسمت \"%s\" به عنوان بخش نثل قول ادبی نبود. برجسته کردن آن نادیده گرفته شد." @@ -634,7 +634,7 @@ msgstr "آماده سازی اسناد" msgid "duplicated ToC entry found: %s" msgstr "عنوان تکراری در فهرست مطالب پیدا شد:%s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "در حال رونوشت از تصاویر... " @@ -644,7 +644,7 @@ msgstr "در حال رونوشت از تصاویر... " msgid "cannot read image file %r: copying it instead" msgstr "امکان خواندن پرونده‌ی تصویری %r نبود: در عوض کپی می‌شود" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "مقدار پیکربندی شناسه (\"epub_identifier\") نباید msgid "conf value \"version\" should not be empty for EPUB3" msgstr "مقدار پیکربندی ویراست (\"version\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "پرونده‌ی css نامعتبر%r: نادیده گرفته می‌شود" @@ -892,7 +892,7 @@ msgstr "خطای نوشتن پرونده‌ی ساخت (Makefile) : %s" msgid "The text files are in %(outdir)s." msgstr "پرونده‌ی متنی در پوشه‌ی %(outdir)s است." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -918,164 +918,164 @@ msgstr "پرونده‌ی اطّلاعات ساخت خراب است: %r" msgid "The HTML pages are in %(outdir)s." msgstr "صفحات HTML در %(outdir)s است." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "فهرست کلی" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "فهرست" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "بعدی" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "قبلی" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "تولید نمایه‌ها" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "نوشتن صفحات اضافی" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "رونوشت از پرونده‌های قابل دریافت... " -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "نمی تواند از پرونده‌ی قابل دریافت %r: %s رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "شکست در رونوشت یک پرونده‌ی به html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "رونوشت از پرونده‌های ثابت" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "نمی تواند از پرونده‌ی ثابت %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "رونوشت برداری از پرونده‌های اضافی" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "نمی تواند از پرونده‌ی اضافه‌ی %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "شکست در نوشتن پرونده‌ی اطّلاعات ساخت: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "نمایه‌ی جستجو نمی‌تواند بارگزاری شود، ولی برای همه‌ی مستندات ساخته‌ نمی‌شود: نمایه‌ ناقص خواهد بود." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "صفحه‌ی %s با دو الگو در نوار کناری صفحه (html_sidebars) هم‌خوانی دارد: %r و%r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "هنگام ارائه‌ی صفحه‌ی %s خطای یونیکد رخ داد. لطفاً اطمینان حاصل کنید که تمام مقدارهای پیکربندی‌ها دارای محتوای غیر اَسکی، رشته‌متن‌های یونکد هستند." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "خطایی در نمایش صفحه‌ی %s رخ داد.\nعلّت: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "خالی کردن فهرست اشیاء" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "خالی کردن نمایه‌ی جستجو در %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "پرونده‌ی js نامعتبر%r: نادیده گرفته می‌شود" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "ارا‌ئه کننده‌های ریاضی زیادی ثبت شده‌اند، ولی هیچ کدام انتخاب نشده." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "نمایش‌دهنده‌ی ریاضی نامشخّص %r داده شده." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "مدخل مسیر اضافی (html_extra_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "مدخل مسیر اضافی (html_extra_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "مدخل مسیر ثابت (html_static_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "مدخل مسیر ثابت (html_static_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "پرونده‌ی آرم %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "پرونده‌ی آیکون مورد علاقه %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "از نسخه‌ی ۳.۵.۰ به بعد افزودن پیوند همیشگی (html_add_permalinks) منسوخ شده. لطفاً از به جایش html_permalinks و html_permalinks_icon را به کار ببرید." -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "مستندات %s%s" @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "پارامترها" @@ -1904,44 +1904,44 @@ msgstr "بازگشت ها" msgid "Return type" msgstr "نوع برگشتی" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "عضو" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "متغیّر" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "تابع" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "ماکرو" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "ساختار" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "اجتماع" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "شمارش" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "شمارنده" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "گونه" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "مؤلّفه‌ی تابع" @@ -1990,16 +1990,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "ایجاد" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "کلاس" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "کانسپت" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "مؤلّفه‌ی قالب" @@ -2178,7 +2178,7 @@ msgstr "توضیح تکراری شیئ %s، نمونه‌ی دیگر در %s ق msgid "more than one target found for cross-reference %r: %s" msgstr "برای ارجاع متقابل %r بیش از یک هدف پیدا شد: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (منسوخ)" @@ -3097,58 +3097,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "نشانوندهای کلیدی" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "مثال" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "نمونه‎ها" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "یادداشت‌ها" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "مؤلّفه‌های دیگر" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "دریافت‌ها" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "منابع" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "هشدارها" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "فرآورده" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "مقدار نامعتبر تعیین شده (بدون کمانک انتهایی): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "مقدار نامعتبر تعیین شده (بدون کمانک ابتدایی): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "رشته‌متن ادبی ناقص (بدون علامت نقل‌قول انتهایی): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "رشته‌متن ادبی ناقص (بدون علامت نقل‌قول ابتدایی): %s" @@ -3470,25 +3470,25 @@ msgstr "پانویس [%s] ارجاع داده نشده است." msgid "Footnote [#] is not referenced." msgstr "پانویس [#] ارجاع داده نشده است." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "ارجاعات پانویس ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "ارجاعات ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "ارجاعات نقل قول ادبی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 7af6e956ac9006b7df54278b85765f809004b2e4..3dd0c56d48b9374d3964210c77d649ba93da2bd8 100644 GIT binary patch delta 23 ecmaDL_CRdIDK;*1T?1nU0|P4~qs>>?dRPErM+bQT delta 23 ecmaDL_CRdIDK;)MT_ZCE0|P4~, 2009\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Yleinen sisällysluettelo" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "hakemisto" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr ">" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "<" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1901,44 +1901,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (poistettu)" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index b03b9fab86f13e9e8400e51b2dd0349f1b07c04b..450ed66e0cd5a2aa48905ca1f4da34998e36ef7f 100644 GIT binary patch delta 14046 zcmb8#33OCNzQ^&~AqhzcTLOV>~KUKHyty}f~|Es!D zUs@OS$$e3wj}s#AvH0skgk`1S%T3h#*I!ffENi*TvZmo$?)kifWqr%X!2-(~#PwO7 zEXz;-(ax4tim6>Jt1hmi4xNnE%db>kYW zhg;Fc9jJj0qaOSeHPE-t=a+CC{ifZ`IHlN+{w+@bEys^gk(1oioM_yQ*Ov@Eh=9YjsgMSN>xT~tIGV@FJN9EIuhLl|mC zV>68*_%eoP*4wfY=%*p+w(?Lfo{37;60F3xa28JMV_D3_dJQ$vU$HT!^)(B~NA#8sG>jSEn!q&!ScqKft`G9cp5oaWwWpy!LsMMTBP4Fx# zq_r50a{nET`cg1HoQaf+ zbr?gMN#k*5faX|-em?4YZ&dC^U=A)q4g4TB#3!8oZs+s;sG>TL+CA~(O$5_%3jOA& zNZp7^)nhxsXJNpT|b@4^J=ye2&W552y*$n&@mlRH!?nCNu(*a3bovVLqnd zDon2$NA^QZ~_f_g!N8Rqk3RD{|h(YE>^!LT-B8@zx8+W#3d`G(`dILyIYFc%-k zvG^BUfbHBSLYpy@{wt`1>JwB-B4(KbC>uTWhoWA%14m=TInkBSzvs(6(rcnovL7heJ^VC6uxyu@pPwC2WW7=bMR4!SF(`4%cr) zy>O+|zuW0=#u%WAZ-#*m-zl0jFO_?dSE|^Y#1gc2As0A#+ zZg?lA;9k_qPh&iOgER3b)WoNRs4TtUcBD?M7f~xqzs|DQ2-Z04giqlp`~q{Zz;AxC zO+{7zHdN?eKt=E@cE#EOld8U`iClwO=*F2Cx}Anrat51WbkH0?S&p5tA=d|?B5)11 z!Xj*mt1ua#M2)i#wer7WBaA3F#oYw^(Jw^pibdF7`~N5ny*PqOOv6mngS}BzJr1>! za#YdmK!x%dOvKkwIX;Gpz)9?ajjuO9N=M=_`YW9N5$sOCUWE=Y@;{7*a`p!tg708H zHdb2xy0>|*oWC`_h*GwQxgs0i)Crg#jS@qX(&8d^!+ z8%!}}ViWqEP>~pk%DEeR;VM+Iy^Zzp1MGlbp|)+x67%8=%%k58Q_zcT@K#g`pTv-g z;?Fd?;VIO>DL0y#wndx%Fw{imA~~}{s0luSio{#k5kEq`px#ZU2)m)S*%%y)lTZ__ zLQUYqn~1-P%S9M6FcHJmjau1MOv6&gm8j}{1U>i;K7jc*o75adMId&mdA=S_rr!*E zU0qTd5bwpC!+@3iJIWMsFYsB zRE)co)nh9hjv>@U_p6}?4r3htfC{yBo0(W+)C6)Jr=W^zIcDJfs1&}2U2#9^oT#;& z9fMb)BD@z9@B>r|zd^EXg;H+k&+;@XF&g7nm`Eg|a-56(a4>3uD^M$4huUUOqqf&q zsQU_5n&-<=xxNckBd?=&*9jbr_Ns7ggsd_enpp)Z=c`dExX-!1AC-!eSQisko1@dl z0{Wv+*Oy{1T#G~TAgXqf?lAv=q5!k$KZ2UrAo}_{Z*KWyHG3s z0F}!hQQN7}8uP+DY)gMWYT%7H5%)W0t~DvCz^l2w2U}wDT^wk<-|9_6#WD~_<0R~W z+p#sCz{VJHx3Q^XE~ayRAZn$vFb_kh8hH{m@qMTioWWLj1+}nNf8butd?*dQD2VNG zi{m?}(Ep5jFmIhXYA50#`qMEUw_zLHiG}zPHpfQm&2A|~MQ$c)!b==CttbBa;CU|S zfuk6Omr%ub89QO)dyK=e5&aNqLhG>yzJw~?OOC&x#*5luR+@vViQ%aG)?o|Ww1N27 zrtvBl2I3yT%io`MOkE!>XDxZ#7^dCW`;vLirzjTb- zXlg7sL_-m{78UyIF$W(;P3RCRSBaaWjLs*y-PiTG>vF!RN6azK*)@U2KX! zp%#*GpE)l=O=#F$7>i@^I#lT1z!dxf^`P}f&T&XarNE1ccoXV{f4~NKA8O@~V_iIg zn#d{CuKFGo!L-fciG{4zG!(+CQ6JokDyD}~1HX$3^#@ppb+(v@4M3%41}5NKY>YRe zCbrJ$Z^!!dUqRh>5LG*;u!;76?X4yx8K`1wiP}b!Q7c`ETG19%h~LB_Jb=lVcfYwl z4C~Mzi#lkgVt2e1ZQPB0@f51&G9MrcAsVe|Xl8>^Gn(_qOPw9(Wp)1Y19BO zVkppH~+zK_p{+Nc7Q1_LiBDV%L&ZF1_UvhjOqayfYIzHgy&j&j=sA`e_ zbx%?8T=+{h-%@Bj%U3Cke$M<8jCV1f{_tHUq}QNAISpBqwHilam*>s5+%0$&{r6B` zW-VSY=ZPO<>EDBKxD|7Gzx5{?TFD2PffrGsNqW(|urDh2gHZ>}6sJEAHDCzq;7aHE zJ*Ws(IsM(J1L%Ehj;B#6je1GXk^eLr8Yl;uk(G}(q8pXNPf#oR4O4OK%Vwgbs8HX5 zy1o^g;7h1&_&zE%pJF@w8M|QiE9Uv>n5q4L6OA0aA3w%@*aIJZ)eP`CYJ!(B8f))1 z2UI=B-q?ogK5UB{aW1}vDcIpP6Oj?vnZ6r!y%IxO+0!(**NS}Ito%(JLBIbS=9kJE z)C1M1>OO>8X-17nT_I|M;~l4?A~VP7-+%+?--gQlKGaEjw8q*0v2U7?^hCX2DmKI? zP$Arn9qGJwiS6&B!MP%E$hp7|Och(qa5MjIc*`dEX?{reb!-{UMi zhrMya5p(9R$2j^gVyTPWfqB~h`A1D|W}#+Yic$C^>L7U*)9?Te#xtnUP!SP@R4 z@5gp{5Ff*zaRff{p^3;j)C42`VxCJv)lL>F741+pG!a7z$rc*g-&I%_-$d2K5zN7a zkIXjefsyn_VKH8fiqtMtvAu!{`5qigWTH-*NKE|LoCl@Yh|fdV1=oK}{Po}gE@a?Q ztb-RY6|GN9?$WRY-TtW1&BhE|iOsMI)9`Iv(EK5P%qk#%J~WB`ZuTvT|gTfd|`^b zBkDapP!kJ{r=i@>#<{o@)A1YBjN`sECt5nHRu-bp{-sWTBii)0VIIDPn&=OBE5`rT z?5ev_sXB^Tcpm4u$ba$~Qxvy-Wr}DMYC;d8Uid0%W&2PApTxy@0jFWv*XG3su^au% zSb&9pGrMFScA|eTPQrtD8@BpJkthF;ha3E2L9O5-cGL~unjB5S9rTyu8tnX?`4<&$ zB9B`gzBm6||0&F;AN6;04s^vk=@;WtJclhYc-EYh8!=Antc{nP>sN3p{g_`l=h1^R(Y|cPUy38? z??XMG^c(TlOq>5^s|>FR+KAT{avvg-MQErD^c6;b=3VQ za2h5=YZG(4qE`NQ)N=*3UEysw6PwXrkBU$=>bWnG)P}5qF=i$sFqIFcqjI_!hvG6+ z3J%~nOo?@czu$eR{(E>eX2qEZRp3?hkK+t%UB?yvc3g?tO~)_=?RXcvimCUYk->!! zDnwgRH@t!>rW4o`JJ)qtndnEQWIZYsFJN>01amN=o-6!i)fN@{F{p8iQ8ly-JKwCLjAGRk4ZJpC82VkhXpti6}g*3G}_R34z+?$Q8`RVGa*gG zS@h@N-FN_PoR)4vdK0RcHsTsQgv<1KGn1-Qs3QFeRpj+ET;UTi4|M{DmeA0OR^VXV ziADG$>cpCAo6l=d`~Dkjfvqx4#D?Q!`YTbj@fqrz_y$#cwVIodH$hz=j(yOL96%xK z0UD~-XHZ3S7IkB<7G^@@Q4_ik6{#zDGq!1IBK8>SNc{*qV#_RZZcId_a4Yu3lbDUo z`07(624kxB|7;rJeTn_~U@NL>PouV1dbX+dSva454UWf-Ip%y=jyl3W!zfH>Z5GfJ z-SqQN#dkOAzT=pT(QT*=-f!77bfFt+hU2g;-hh2^JL+USgEmICHTP$simeYSC0IL` zvJ|!NA9H*c6_FpXIsSs0P_sPa^gQ;zR=$M`J@9#)fESQ22Wxl-Q&d->2A<*=!cp|M zq3%0}iri0F8#6na?}XNX6K*L^!mX(7`6Ft=?K_(Z-GDmKo(R!U1YW^mcpMd~%q}K$ z15v-_hGRpVfL*WzZQO#9xEuT7o2W=d7n+H;MWt>9YU0mh27ZKo4E^d{DC=rYsi%VsC`|hn|Wad>NlVp6~Qu8#2&^57}4G2IuSMQIMlYBfo%JbwV8%q z@F6NB5k1UA5>PK}i~4pPY?o6n>3g;DP>T0Xqk<{|9j4JPqAgIM8Ly#8GJD4%9($81(}E2j62L56dxx zz3~TBggOm2C+BUbNW6wh%_&q$Y7a3dVLa-6R}W$T>-%^P7c}$xPzOm3s%pPQ?S}NB zCL(=N6B>+q@%5+(Jcs%La~kz~z%|T_(;XFwV$^syp~l;RO6_~Y*#COrCtT=@vBS-Q zGaMEAaj0tcpmO*IcEj&cXL{=q=3BB12h;yE*2DCX=0)vLksE`0{wC-8W2kT4L)~cT zr_m+nLc%C>wDv%S&W)Ps3RH1!K<)1rM^&ffU7wt42fe{kk6q@si`)x>-ZG!6P`4;Q*i%RT1f?sj&m+gDQVF7epC?9pXDPj;?7VL`Dw z=vlYG)2Lgp%y!${?=80fd0$aku_xCa>@F?!`bz9s?xJ}%w`F^L*>=t#UrDJqFsF5H zb;X$GO+)TkOp6cwqX3Fp~oN4Jd4Wa&v*NZ?JR$;ogG*($Lp)e^;86N zz4J@VT|tjO+xB~|EBE?60ehI9ALTCb^3GX{>|)PscX??r*B;~xl=~SzXnO;;*B1yf zIZtuBs}+)fCm4QrcKGEpem88HiB))wMdg8D+5G=7wcNP4@qTxaN9*ivXH{<~S=~F{ zGu!L)C?vByrPaxg6hy@pw(n42cj(YPKfik7V@>PzUF5H+GI1}?F86tC zy0dGl{2pHsQ5@}6?wGpIYnRqkm3VwS5%iapFRZDmE;&#y)-|zmX0EGA$m@BaF;Li zl(_xHHC3MK?C&0r3=NyVpezvZszUUnr=q5+sGM}0S%=FaJjdTvOR>q}f2kH919=#k zw=Zz}ZQe+g1b<&Uxpu!mNENfV{lc>HfPEd?K@0HseO@Nu2~bC-h-#|Z*=6Pbj3Tiu zWv))){Ch<$P}FC;sny@7S@}@ronkku%K6tOa2MNi%8LF`Xuppm1s7O%xWye6i$Q zZ&!Art4~b&NVdGUXpR<0=4ZPXdKpp!`dHDfrKzqdk*)!iA7!{63yoAhd_gMJqZ_z= zPH=wd3^u0UJ!648I4As!r@|Wu$2eg9_Xh$_<$4qh#n9`cEc{*%0b~5K@?f#o?~F6^ z-`>oI4tk6JKd=7%6aV(^O8&g^r^tZE@7{Gj(-j?=^v~VJRK}D30qhTJaAkZeS4vym zW_wF~WrV{T>_l*GV8(1Ol}m#B)QZ_Z?JD_G#F)z6tz2pPTk3{v*Q@R4d*;vb_}iEH zsV?0fusps1*Le6J&nWUJ1OycDpaKpEh>D=%Jfh*4nW=zyRE)tGlr%e8K)x$6h=KWR+8jb1bjJh!k12G$2 zScH1eW2g^4g?i8q=Xy1cB>o)roP;ix)eHNe;suTyP|vTzFnkNcdB1g%Mt!`28hM?r zmemp)BiXXLqGnoxO>sHu`c8Zqk07gIE$(Ip_$JmRK7`81QEZPV90SOI6mbvqMAH~g zV*uWdwIjnu#3zyEw!TNb*wx)ERX408UVsxZst1F_xu}7@f}wa4HGvy0;l%TyGDROh-35TzD_)0n1Tq^&~dIJ=hFCK)vV^YG5}o3;#g9AghnD45NtG zA**V=gq`t6R86$)Yl^(LhsFpx+^8aZ34QQA^v91;sXyuX3+ja-{mkd`Fo$?AHo&m{ zmKBHb=#5#(N32me5ZB^hJcHrrNo3)bk^!ih4Mn!FH3n6TOHfO*2{physFcd|OH zLl=^;9d^T3I1TmS6{vwc?!>#D>-$kf^bIz|-%*(h97)0d+&I?Es9#3D^W@V+5{79b~&5-$C7f+PVHS z#t{dNCjYA1w9%H8kFzla&mnbah2Lq;hl!|^RytN=81ZM0-{XD6b;p=BpNE0Ot8hGS z#!#%oIx17)sEoJv(9l|>Vk7MD#CM^pKObA-VhqN=p+5L`^uZ&j3>`;3_$(?z*HJ0| z1GU6;Sr2747}Xzxnvkb84ZU~}>Ve}h1oKcItU%4=AsmP+u=YSgZMR>LjbqiJg7xAo z)Ijb+4Qv`J^`+Pr7oncJ7w^&jKR`oged0JXkV4eV=VCjGWHYMxJ|T}9`8TKmUP8UV zo?x!~qcRkUOxj9D#%3+THh2y@V8d(*9s6P{?f)_wiF9nlVfX<~$EX~Wq9v$pw-Y(B ztdCGj@*}!1JeMtu>8KYzfm!$)Qoq)qi6%pjV=VDSY=#Z<_%-CAkxYXmSTCVw9x}-s z5NW752UUy@IsG4E4DnBxf#JNpGmb_r$r4M2vm|7|pi zXn0`>x^N~cRclad_W?G=v#1RGfqG%{scc0Yi%NMVY5>=;F8&j}@wR-k@BL7nuQ6iz|yk_D(4tig2Lj!p0^`r$3q_Vg_> zU(2DWfzLoa|7m3Ttz)Q(rF)9max{vuBYuFlqfG_2!l5_-D^LS^1C{!ts1yd=Yrc+K zpq6SJY9OT;i*qmspGHl@tHk_rYK{$vJ-wX9a15d&7wcgu#_0xZiCZxO-$y;@9BSsb zm70M?qpG?C_QH{<-LMMV;Z=;r=rVI;XCM>uSYv6Znu{?Fm!XR0Jya?`!eIOowZ_*_ z8Tb`bv3dY- z60bRNV1@abjl~rD^HG`EfVyulDnmyw9Iv5f?th<|NNa3FoPlB5|HEj6;8fI_&%q4b ziVg7_)LPxZWb~e8wreUz5O>8SyaSuy0@R83Bx(uYN7cj+n2tA5&rO|8{x#A8G+gLL z4P+r|&DLWWzKhDl*VrC^LA{{O{iX=-Ky9;oa2S@M2KqK?06(E>D{79ZktD1w?m6UN zGpnE@5+8Bgf~wvF=*A296lOhOmgXwzz=|b(`g|L_3%g)fT#1SJ5i0e6pq3(fuE|hm z)b$Z_xuCV4M@L)Si;B;nMi@5F#69s&;&Rjj51|Hl300hp9yAA29F8IGjhVO}HPG{@ z`~QLd7&PBxI?_W!BWsTuK&Imi)Y@*sX7~zf4Nqbko=2S%%^qSAJu%M47={@+R?hK?hs8Q;LB81h#$!(`M82V-0O z3+lly;%GeYn6cO_$x0kS{~2tFotBsbZ7ix*axe?aFq!vTH8fh|bqvMm$BZ2vGck(( z9Mnu7z$9Fcs*(3m13!ma0 z7f~}vT4M$>9QB}as2k@x@pe=O4xul8ih=kg>b^@Dj-hMKL=rKLxC6Sd0EgjXROUQi z(a=7&*O?DS;!xsF7=jBh7}ud*xDy*6&`OQ=-ez|I)I!K5r3{fTE|BV34~xE3|AT~1ts4T!%$-S-`;c5Y%Aw%BMg z(iJ-r_rxUa|8g3d=@!(C_MuXI8uRd5jKINwe%s7|I-~9zk1=?k<9gJDUUlLl+sJ=oI&RRRBCP+6d2uM}h3TmNNvM<+qPEXm z)J#4`9jR9_9h+=72h}K4|5B`r`%s@hfN^*fwM}n&oJQ!gX2gl85oTf}=AdqzgG$+I z)Pr`Ts=CJU1bWxu52g5&&9~_D98kA$g6`x?i1_RtzMRmviXS_CZuAT0FDyKt)2L6! zh!;&tvr(yZBhRu{;1KM-*L=G@io=P&z$|QAZ4Q!I=tsN}{c#&6;@?mc`5K$yEo_a^ zFV()!V-2LCeVm0lSSC7gDe8d_qqf^Jr+*`c67O;1gQ$b&1UAQus3i?}*?g`g>N&}% z0d>JSn2*ug|KHNkjC}T)B^ZMmX&EZjE1mvr7)D%!I`K|mIDUuPc6IifUrI@+&rik} zT!^jk8T<-A#;&;g6+X}VtxGgCLho12er|wC#El*MV;kZbsA_)-r{N)Nf@!arjEuxi z#QCWHCr}gHhp%IO{xb(Zz`>aL2K&Dyjny>tf&HlJK8BiU{F`R&dY}e4&T%p-Gt-@T zKK3DAj9UATQAg}aOu?W7CL?`O&!2=r_~HTbuM{4nBN=0evhLjuocJSZd5GE?z@l{1r9eI`5h5BT<^diOv+J9vk!aYKT!849y0s50QGxeHTJ>tr~$V5&=g||YAL2-2V94m@P`

`+`d~Ibgyq-_f5Yb3_^HX!!;+zc!P^}$xCTIr0f zu{)|}rlK;j8*8^S1`r=Z)xbB{3R`|*cFpbR@uDM}#w47CO3}Nh;yR2<_2)Q@jD#IG z8JK#)?EeQagzL*N6}O^3_a!Pb=dm98oHR?>2xEy8u?3DgN&c0(3Oe+G^{6V}kCAvB z+u_fSv0s{>RwHpb{VTB_dVgj9o?tL)DfggK{tGt6CZ|kBQZa&fIBvvyPI=6W{Z5;d zw8oiS=!*Ja6*k1fs8pUt9XMC85n5lHI2bk1Sk%5BiQ!m*`us9fW;daB$1~U%cYA2m zr*Y7^@G0s=CsDe%hR*sGPRDcTBHoMIMxUWZTK5}M_0iay_-TyB^QblTK1Vujb_%K{D$ko*cpf#N z7f~<#2sN=2$a6i`_cUhF;q$FIo9CfkdN}B1o9m_HHn)w;M9#<3phW@zh z2ea=tpfB;$7>CbecRYexl14uo+ha50VVHr_aRlx}H`>>ku!?93jR3qC1JQ$NxCBG+ zAgahtq7U9c#$?^Z61;MQy^py+nS;ppXR~y}Py<+m`rNaqV&8+Bz-vE~a2*f_>Cm<~ z;#@d^pWTQ3E*k z8~JZQ;}jiA{r8xH?thvpUxTH@C$I|+y~!5CMW}&X!@Dv4ck?@96^n^|`43wjI$1oi?VP`yv z?J>l*Yj;h5Y)xE>+RhtM_j_KTF`mX1^x%*>cJ2QD0JYs3+-BE)Z+F9J;_0XiJ%;++ z0o2;Myv#u2u_V{)7{?;WE8V#||991>482P0=VEPF#iA=v~*Y z{nhG5ZKFNd1aG3YQ<$$^TWoiuGBg`?eJzf|7qA-!`Po(sW?@TBc{&ZP#VTx$`>_>% zg)OkIze#;t)Ps9sBu>DNI2-%oZVba4s22y+Gns6KDzx+qUB@d^yPW)TW|iBfGZxD^MfdgPOq^j6<(ryY?@q+oEPvh$_M=Cq9p==7bQF ziOD#fcnfA=<4{w~qfqC;Jk%1e3-#F6JQ_80OvQfu-x72Z?nI^f6(>HA`rvic+6RQ0 zrD}u9+yrccD^U}89d)u^MP>9iq}r|i;kLC5x1$TYdLm3p$DxX8CN9C}@j>0t#H`h8 zs3JXx&G0e~!GNZA?Fl#*m8r?t9~WaDeu|SZEz->R2~?)uK^3>BPLxSm9NtBT8&w>y zqYjF9P{nr&mGU2*{$;9Tv0AD2n> z!`PDxdr&w0fW0s(#;jpB>iR}(j$ffNVK+AiP7G>kGO#y}MHTHv)b9Emb1{#o#G^d>%pn!ypw#fzxo8xm{oTaFRLZ=!1B1nU0ls7%$1Gquqj zdlHwSmheTa%>YJd|NF$747gBhl8HLIi%@IzB=*GP*aMrkGV$H0V%vaPvO{<$9zzWz zv9&p9`k|il7t}Vbar_ZI8c~Zj=EZ|hRbPloaV2X1??YweloOvr4aC2#F%y-EMc5TL z;~jV!eK0k_3@`)ry#9{&B(VQ)r(-D{y74QF$8)GJkAQaOJ0TR6k*TN|u0zf62h@Fj ziRRld2(=xXqrR5M;COriwZx5*OvZ{)nSL_KV>;fVLr3oo?1Qb7%?VeCV~8I`ZO?B| z1CD5K1~dhAqOC<`U^@=N8dL@YQcUKO(VsXKgRmE-;z$n-7mY>eh0mb|up5=C>!^`O zbTDf-12yuk*bLvp61?cd<2#ySoP+h~UyUKS36b{_!wv~hN z=)y-(=frkQ#N#*={d%$g%W2$2qdOi(r6{nsIXbgZnOKKfntiAx`5OD-dDKal(8mlo z8+Cp>j5=ucpmxF6s7!eEH3RWSy{~Iu_P=I6iw^yA*@|iSHtIpQP#I{|&pfa<>VYMw zHC=_e?`iCbhfpVBV1JYHFjNt@MlIb!)Dl&pCUChw`+pvd4g<`$)QcEMd=vGedIL?$ z5>XErkLq89t#AkG7tt{%zJ{^HO$M2a^+XMH3aTi}F$UM7h_Pp1MpMQF^VQFrDX}&AA#Fbx^S6oz7 zUbXz^()xD6iap;qT`~4>!|L{4c3s=ft4{Z}2l?UrK>ID<)!}w%_1G{w(YI-V+ch~q zZ)(1~#5IX#?u>jMqvsXHS8r)%kM*+iR=2dD8(k3ZE-EXj+3t2tEh{X@c2_XO?CH5> zQ_a2Ziu}?tw`+QCsr7%}S*p1em(Os!YMyiz#8)TgqR|2mIZ?}6mZQruuyu_ls3hRFWZHXzz diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index b59cc373c..bbeb8fcc2 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2017-2019,2022\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -73,7 +73,7 @@ msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être constru #: sphinx/application.py:226 msgid "making output directory" -msgstr "création du dossier de destinataire" +msgstr "Création du répertoire de sortie" #: sphinx/application.py:231 sphinx/registry.py:439 #, python-format @@ -201,7 +201,7 @@ msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." -msgstr "" +msgstr "Valeur de configuration invalide trouvée: 'language = None'. Mettez à jour la configuration avec un code de langage valide. Utilisation de 'en' (English) comme substitut." #: sphinx/config.py:202 #, python-format @@ -338,12 +338,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Ce projet nécessite que l'extension %s soit au minimum en version %s et par conséquent il ne peut pas être construit avec la version chargée (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Le nom du l'analyseur Pygments %r est inconnu" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "Analyse lexicale de literal_bloc impossible en \"%s\". Mise en évidence annulée." @@ -657,7 +657,7 @@ msgstr "Document en préparation" msgid "duplicated ToC entry found: %s" msgstr "Entrées dupliquées de la table des matières trouvées : %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "Copie des images... " @@ -667,7 +667,7 @@ msgstr "Copie des images... " msgid "cannot read image file %r: copying it instead" msgstr "impossible de lire le fichier image %r: il sera copié à la place" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -692,7 +692,7 @@ msgstr "écriture du fichier META-INF/container.xml..." #: sphinx/builders/_epub_base.py:497 msgid "writing content.opf file..." -msgstr "enregistrement du fichier content.opf..." +msgstr "Enregistrement du fichier content.opf..." #: sphinx/builders/_epub_base.py:523 #, python-format @@ -701,7 +701,7 @@ msgstr "mimetype inconnu pour %s, il sera ignoré" #: sphinx/builders/_epub_base.py:670 msgid "writing toc.ncx file..." -msgstr "enregistrement du fichier toc.ncx" +msgstr "Enregistrement du fichier toc.ncx..." #: sphinx/builders/_epub_base.py:695 #, python-format @@ -750,7 +750,7 @@ msgstr "Le fichier ePub se trouve dans %(outdir)s ." #: sphinx/builders/epub3.py:159 msgid "writing nav.xhtml file..." -msgstr "enregistrement du fichier nav.xhtml..." +msgstr "Enregistrement du fichier nav.xhtml..." #: sphinx/builders/epub3.py:185 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" @@ -792,10 +792,10 @@ msgstr "le paramètre de configuration \"epub_identifier\" ne peut pas être vid msgid "conf value \"version\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "fichier CSS invalide : %r, le fichier sera ignoré" +msgstr "Fichier CSS invalide : %r, sera ignoré" #: sphinx/builders/gettext.py:215 #, python-format @@ -847,7 +847,7 @@ msgstr "aucun valeur de configuration \"man_pages\" trouvée; aucun page du manu #: sphinx/builders/latex/__init__.py:292 sphinx/builders/manpage.py:46 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:102 msgid "writing" -msgstr "enregistrement" +msgstr "Enregistrement" #: sphinx/builders/manpage.py:61 #, python-format @@ -891,7 +891,7 @@ msgstr "La valeur du paramètre \"texinfo_documents\" référence un document in #: sphinx/builders/latex/__init__.py:274 sphinx/builders/texinfo.py:98 #, python-format msgid "processing %s" -msgstr "traitement en cours %s" +msgstr "Traitement de %s en cours" #: sphinx/builders/latex/__init__.py:345 sphinx/builders/texinfo.py:149 msgid "resolving references..." @@ -915,7 +915,7 @@ msgstr "erreur lors l'écriture du fichier Makefile : %s" msgid "The text files are in %(outdir)s." msgstr "Les fichiers texte se trouvent dans %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -934,171 +934,171 @@ msgstr "Le fichier pseudo-XML se trouve dans %(outdir)s." #: sphinx/builders/html/__init__.py:157 #, python-format msgid "build info file is broken: %r" -msgstr "le fichier de configuration de construction est corrompu : %r" +msgstr "Le fichier de configuration de construction est corrompu : %r" #: sphinx/builders/html/__init__.py:189 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Les pages HTML sont dans %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "Échec de lecture du fichier de configuration de construction : %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index général" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "suivant" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "précédent" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "Génération des index" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" -msgstr "écriture des pages additionnelles" +msgstr "Écriture des pages additionnelles" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "Copie des fichiers téléchargeables... " -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "impossible de copier le fichier téléchargeable %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Échec de la copie du fichier dans html_static_file : %s : %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" -msgstr "copie des fichiers statiques" +msgstr "Copie des fichiers statiques" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "impossible de copier le fichier static %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "Copie des fichiers complémentaires" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" -msgstr "copie des fichiers supplémentaires impossible %r" +msgstr "Copie des fichiers supplémentaires impossible %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "Échec d'écriture du fichier de configuration de construction : %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "L'index de recherche n'a pas pu être chargé, mais tous les documents ne seront pas construits: l'index sera incomplet." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "la page %s correspond à deux modèles dans html_sidebars: %r et %r" +msgstr "La page %s correspond à deux motifs dans html_sidebars: %r et %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "une erreur Unicode est survenue lors du rendu de la page %s. Veuillez vous assurer que toutes les valeurs de configuration comportant des caractères non-ASCII sont des chaînes Unicode." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Un erreur est survenue lors de la génération de la page: %s.\nLa raison est: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "Export de l'inventaire des objets" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" -msgstr "Export de l'index de recherche dans %s" +msgstr "Export de l'index de recherche en %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "le fichier js_file : %r est invalide, il sera ignoré" +msgstr "Fichier js_file : %r invalide, sera ignoré" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Plusieurs math_renderers sont enregistrés. Mais aucun n'est sélectionné." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "math_renderer saisi %r inconnu." +msgstr "math_renderer inconnu %r saisi." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" -msgstr "l'entrée html_extra_path %r n'existe pas" +msgstr "L’entrée %r de html_extra_path n’existe pas" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" -msgstr "l'entrée html_extra_path %r se trouve à l'intérieur de outdir" +msgstr "L’entrée %r de html_extra_path se trouve à l’intérieur de outdir" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" -msgstr "l'entrée html_static_path %r n'existe pas" +msgstr "L’entrée %r de html_static_path n’existe pas" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" -msgstr "l'entrée html_static_path %r se trouve à l'intérieur de outdir" +msgstr "L’entrée %r de html_static_path se trouve à l’intérieur de outdir" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" -msgstr "le fichier de logo %r n'existe pas" +msgstr "Le fichier de logo %r n’existe pas" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" -msgstr "le fichier de favicon %r n'existe pas " +msgstr "Le fichier de favicon %r n’existe pas " -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks a été déprécié depuis la v3.5.0. Veuillez utiliser à la place html_permalinks et html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Documentation %s %s" @@ -1198,7 +1198,7 @@ msgstr "Erreur d'encodage :" msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." -msgstr "Le traceback complet a été sauvé dans %s, au cas où vous souhaiteriez signaler le problème aux développeurs." +msgstr "La trace d’appels complète a été sauvegardée dans %s, au cas où vous souhaiteriez signaler le problème aux développeurs." #: sphinx/cmd/build.py:57 msgid "Recursion error:" @@ -1277,7 +1277,7 @@ msgstr "constructeur à utiliser (par defaut: HTML)" #: sphinx/cmd/build.py:132 msgid "write all files (default: only write new and changed files)" -msgstr "enregistrement des tous les fichiers (par défaut : enregistrement des nouveaux fichiers et des fichiers qui ont été modifiés)" +msgstr "enregistrer tous les fichiers (par défaut : enregistrer seulement les fichiers nouveaux ou modifiés)" #: sphinx/cmd/build.py:135 msgid "don't use a saved environment, always read all files" @@ -1359,7 +1359,7 @@ msgstr "avec -W, l'exécution se poursuit en cas d'avertissements" #: sphinx/cmd/build.py:183 msgid "show full traceback on exception" -msgstr "montrer le retraçage complet en cas d'exception" +msgstr "montrer la trace d’appels complète si une exception est levée" #: sphinx/cmd/build.py:185 msgid "run Pdb on exception" @@ -1909,7 +1909,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Paramètres" @@ -1927,44 +1927,44 @@ msgstr "Renvoie" msgid "Return type" msgstr "Type renvoyé" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "structure" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "énumération" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "paramètre de fonction" @@ -2013,16 +2013,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "Déclenche" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "paramètre du modèle" @@ -2201,7 +2201,7 @@ msgstr "description dupliquée pour l'objet %s; l'autre instance se trouve dans msgid "more than one target found for cross-reference %r: %s" msgstr "plusieurs cibles trouvées pour le renvoi %r : %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (obsolète)" @@ -2330,22 +2330,22 @@ msgstr "le lien n'a pas de légende : %s" #: sphinx/domains/std.py:886 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "format de numfig_format invalide : %s (%r)" +msgstr "numfig_format invalide : %s (%r)" #: sphinx/domains/std.py:889 #, python-format msgid "invalid numfig_format: %s" -msgstr "format de numfig_format invalide : %s" +msgstr "numfig_format invalide : %s" #: sphinx/domains/std.py:1102 #, python-format msgid "undefined label: %r" -msgstr "" +msgstr "label non défini: %r" #: sphinx/domains/std.py:1104 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" -msgstr "" +msgstr "Échec de création d'une référence. Ni titre ni légende trouvé : %r" #: sphinx/environment/__init__.py:71 msgid "new config" @@ -2619,7 +2619,7 @@ msgstr "%s n'est pas une option pyversion valide" #: sphinx/ext/doctest.py:219 msgid "invalid TestCode type" -msgstr "type TestCode invalide" +msgstr "type invalide de TestCode" #: sphinx/ext/doctest.py:277 #, python-format @@ -2636,7 +2636,7 @@ msgstr "pas de code ou sortie dans le bloc %s en %s : %s" #: sphinx/ext/doctest.py:513 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "code doctest invalide ignoré : %r" +msgstr "code doctest invalide sera ignoré : %r" #: sphinx/ext/duration.py:71 msgid "" @@ -2729,7 +2729,7 @@ msgid "" "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" "\n" "Traceback: %s" -msgstr "" +msgstr "Impossible d’exécuter la commande de conversion d'image %r. 'sphinx.ext.imgconverter' nécessite par défaut ImageMagick. Assurez-vous que ce dernier est installé, ou configurez l’option 'image_converter' pour faire référence à une commande de conversion ad hoc.\n\nTrace d’appels : %s" #: sphinx/ext/imgconverter.py:42 sphinx/ext/imgconverter.py:66 #, python-format @@ -2857,7 +2857,7 @@ msgstr "entrée originale" #: sphinx/ext/viewcode.py:235 msgid "highlighting module code... " -msgstr "coloration syntaxique du code du module..." +msgstr "Coloration syntaxique du code du module..." #: sphinx/ext/viewcode.py:267 msgid "[docs]" @@ -2883,7 +2883,7 @@ msgstr "

Modules pour lesquels le code est disponible

" #: sphinx/ext/autodoc/__init__.py:120 #, python-format msgid "invalid value for member-order option: %s" -msgstr "valeur invalide pour l'option de l'ordre des membres : %s" +msgstr "valeur invalide pour l'option member-order : %s" #: sphinx/ext/autodoc/__init__.py:128 #, python-format @@ -3120,58 +3120,58 @@ msgid "" "%(default)s)" msgstr "documenter exactement les membres dans l'attribut __all__ du module. (par défaut : %(default)s)" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Arguments de mots-clés" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Exemple" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Exemples" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Notes" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Autres paramètres" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "Reçoit" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Références" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Avertissements" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "Yields" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "ensemble de valeurs invalides (accolade fermante manquante) : %s" +msgstr "ensemble invalide de valeurs (accolade fermante manquante) : %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "ensemble de valeurs invalides (accolade ouvrante manquante) :%s" +msgstr "ensemble invalide de valeurs (accolade ouvrante manquante) :%s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "chaîne littérale malformée (guillemet fermant manquant) : %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "chaîne littérale malformée (guillemet ouvrant manquant) : %s" @@ -3493,25 +3493,25 @@ msgstr "La note de bas de page [%s] n'est pas référencée." msgid "Footnote [#] is not referenced." msgstr "La note de bas de page [#] n'est pas référencée." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "incohérences de références de notes de bas de page dans le message traduit. Original : {0}, traduit : {1} " -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "incohérences de références dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "incohérences de références de citation dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index f4d1d0649084fe4ef20e98ce385ad2bb5030ae03..c35f76a9ae010178b4e40686df3388366144e5dd 100644 GIT binary patch delta 21 ccmZ3@vYKT=8<)ARfw6*tft8Wb#tE|-0Y!cWK>z>% delta 21 ccmZ3@vYKT=8<&}`k(q*lft8W*#tE|-0Y$C`MgRZ+ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 0e6a88ef8..89f3f6d26 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 17afe64a24afa8fb4da7e5f712ffd1db30cdcf70..7483aa7661b56d57174d4ccaaf2c0dc440a5f7b0 100644 GIT binary patch delta 23 fcmcbtc3Ex1bS^G)T?1nU0|P4~qs, 2011\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "אינדקס" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "הבא" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "הקודם" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "תיעוד %s %s" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "פרמטרים" @@ -1901,44 +1901,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "משתנה" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "פונקציה" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "מחלקה" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 44e31a84bcbedad12651ebab3f303867115a3c16..7ff8f2187673d42a1f8e758a1f25c413a651b52c 100644 GIT binary patch delta 25 gcmdni!nUo2Z9{qom$|Niv4Vktm66fr!j7Xq0d(34c>n+a delta 25 gcmdni!nUo2Z9{qomzl1SnSz0Vm67r0!j7Xq0d)@vegFUf diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index c93ad5541..12da408e4 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Sumanjali Damarla , 2020\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -315,12 +315,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "इस परियोजना में आयाम %s का कम से कम %s संस्करण चाहिए इसलिए उपलब्ध संस्करण (%s) से बनाना संभव नहीं है." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "पिगमेंटस लेक्सर नाम %r अज्ञात है" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "literal_block का \"%s\" नियमन नहीं हो सका. विशेषअंकन छोड़ दिया गया." @@ -634,7 +634,7 @@ msgstr "लेखपत्र बनाए जा रहे हैं" msgid "duplicated ToC entry found: %s" msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." @@ -644,7 +644,7 @@ msgstr "चित्रों की प्रतिलिपि बनाई msgid "cannot read image file %r: copying it instead" msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "ई-पब3 के लिए विन्यास मान \"epub_iden msgid "conf value \"version\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "अमान्य css_file: %r, उपेक्षित" @@ -892,7 +892,7 @@ msgstr "मेकफाइल लिखने में त्रुटि: %s" msgid "The text files are in %(outdir)s." msgstr "पाठ फाइल %(outdir)s में हैं." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -918,164 +918,164 @@ msgstr "निर्माण सूचनापत्र फाइल खंड msgid "The HTML pages are in %(outdir)s." msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुक्रमाणिका" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "अनुक्रमणिका" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "आगामी" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "पूर्ववर्ती" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "अनुक्रमाणिका निर्मित की जा रही है" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "अतिरिक्त फाइलों की प्रतिलिपियां बनाये जा रहे है| " -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "खोज अनुक्रमाणिका नहीं चढाई जा सकी, लेकिन सभी लेखपत्र नहीं बनाए जाएंगे: अनुक्रमणिका अपूर्ण रहेगी." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "पृष्ठ %s html_sidebars में दो आकृतियों से मिलता है: %r %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "पृष्ठ %s की प्रस्तुति करते समय यूनिकोड त्रुटि हुई. कृपया यह सुनिश्चित कर लें कि सभी नॉन-असकी #non-ASCII# विहित विन्यास मान यूनिकोड अक्षरों में हैं." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "अमान्य js_file: %r, उपेक्षित" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "अज्ञात math_renderer %r दिया गया." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s दिग्दर्शिका" @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "मापदण्ड" @@ -1904,44 +1904,44 @@ msgstr "प्रदत्त " msgid "Return type" msgstr "प्रदत्त प्रकार " -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "चर पद" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "फंक्शन" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "मैक्रो" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "युग्म" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "गणक" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "प्रगणक " -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "प्रकार" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1990,16 +1990,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "देता है " -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "वर्ग" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "अवधारणा " -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2178,7 +2178,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "(अवमानित)" @@ -3097,58 +3097,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "मुख्य शब्दों के चर-पद" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "उदाहरण" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "कुछ उदाहरण" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "टिप्पणियाँ" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "अन्य मापदण्ड" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "सन्दर्भ" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "चेतावनी देता है" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "मिलता है" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3470,25 +3470,25 @@ msgstr "पाद-टिप्पणी [%s] का कोई सन्दर् msgid "Footnote [#] is not referenced." msgstr "पाद-टिप्पणी [#] सन्दर्भ कहीं नहीं है" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "अनुवादित संदेश में असंगत पाद-टिप्पणी के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "अनुवादित संदेश में असंगत प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "अनुवादित संदेश में असंगत उद्धरण के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 26183711fafdd23fcc183929fd9e3875412cc85e..7f5597e5296bbb2851c5aeca4a667b7ffc17d818 100644 GIT binary patch delta 21 ccmeyy{Ec}+8<)ARfw6*tft8Wb#tCVR08pj|pa1{> delta 21 ccmeyy{Ec}+8<&}`k(q*lft8W*#tCVR08rKjr2qf` diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 5a219496d..76f39b4c4 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index d2c3adef283be063a975ea92c119f3466a2645e7..7f3dbdca7226c3d4cea39efbc5c748a7d8d344a2 100644 GIT binary patch delta 25 gcmZ45#<;YNal>YHE^}Q2V+8{PD;M1& delta 25 gcmZ45#<;YNal>YHE;C&tGX(W$jqD#c~4YhbKkU|?lrwAo*3pAZ05zXrJg delta 23 ecmeB;>W$jqD#c}{Yh, 2019-2020\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -316,12 +316,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Proyek ini memerlukan ekstensi %s sedikitnya pada versi %s dan maka itu tidak bisa dibangun dengan versi yang dimuat (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Nama Pygments lexer %r tidak diketahui" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "Tidak dapat menjalankan lex literal_block sebagai \"%s\". Menyoroti yang terlewat." @@ -635,7 +635,7 @@ msgstr "menyiapkan dokumen" msgid "duplicated ToC entry found: %s" msgstr "entri ToC ganda ditemukan: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "menyalin gambar... " @@ -645,7 +645,7 @@ msgstr "menyalin gambar... " msgid "cannot read image file %r: copying it instead" msgstr "tidak dapat membaca berkas gambar %r: menyalin gambar sebagai gantinya" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -770,7 +770,7 @@ msgstr "nilai conf \"epub_identifier\" tidak seharusnya kosong untuk EPUB3" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" @@ -893,7 +893,7 @@ msgstr "kesalahan menulis berkas Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Berkas teks berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -919,164 +919,164 @@ msgstr "berkas info build rusak: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "Gagal membaca berkas info build: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks Umum" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "berikut" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "menghasilkan indeks" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "menulis halaman tambahan" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "menyalin berkas yang dapat diunduh... " -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "tidak dapat menyalin berkas statik %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "tidak dapat menyalin berkas ekstra %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "Gagal menulis berkas info build: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "indeks pencarian tidak dapat dimuat, tapi tidak semua dokumen akan dibangun: indeks akan jadi tidak lengkap." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "halaman %s sebanding dengan dua pola dalam html_sidebars: %r dan %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "kesalahan Unicode terjadi saat render halaman %s. Silakan pastikan semua nilai konfigurasi yang berisi konten non-ASCII adalah string Unicode." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Kesalahan terjadi saat render halaman %s.\nAlasan: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "menyisihkan persediaan obyek" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file yang salah: %r, mengabaikan" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Banyak math_renderers teregistrasi. Namun tidak satu pun math_renderer yang dipilih." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer %r yang tidak diketahui diberikan." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entri html_extra_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entri html_static_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "berkas logo %r tidak ada" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "berkas favicon %r tidak ada" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Dokumentasi %s %s" @@ -1887,7 +1887,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parameter" @@ -1905,44 +1905,44 @@ msgstr "Kembali" msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "anggota" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "fungsi" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipe" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1991,16 +1991,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "konsep" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2179,7 +2179,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "lebih dari satu target ditemukan untuk referensi silang %r: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (obsolet)" @@ -3098,58 +3098,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Argumen Kata Kunci" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Contoh" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Contoh-contoh" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Catatan" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Parameter lainnya" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Referensi" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Peringatkan" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "Hasil" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3471,25 +3471,25 @@ msgstr "Catatan kaki [%s] tidak dirujuk." msgid "Footnote [#] is not referenced." msgstr "Catatan kaki [#] tidak dirujuk." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referensi catatan kaki yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referensi yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referensi kutipan tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index a5db8dd7755d11d6d3334793daa6b6472601ec31..d0f2b7360fb0dcf5836b94897d9ea40a3bae65d2 100644 GIT binary patch delta 23 ecmeB@=#tp*myOF@*T7i8z`)ALXfr!IGb;d7Ck3zo delta 23 ecmeB@=#tp*myOFz*T_u4z`)ALcr!aYGb;d7Tm`iN diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 5f72c42f2..19b2c6628 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tryggvi Kalman , 2021\n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Almennt yfirlit" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "yfirlit" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "næsta" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "fyrri" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1901,44 +1901,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 87341f0f7f65b8b57805c123c6f7e9c0ac4b348c..d16f07e92b403b18cd56c9bffb576b6d6bd9e6f9 100644 GIT binary patch delta 23 ecmX>cayVo|h9sA{u7R)9S3dz delta 23 ecmX>cayVo|h9sAnu92C7fq|8g@#Z4Qivj>)QU`MY diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 45b43f6c2..f5629174e 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Antonari Palmio, 2022\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -317,12 +317,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -646,7 +646,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -771,7 +771,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -894,7 +894,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -920,164 +920,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indice generale" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indice" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "successivo" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "precedente" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s documentazione" @@ -1888,7 +1888,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametri" @@ -1906,44 +1906,44 @@ msgstr "Ritorna" msgid "Return type" msgstr "Tipo di ritorno" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variabile" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1992,16 +1992,16 @@ msgstr "" msgid "Throws" msgstr "Solleva" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "concetto" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2180,7 +2180,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (deprecato)" @@ -3099,58 +3099,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Argomenti parole chiave" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Esempi" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3472,25 +3472,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 83b7f5c8b5a6e8a1fd85b8368b50cb3c28d99dd4..85d6eb54392da927b88f2caf6a01d033d18e9e07 100644 GIT binary patch delta 25 hcmaDco%O|Z)(vMCaGC2G7%LbUSQ!~@zP3PUH2{hZ3Hks4 delta 25 hcmaDco%O|Z)(vMCaGB{EnJE|;SQ!~_zP3PUH2{i33I6~9 diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index f489784d1..3a67d9010 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016-2017,2019,2022\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -328,12 +328,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "このプロジェクトは拡張 %s の %s 以降のバージョンが必要なため、現在のバージョン(%s)ではビルドできません。" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments に %r というlexerがありません" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "リテラルブロックを \"%s\" として解釈できませんでした。ハイライト処理をスキップします。" @@ -647,7 +647,7 @@ msgstr "ドキュメントの出力準備中" msgid "duplicated ToC entry found: %s" msgstr "Tocエントリーが重複しています: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "画像をコピー中... " @@ -657,7 +657,7 @@ msgstr "画像をコピー中... " msgid "cannot read image file %r: copying it instead" msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -782,7 +782,7 @@ msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"version\" が必要です" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無効な css_file %r は無視されました" @@ -905,7 +905,7 @@ msgstr "Makefile の書き込みエラー: %s" msgid "The text files are in %(outdir)s." msgstr "テキストファイルは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -931,164 +931,164 @@ msgstr "build info ファイルが壊れています: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTMLページは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "build info ファイルの読み込みに失敗しました: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y年%m月%d日" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "総合索引" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "次へ" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "前へ" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "索引を生成中" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "追加のページを出力中" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "ダウンロードファイルをコピー中..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "ダウンロードファイル %r をコピーできません: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "html_static_file 内のファイルのコピーに失敗しました: %s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "静的ファイルをコピー中" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "静的ファイル %r をコピーできません" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "extraファイルをコピー中" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "extraファイル %r をコピーできませんでした" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "build info ファイル %r の出力に失敗しました" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "検索インデックスを読み込めず、ドキュメントビルドの一部が不完全です。" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "ページ %s がhtml_sidebarsの複数のパターンに一致しました: %r と %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ページ%sの読み込み中にUnicodeエラーが発生しました。非アスキー文字を含む設定値は全てUnicode文字列にしてください。" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r " -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "オブジェクト インベントリを出力" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "%s の検索インデックスを出力" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無効な js_file %r は無視されました" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "不明な math_renderer %r が指定されました。" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "ロゴファイル %r がありません" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "favicon ファイル %r がありません" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinksはv3.5.0以降、非推奨となりました。代わりにhtml_permalinksとhtml_permalinks_iconを使用してください。" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s ドキュメント" @@ -1899,7 +1899,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "パラメータ" @@ -1917,44 +1917,44 @@ msgstr "戻り値" msgid "Return type" msgstr "戻り値の型" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "のメンバ変数" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "変数" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "列挙型" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "関数パラメータ" @@ -2003,16 +2003,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "例外" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "クラス" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "コンセプト" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "テンプレート・パラメータ" @@ -2191,7 +2191,7 @@ msgstr "%s のオブジェクト記述、 %s の他の​​インスタンス msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (非推奨)" @@ -3110,58 +3110,58 @@ msgid "" "%(default)s)" msgstr "モジュール __all__ 属性に含まれるメンバーのみを対象としたドキュメントを作成します。(デフォルト: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "キーワード引数" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "サンプル" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "サンプル" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "メモ" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "その他のパラメータ" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "受け取る" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "参照" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "列挙" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "無効な値セット (終了括弧がありません): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "無効な値セット (開始括弧がありません): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "不正な文字列リテラル (終了引用符がありません): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "不正な文字列リテラル (開始引用符がありません): %s" @@ -3483,25 +3483,25 @@ msgstr "Footnote [%s] は参照されていません。" msgid "Footnote [#] is not referenced." msgstr "Footnote [#] は参照されていません。" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "翻訳されたメッセージの footnote 参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "翻訳されたメッセージの参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "翻訳されたメッセージの引用参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 338a197be72770003a7e8d0d1ec5aad1421ee6d5..239fc406e29e0d4c5c8f10ebf3a0ebfd83ea4408 100644 GIT binary patch delta 25 hcmex7llAjV)(tLexy*G9j1>$Ftc;8{`>kC%9{_^e38er4 delta 25 hcmex7llAjV)(tLexy*Ep%oGd^tc;8|`>kC%9{__8390}9 diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 962d5db45..7ba89147b 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H , 2019-2022\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "이 프로젝트에는 최소한 %s 버전의 %s 확장 기능이 필요하므로 로드 된 버전(%s)으로 빌드 할 수 없습니다." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments 구문 분석기 이름 %r을(를) 확인할 수 없습니다" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "literal_block을 \"%s\"(으)로 구문 분석할 수 없습니다. 구문 강조를 건너뜁니다." @@ -632,7 +632,7 @@ msgstr "문서 준비 중" msgid "duplicated ToC entry found: %s" msgstr "중복된 목차 항목 발견: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "이미지를 복사하는 중… " @@ -642,7 +642,7 @@ msgstr "이미지를 복사하는 중… " msgid "cannot read image file %r: copying it instead" msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "설정값 \"epub_identifier\"는 EPUB3의 경우 비워 둘 수 없습 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "잘못된 css_file: %r, 무시합니다" @@ -890,7 +890,7 @@ msgstr "Makefile 쓰기 오류: %s" msgid "The text files are in %(outdir)s." msgstr "텍스트 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "빌드 정보 파일이 손상되었습니다: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTML 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "전체 색인" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "색인" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "다음" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "이전" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "색인 생성 중" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "추가 페이지 작성 중" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "다운로드 가능한 파일을 복사하는 중… " -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "html_static_file에 있는 파일을 복사할 수 없습니다: %s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "정적 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "정적 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "추가 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "빌드 정보 파일 쓰기 실패: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "검색 색인을 불러올 수 없지만 모든 문서가 작성되지는 않은 것은 아닙니다. 색인이 불완전합니다." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "%s 페이지가 html_sidebars의 두 패턴(%r 및 %r)과 일치합니다" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "%s 페이지를 렌더링 할 때 유니코드 오류가 발생했습니다. ASCII가 아닌 내용을 포함하는 모든 설정값이 유니코드 문자열인지 확인하십시오." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "객체 인벤토리 덤프 중" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "%s에서 검색 인덱스 덤프 중" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "잘못된 js_file: %r, 무시합니다" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "로고 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "Favicon 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks는 3.5.0 버전부터 더 이상 사용되지 않습니다. 대신 html_permalinks 및 html_permalinks_icon을 사용하십시오." -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s 문서" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "매개변수" @@ -1902,44 +1902,44 @@ msgstr "반환" msgid "Return type" msgstr "반환 형식" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "멤버 변수" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "변수" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "구조체" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "공용체" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "열거형" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "열거자" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "자료형" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "함수 매개변수" @@ -1988,16 +1988,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "예외" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "클래스" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "콘셉트" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "템플릿 매개변수" @@ -2176,7 +2176,7 @@ msgstr "%s의 중복 객체 설명, 다른 인스턴스는 %s에 있으며, 이 msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (폐지됨)" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "모듈 __all__ 속성의 구성원만 정확히 문서화합니다. (기본값: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "키워드 매개변수" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "예제" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "예제" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "참고" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "기타 매개변수" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "수신" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "참조" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "경고" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "생성" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "잘못된 값 세트 (닫는 중괄호 누락): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "잘못된 값 세트 (여는 중괄호 누락): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "잘못된 문자열 리터럴 (닫는 따옴표 누락): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "잘못된 문자열 리터럴 (여는 따옴표 누락): %s" @@ -3468,25 +3468,25 @@ msgstr "각주 [%s]이(가) 참조되지 않았습니다." msgid "Footnote [#] is not referenced." msgstr "각주 [#]이 참조되지 않았습니다." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "번역된 메시지의 각주 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "번역된 메시지의 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "번역된 메시지의 인용 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 81a55e62400a569aa1397856086ce54b4bcfbb12..0662e6b14ba2663f3c8778154ad42cb81d80f209 100644 GIT binary patch delta 23 ecmX?Le!zUgWC1R7T?1nU0|P4~qs?;#l(_+2bOyfw delta 23 ecmX?Le!zUgWC1QST_ZCE0|P4~, 2010\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y-%m-%d" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Bendras indeksas" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indeksas" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "kitas" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "praeitas" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametrai" @@ -1901,44 +1901,44 @@ msgstr "Grąžinamos reikšmės" msgid "Return type" msgstr "Grąžinamos reikšmės tipas" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "narys" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "kintamasis" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipas" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "Išmeta" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klasė" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (atmestas)" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 41b49bfd8b863b5cb211f9747fd771f5f34c44ad..ac5fda1355147b8940061da1bba1ebb1af7bff99 100644 GIT binary patch delta 23 ecmZoNZ8F_pFTiE4YhbKkU|?lrwAoX@k_!M!YXz(T delta 23 ecmZoNZ8F_pFTiD{Yh\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Vispārējs indekss" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indekss" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "nākošais" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "iepriekšējs" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametri" @@ -1900,44 +1900,44 @@ msgstr "Atgriež" msgid "Return type" msgstr "Atgriežamais tips" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "loceklis" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "mainīgais" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tips" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "Izmet" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klase" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index da1ba725ac2c7fbcba4b7349fe5742faca86d632..bbff1a0a050503f61250de05ec0732ed9d41a7f9 100644 GIT binary patch delta 23 fcmcc3f17{9b!IMeT?1nU0|P4~qs, 2013\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Главна содржина" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "содржина" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "следна" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "претходна" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Параметри" @@ -1901,44 +1901,44 @@ msgstr "Враќа" msgid "Return type" msgstr "Повратен тип" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "променлива" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "макро" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "Фрла" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index ab02f3460032a31a690ac6bab8e51692fe197f1f..3c0b82c0451d41b49ae033a3c7b1b99fe7c4c59b 100644 GIT binary patch delta 23 ecmaE7^3G(#D*-NZT?1nU0|P4~qs?CgsyG2{1PB-a delta 23 ecmaE7^3G(#D*-MuT_ZCE0|P4~\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Hovedindex" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "neste" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametere" @@ -1900,44 +1900,44 @@ msgstr "Returnere" msgid "Return type" msgstr "Retur type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (foreldet)" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 3c46f765045ce4bfc15521958f423873e022f389..a1d0e1fa8101d28b995e76bc4da2f4636d134d54 100644 GIT binary patch delta 23 ecmZ4Ly3}>UOaU%)T?1nU0|P4~qs@y2n1ldZWd@f3 delta 23 ecmZ4Ly3}>UOaU%4T_ZCE0|P4~, 2016\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुसुची" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parameters" @@ -1902,44 +1902,44 @@ msgstr "Returns" msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "चल" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "किसिम" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "कक्षा" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "(deprecated)" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 708de4b77d20106ba48fe594c13c10b2780dff3d..ee90eb7f7ebcfd0ca57bb56bfcc4889e43cae7bf 100644 GIT binary patch delta 25 hcmaDfo$=9h#tmn+xy*G9j1>$Ftc;8{U)SbV004fW2y6fV delta 25 hcmaDfo$=9h#tmn+xy*Ep%oGd^tc;8|U)SbV004g02yp-a diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 51055e4a9..4fd7b6f27 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -318,12 +318,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Dit project vereist extensie %s met versie %s of hoger, en kan daarom niet met de geladen versie (%s) worden gebouwd" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -772,7 +772,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -895,7 +895,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -921,164 +921,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Algemene index" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "volgende" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "vorige" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s documentatie" @@ -1889,7 +1889,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parameters" @@ -1907,44 +1907,44 @@ msgstr "Returns" msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "member" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variabele" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1993,16 +1993,16 @@ msgstr "" msgid "Throws" msgstr "Werpt" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2181,7 +2181,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (verouderd)" @@ -3100,58 +3100,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Sleutelwoordargumenten" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Verwijzingen" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3473,25 +3473,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index b8f9bd00ed8708fcd068be19d7d2ef9e81cec818..d527aab9af2d79f4dedce7ba0675198d2e68b1f1 100644 GIT binary patch delta 3051 zcmXZd3ry8z7{~D!MQ#UgARa0Jld6|{# zqGmdsm|Kc%hMFzWS(KSpbGhc$n#}7u3+EPI5_8%2=lkE-KJW9M|M|bq`@GM4csmrf zITZHA_a3LboiW8@jOk>IX~;7s9KXS-cn+tdcdRjeu?C}XJ9fmqn1M&I12$tfyoH^y z&5fh;jp^dB^-h_PP7$1Y#Omx8w=)w0e8b85A{1o+qM$~hc(Tg{+2mXh#m{?#; z9Qtttj>O(rjoQFA9E=Tk4x0-cV{#ZAEHowtuVEy%U^w2xVfe^3P-ILzaXIRHYp@?4 z!wS5DN?`O$#*D(r*b}#*HdK!t@C2$tryK^63@)Nxcp0_BPUDOjfW2`b7GN4K$BDQb zqcMakWh)NCu<^!_s|jE_u0~bnGfcn}?)*heCU%~<5A>X1Gara5bq@B&QdEL#Q47|h z655JMcpO!cUr;;0jvl;^IvQo$2a<3x=3rMmh!L!BPBNg+%o)@d!iw!eUW_63qnc`{ z>sZtaX5wV5LM34FmqnTK9t=Q9HPSD&buu zQ{yW!hKpiSP;n)yQY)|*Zbmk34x%dYH)^49vh-szcEvo@(N4nz);Aj%aD3)N)Q+!W z7Yt!%Y(pg!U21obfJ2D=s3VzzdVUV-`DzT}n>YxMy7Paa-rs_1!iVT+Cr=m*$M#cf zsk2;*Q47yUEwmhU?bf;Rc2xK8L!EIG>YCj`9YrKRB5JY})Q$^Kw_+J)Vf|FL1I*A|_Ocm8i_uqZZul&YwWNuo3nAZy1l)QHefq=i_JC&wUujd;mLQE~)~>s03DH zE^cxdsHEp{DBeJ28uzk$3s4LCQ7=r#R2+*bSdCk8C#uwaX4-^uQP;E#({M8?fnzua ze|L38&a$Q7fjYZJ^kFmVte#>Pj+$)~T7y-@wOEUHPzf)4#WvS!)Guc(_QH**#15c( zMnL`OT^$)GPD#sL0|$@my`E0X4O_tA&h_&zGZpHPY1L^W3k z^#jv+flbtlI*K4>;5bx5Z=e#{wSe=daZMc)D&b>PiB>JNzJtAp4`3FaMQ)mDLzTW{ zk-hH+um|yZ)LCCcUAqu!gAY+Vj;=6fJbEz`7gbRI2nM^E&~>T96ugMJ*otb-%*FQK z^ITMq>_H`Z1pU~A{qRpzP%jF(^RY|p zZ+$#QGXEl$;y6^3?!^vx6xAbNBBy39AjLF;tL#yIfNHwKn1jujhmLotEm0W`WTFP2 zRRp7m>rgwc$22^JI@8;z=bmDJj96yl!Kg$saVQp|uJP-xn{WW}4vf+LKg~d;JdY|- zGwKCxs1kLoX4e>pD)ltf!s}7J@fJqoKGYc>LiNVisKh*Ut`E~OfTfs*c^(KOV5DJQcOh6P75%Ucb3-c8LDN%FUX#Y}|<*NCX zO%roVvCV0yOLQ8|6sx&hb8AiJ>tey&!k3A;(AoFr`EP8WbIv{Yoaa2}IhQRRJvMdp zXuKHel=n2IB+r;IW6aTfV*>CT&cX9oirz`a48s}>!fn_W_h1?x#z1Vvm+&@*W0%_x zoXi^ZV_Zk0_A8uh9OI`kkAZ%;9z*dH48|`o8ox#@(1e@{c_azR%0w4!wS5L z3LtB$G1)jB2jN!Kff_In8&MfL<uoQL>Jr0hoe$G4&$%{72sObhIOcbKEi?c z9V#QgqE3DTL-9W9YM$cD7)8`8a2!V90qo8G<^&Du%$z}e;TdWpZ;8DUKdPuky5^!5 zn2R&90u|sH)Loy)EWCq3=$m0r8i!%@C!qqLjlJ35)X?D1taU%Qh&sVdR0{7Rks9A? z#_&)~EULc@m8q5J!%fIx%>h&<{y}Y|D2GD~Mqm!=YG+~;`+ zU8sNpXW0`(;4Ad~s7%d3&7Y5&UxlOaJsgQg-0?qA>$jtd@F6-n$rBo5@i{8hV`p27 zP#Z5qZB&hVcJI3VZK&$si@M`x)HAz{x{6+NZ0ciCC!UCU6_uEY4RgqUA&uJ%sMr$c z+LX?~!St7-PP7@7%3W^%80s#YQ78Y+9lwc6btkHpB1`Q-l2J91hnhdt?U$93|2_;X zW+ zDZPNHcoP+A*z4{qKyBzpEtrCdn2RH@3b*18)O#L0-v*S8dZuNVgqu(S9K$#94_7C> z%%*-j>h7A*kFBV?>c&ibb%70NHCEHF!w;|n6>#Mnwzz6hznpdG!w*q`?MKzf52*RK zkb^m5Ei56t-uIe zg)zACh1`EV4ORDPRI&Ypns^nJ@-|co|8*U<(ALOwk^sHsBo8y2Usd zOVNw_a15TrAr6fW8cMxqkv%~YM$<1wJ+GyxV*41Qa33ngColt>uqSq+Hhh3nup4#K z{KYmS<){pw^#c>S z)CTHBT}3jcVF4|xTvN}0Qur8^qE*YRThK>;KW5@t0;6v1j11pS~hF(m^#TDegH;vs4=(*J62)u;3*oi96)D`yM^8!?j ze2EJ5Fb>CNjK#lDne$ZIT8Kv#VKVCEg~)G{S%Lw0#-X7Ano(bDK`qqgjt5oQ-}-R$ zFg^iiVF9X0_h29%LDk4{aa6DT}q2gs!VA-qfD_Vp@>2Jnfco21vZ!sH>qOSNZdNdHW z#xCeZeGrd@ScIc-Cq`lm>iu7H`}a;(Mo&lz$w*1d@Q)gmm6pEqcwUaDX5peGmCLG6 JcIWj;`yV((jcWh^ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 04f14c640..0eca7aafd 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: -# m_aciek , 2017-2020 +# Maciej Olko , 2017-2020 # Michael Gielda , 2014 # Takeshi KOMIYA , 2018 # Tawez, 2013-2019 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: m_aciek , 2017-2020\n" +"Last-Translator: Maciej Olko , 2017-2020\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -315,12 +315,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Ten projekt potrzebuje rozszerzenia %s co najmniej w wersji %s, dlatego nie może zostać zbudowany z załadowaną wersją (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -634,7 +634,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "kopiowanie obrazków..." @@ -644,7 +644,7 @@ msgstr "kopiowanie obrazków..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" @@ -892,7 +892,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "Pliki tekstowe są w %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -918,164 +918,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "Strony HTML są w %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks ogólny" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "dalej" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "kopiowanie plików do pobrania..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "nie można skopiować pliku statycznego %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "nie można skopiować dodatkowego pliku %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Wystąpił błąd podczas renderowania strony %s.\nPowód: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "nieprawidłowy js_file: %r, zignorowano" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Podano nieznany math_renderer %r." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "plik favicon %r nie istnieje" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametry" @@ -1904,44 +1904,44 @@ msgstr "Zwraca" msgid "Return type" msgstr "Typ zwracany" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "pole" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "zmienna" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "unia" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1990,16 +1990,16 @@ msgstr "" msgid "Throws" msgstr "Wyrzuca" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klasa" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "koncepcja" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2178,7 +2178,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (niezalecane)" @@ -3097,58 +3097,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Argumenty Nazwane" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Przykład" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Przykłady" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Uwagi" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Pozostałe parametry" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3470,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 5ee4d11440a8c02d27bb17f26c63ceadec0c76ad..b6e2a1019b42ce7c2d93835b6c26ebc16e7f9c97 100644 GIT binary patch delta 21 ccmZ3$vVdhm8<)ARfw6*tft8Wb#t9P`0Yk6`AOHXW delta 21 ccmZ3$vVdhm8<&}`k(q*lft8W*#t9P`0Yl&hB>(^b diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index bd66c8a2a..4698f1f2a 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 810e12359cd7046469e98f1cd523f20577f88636..4f26948ea7f15dc04a19ee88da3d009c50ca8e3e 100644 GIT binary patch delta 25 hcmZqr!_xGJWrNRZE^}Q2V+8{PD, 2019-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -317,12 +317,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Este projeto precisa da extensão %s pelo menos na versão %s e, portanto, não pode ser compilado com a versão carregada (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Nome de analisador léxico Pygments %r não é conhecido" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "Não foi possível fazer análise léxica de literal_block como “%s”. Realce de sintaxe ignorado." @@ -636,7 +636,7 @@ msgstr "preparando documentos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabela de conteúdos duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "copiando imagens… " @@ -646,7 +646,7 @@ msgstr "copiando imagens… " msgid "cannot read image file %r: copying it instead" msgstr "não foi possível ler o arquivo de imagem %r: copiando-o" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -771,7 +771,7 @@ msgstr "o valor da configuração “epub_identifier” não deve estar vazio pa msgid "conf value \"version\" should not be empty for EPUB3" msgstr "o valor da configuração “version” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -894,7 +894,7 @@ msgstr "erro ao escrever o arquivo Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Os arquivos texto estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -920,164 +920,164 @@ msgstr "arquivo de informações da compilação está quebrado: %r" msgid "The HTML pages are in %(outdir)s." msgstr "As páginas HTML estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "Falha ao ler o arquivo de informações de compilação: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "gerando índices" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "escrevendo páginas adicionais" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "copiando arquivos baixáveis… " -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "não foi possível copiar o arquivo baixável %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Falha ao copiar um arquivo em html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "copiando arquivos estáticos" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "não foi possível copiar o arquivo estático %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "copiando arquivos extras" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "não foi possível copiar o arquivo extra %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "Falha ao escrever o arquivo de informações de compilação: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "não foi possível carregar o índice de pesquisa, mas nem todos os documentos serão compilados: o índice ficará incompleto." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "a página %s corresponde a dois padrões em html_sidebars: %r e %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ocorreu um erro Unicode ao renderizar a página %s. Verifique se todos os valores de configuração que contêm conteúdo não ASCII são strings Unicode." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ocorreu um erro ao renderizar a página %s.\nMotivo: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "despejando inventário de objetos" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "despejando índice de pesquisa em %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Muitos math_renders estão registrados, mas nenhum math_renderer está selecionado." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer desconhecido %r é fornecido." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "a entrada de html_extra_path %r não existe" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "entrada de html_extra_path %r está posicionada dentro de outdir" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "a entrada de html_static_path %r não existe" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "entrada de html_static_path %r está posicionada dento de outdir" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "o arquivo logo %r não existe" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "o arquivo favicon %r não existe" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks foi descontinuado desde v3.5.0. Use html_permalinks e html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "documentação %s %s" @@ -1888,7 +1888,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parâmetros" @@ -1906,44 +1906,44 @@ msgstr "Retorna" msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "união" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "parâmetro de função" @@ -1992,16 +1992,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "Lança" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "conceito" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "parâmetro de modelo" @@ -2180,7 +2180,7 @@ msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noin msgid "more than one target found for cross-reference %r: %s" msgstr "mais de um alvo localizado para referência cruzada %r: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (obsoleto)" @@ -3099,58 +3099,58 @@ msgid "" "%(default)s)" msgstr "documenta exatamente os membros no módulo atributo __all__. (padrão: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Argumentos de Palavras-chave" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Exemplo" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Exemplos" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Notas" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Outros Parâmetros" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "Recebe" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Referências" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "Yields" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "valor inválido definido (faltando chave de fechamento): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "valor inválido definido (faltando chave de abertura): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "string literal malformada (faltando aspas de fechamento): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "string literal malformada (faltando aspas de abertura): %s" @@ -3472,25 +3472,25 @@ msgstr "Nota de rodapé [%s] não é referenciada." msgid "Footnote [#] is not referenced." msgstr "Nota de rodapé [#] não é referenciada." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referências de nota de rodapé inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referências inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referências de citação inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 55de00bce71d7038df70d66d57ee4ec401c9a676..105347f3bae4c31cb8c911e5a789629a0d00f068 100644 GIT binary patch delta 23 ecmaEC_t, 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parâmetros" @@ -1902,44 +1902,44 @@ msgstr "Retorno" msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "Gera" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (obsoleto)" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index e98ce5ac4b5c219e584cfb7c5474cbb604ef3340..f564d6cecb141e9e171ebf682bf5288c500a2573 100644 GIT binary patch delta 23 fcmez7^37$#F%d3vT?1nU0|P4~qs, 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index General" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "următor" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "precedent" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s documentație" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametrii" @@ -1902,44 +1902,44 @@ msgstr "Întoarce" msgid "Return type" msgstr "Tipul întors" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "membru" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variabilă" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funcție" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enumerator" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "" msgid "Throws" msgstr "Generează" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "clasă" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "(învechit)" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index bd7e6e498d228f0d7143ef8dfa97ecaa584ab4bd..a053cda424c84c464993735e834bd7b7eb81e486 100644 GIT binary patch delta 25 gcmZ48z__}Bal?K&E^}Q2V+8{PD_W%F@ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 7bfad9042..1b515fa79 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Il'ya , 2022\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -318,12 +318,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "Не получается считать файл изображение %r: скопируйте его" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -772,7 +772,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -895,7 +895,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -921,164 +921,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Алфавитный указатель" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "указатель" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "вперёд" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "документация %s %s" @@ -1889,7 +1889,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Параметры" @@ -1907,44 +1907,44 @@ msgstr "Результат" msgid "Return type" msgstr "Тип результата" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "поле" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "переменная" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1993,16 +1993,16 @@ msgstr "" msgid "Throws" msgstr "Бросает исключение" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "класс" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "концепт" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2181,7 +2181,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "(использование не рекомендуется)" @@ -3100,58 +3100,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Именованные аргументы" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Пример" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Примеры" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Заметки" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Другие параметры" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Предупрждения" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3473,25 +3473,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index eb093278e07d42479f74543d27f8e7d0f12f92ed..79b9fff2737959a9619810157525d2957e60e25a 100644 GIT binary patch delta 23 ecmbOvGf8H{UN$asT?1nU0|P4~qs_T_ZCE0|P4~, 2013\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "ඊළඟ" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "පෙර" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s ලේඛණය" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "පරාමිතීන්" @@ -1901,44 +1901,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "සාමාජික" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "විචල්‍යය" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "ක්‍රියාව" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "මැක්‍රෝ" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "වර්ගය" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 1023e19876c75ea5c60b77461b66917fc6bb8a06..5d6f4663c2cd33fd72d3162fc1ff5246159d9678 100644 GIT binary patch delta 25 hcmbO}m1X)=mJJ<~xy*G9j1>$Ftc;8{PnyhH4ghn22yXxY delta 25 hcmbO}m1X)=mJJ<~xy*Ep%oGd^tc;8|PnyhH4ghnt2y_4d diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 701342a98..3bf28889b 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Slavko , 2013-2019,2021\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -314,12 +314,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Tento projekt vyžaduje rozšírenie %s s verziou minimálne %s, a teda ho nemožno zostaviť s načítanou verziou (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Neznáme meno lexera Pygments %r" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "Nemožno spracovať literal_block ako \"%s\". Zvýraznenie syntaxe preskočené." @@ -633,7 +633,7 @@ msgstr "príprava dokumentov" msgid "duplicated ToC entry found: %s" msgstr "nájdená duplicitná položka Obsahu: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "kopírovanie obrázkov…" @@ -643,7 +643,7 @@ msgstr "kopírovanie obrázkov…" msgid "cannot read image file %r: copying it instead" msgstr "nemožno čítať súbor obrázku %r: jeho kopírovanie namiesto toho" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -768,7 +768,7 @@ msgstr "konfiguračná hodnota „epub_identifier” nesmie byť prázdna pri EP msgid "conf value \"version\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "neplatný css_file: %r, ignorovaný" @@ -891,7 +891,7 @@ msgstr "chyba zápisu súboru Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Textové súbory sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -917,164 +917,164 @@ msgstr "súbor info zostavenia je poškodený: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Stránky HTML sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "Čítanie súboru zostavenia info zlyhalo: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Všeobecný index" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "ďalší" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "predošlý" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "generovanie indexov" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "zapisovanie dodatočných stránok" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "kopírovanie súborov na stiahnutie…" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "nemožno kopírovať súbor na stiahnutie %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Kopírovanie súboru v html_static_file zlyhalo: %s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "kopírovanie statických súborov" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "nemožno kopírovať statický súbor %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "kopírovanie extra súborov" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "nemožno kopírovať extra súbor %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "Zápis súboru zostavenia info zlyhal: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "index hľadania nemožno načítať, ale nebudú zostavované všetky dokumenty, takže index nebude kompletný." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "stránka %s vyhovuje dvom vzorom v html_sidebars: %r a %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "pri spracovaní stránky %s nastala chyba Unicode. Prosím, zaistite, že všetky konfiguračné hodnoty, ktoré obsahujú nieASCII hodnotu sú reťazce Unicode." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Nastala chyba pri spracovaní stránky %s.\nPríčina: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "generovanie inventára objektov…" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "generovanie indexu hľadania v %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "neplatné js_file: %r, ignorované" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Zaregistrovaných je viac math_renderer, ale žiadny nie je zvolený." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Zdaný neznámy math_renderer %r." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "položka „html_extra_path entry” %r neexistuje" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "položka html_extra_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "položka „html_static_path” %r neexistuje" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "položka html_static_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "súbor loga %r neexistuje" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "súbor favicon %r neexistuje" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks bolo označené za zastarané od v3.5.0. Prosím, použite namiesto toho html_permalinks a html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Dokumentácia %s %s" @@ -1885,7 +1885,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametre" @@ -1903,44 +1903,44 @@ msgstr "Vracia" msgid "Return type" msgstr "Návratový typ" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "premenná" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "parameter funkcie" @@ -1989,16 +1989,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "Vyvoláva" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "trieda" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "parameter šablóny" @@ -2177,7 +2177,7 @@ msgstr "duplicitný popis objektu %s, ďalší výskyt v %s, použite :noindex: msgid "more than one target found for cross-reference %r: %s" msgstr "nájdený viac ako jeden cieľ krížového odkazu %r: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (zastarané)" @@ -3096,58 +3096,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Argumenty kľúčových slov" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Príklad" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Príklady" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Poznámky" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Ostatné parametre" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Varovania" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "neplatná hodnota množiny (chýba koncová zátvorka): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "neplatná hodnota množiny (chýba začiatočná zátvorka): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "neplatná textová konštanta (chýba koncová úvodzovka): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "neplatná textová konštanta (chýba začiatočná úvodzovka): %s" @@ -3469,25 +3469,25 @@ msgstr "Poznámka pod čiarou [%s] nie je odkazovaná." msgid "Footnote [#] is not referenced." msgstr "Poznámka pod čiarou [#] nie je odkazovaná." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 399df34a19d6ffcfbec357158ca167e04f3cdcee..5e8a210f787b10d3892e0af0105d7332d3b2fe53 100644 GIT binary patch delta 23 ecmZ3fwNh&X7cZB&u7R\n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Splošni abecedni seznam" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "naprej" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "nazaj" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametri" @@ -1900,44 +1900,44 @@ msgstr "Vrne" msgid "Return type" msgstr "Vrne tip" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "član" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (zastarelo)" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index f44cf953f..7c13d932c 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 5.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -771,7 +771,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -894,7 +894,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -920,164 +920,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the" " index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all" " config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1900,7 +1900,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1918,44 +1918,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -2004,16 +2004,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3116,58 +3116,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3487,25 +3487,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated:" " {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index fb18a9eb01bc7bb44a93057414ef8efdd18cba75..d02564409ade9014637ca54b9487f8329160dfb4 100644 GIT binary patch delta 25 hcmZ4afo0_fmJLlyxy*G9j1>$Ftc;8{_bi<|2>^)v3KReU delta 25 hcmZ4afo0_fmJLlyxy*Ep%oGd^tc;8|_bi<|2>^*P3K;+Z diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 7716d1608..c6f256c0b 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Besnik Bleta , 2021-2022\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Ky projekt lyp zgjerimin %s të paktën nën versionin %s dhe prandaj s’mund të montohet me versionin e ngarkuar (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "po përgatiten dokumente" msgid "duplicated ToC entry found: %s" msgstr "u gjet zë TeL i përsëdytur: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "po kopjohen figura… " @@ -641,7 +641,7 @@ msgstr "po kopjohen figura… " msgid "cannot read image file %r: copying it instead" msgstr "s’lexohet dot kartelë figure %r: në vend të tij, po kopjohet" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "vlera e formësimit \"epub_identifier\" s’duhet të jetë e zbrazët p msgid "conf value \"version\" should not be empty for EPUB3" msgstr "vlera e formësimit \"version\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file e pavlefshme: %r, u shpërfill" @@ -889,7 +889,7 @@ msgstr "gabim në shkrim kartele Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Kartelat tekst gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "kartela e të dhënave të montimit është e dëmtuar: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Faqet HTML gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "S’u arrit të lexohet kartelë të dhënash montimi: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Tregues i Përgjithshëm" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "tregues" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "pasuesi" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "i mëparshmi" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "po prodhohen tregues" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "po shkruhen faqe shtesë" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "po kopjohen kartela të shkarkueshme… " -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "s’kopjohet dot kartelë e shkarkueshme %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "S’u arrit të kopjohet një kartelë te html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "po kopjohen kartela statike" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "s’kopjohet dot kartelë statike %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "po kopjohen kartela ekstra" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "s’kopjohet dot kartelë ekstra %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "S’u arrit të shkruhet kartelë të dhënash montimi: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "treguesi i kërkimi s’u ngarkua dot, por jo krejt dokumentet do të montohen: treguesi do të jetë i paplotë." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "faqja %s ka përputhje me dy rregullsi te html_sidebars: %r dhe %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ndodhi një gabim Unikod, kur vizatohej faqja %s. Ju lutemi, siguroni që krejt vlerat e formësimit që përmbajnë lëndë jo-ASCII të jenë vargje Unikod." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ndodhi një gabim gjatë vizatimit të faqes %s.\nArsye: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "po shkruhet lënda e treguesit të kërkimeve në %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file e pavlefshme: %r, u shpërfill" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Janë të regjistruar plot math_renderers. Por s’u përzgjodh math_renderer." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "U dha math_renderer %r i panjohur." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "zëri html_extra_path %r s’ekziston" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "zëri %r i html_extra_path entry është vendosur jashtë outdir-it" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "zëri html_static_path %r s’ekziston" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "zëri %r i html_extra_path entry është vendosur brenda outdir-it" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "kartela stemë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "kartela favikonë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks është nxjerrë nga përdorimi që me v3.5.0. Ju lutemi, në vend të tyre përdorni html_permalinks dhe html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Dokumentim i %s %s" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametra" @@ -1901,44 +1901,44 @@ msgstr "Kthime" msgid "Return type" msgstr "Lloj kthimi" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "anëtar" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "ndryshore" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funksion" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "bashkim" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "lloj" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "parametër funksioni" @@ -1987,16 +1987,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klasë" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "parametër gjedheje" @@ -2175,7 +2175,7 @@ msgstr "përshkrim i përsëdytur objekti për %s, instancë tjetër te %s, për msgid "more than one target found for cross-reference %r: %s" msgstr "për ndërreferencën %r u gjet më shumë se një objektiv: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "Argumente Fjalëkyçi" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Shembull" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Shembuj" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Shënime" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Parametra të Tjerë" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Referenca" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Sinjalizime" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "u caktua vlerë e pavlefshme (mungon kllapë mbyllëse): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "u caktua vlerë e pavlefshme (mungon kllapë hapëse): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "shprehje vargu e keqformuar (mungon thonjëz mbyllëse): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "shprehje vargu e keqformuar (mungon thonjëz hapëse): %s" @@ -3467,25 +3467,25 @@ msgstr "Poshtëshënimi [%s] s’është në referencë." msgid "Footnote [#] is not referenced." msgstr "Poshtëshënimi [#] s’është në referencë." -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referenca pa njëtrajtësi, te fundfaqe në mesazhin e përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referenca pa njëtrajtësi, te mesazhi i përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referenca citimi pa njëtrajtësi, te fundfaqe në mesazhin e përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index a3b163f6ab9a7b47bf3655fbe3cc6767612a0ce6..e8ee7749fbbb1f9370d7bb05c33adbe9cdc572ef 100644 GIT binary patch delta 23 fcmccQdC7CbX(29iT?1nU0|P4~qs>=^{t5yBYBC60 delta 23 fcmccQdC7CbX(28%T_ZCE0|P4~, 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -313,12 +313,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -632,7 +632,7 @@ msgstr "припремање докумената" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "пребацивање слика... " @@ -642,7 +642,7 @@ msgstr "пребацивање слика... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -916,164 +916,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "индекс" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "напред" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "документација %s %s" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Параметри" @@ -1902,44 +1902,44 @@ msgstr "Резултат" msgid "Return type" msgstr "Тип резултата" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "променљива" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1988,16 +1988,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2176,7 +2176,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3095,58 +3095,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Пример" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Примери" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Белешке" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Упозорења" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3468,25 +3468,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 69d5c909a9fe29245ddcd93e345b3a4778a4cbb0..9879271eef6064f276bc8893652e30aae821e50a 100644 GIT binary patch delta 21 ccmX@Xa)M<-8<)ARfw6*tft8Wb#tAzZ0ZKpym;e9( delta 21 ccmX@Xa)M<-8<&}`k(q*lft8W*#tAzZ0ZMQNod5s; diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 3f5034b9d..3f413bb48 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index a050b35eeee3881532310bebabc2e27c21cf3ea2..08106cdd73414289f8679320e2a0d35ac7ac8522 100644 GIT binary patch delta 21 ccmX@ia+qa88<)ARfw6*tft8Wb#tEAl0ZDEKi2wiq delta 21 ccmX@ia+qa88<&}`k(q*lft8W*#tEAl0ZE<)jsO4v diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 6689c453d..48b3405ca 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index ea2969301816724336a26368f576a791dc9ae727..42084d1832aa3b3cd03dceb83d5e553903d0b699 100644 GIT binary patch delta 23 ecmaE4^2lVv838VHT?1nU0|P4~qs`X@dN=`Sga_6D delta 23 ecmaE4^2lVv838UcT_ZCE0|P4~\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Huvudindex" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "nästa" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "föregående" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametrar" @@ -1900,44 +1900,44 @@ msgstr "Returnerar" msgid "Return type" msgstr "Returtyp" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "Kastar" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 0434e788844226a208787a851833ab82f1626138..0010bc68270379f4bd13a5decdd574a94f49e1f3 100644 GIT binary patch delta 21 ccmZo?ZD*aZh09#mz*xb+z{<#I, 2019\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "அடுத்த" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1901,44 +1901,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 5f23106df84a5c6ba20f6f063b040f91c7c35141..c378aa41a9c53f30af5cdf48d561fd9b303367eb 100644 GIT binary patch delta 21 ccmaFK{E~S>8<)ARfw6*tft8Wb#tD&(08WGkc>n+a delta 21 ccmaFK{E~S>8<&}`k(q*lft8W*#tD&(08X?9egFUf diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 5d3ade7aa..dc1a9b26b 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 971b7c05751f3007835544abbe8ffc684b392cca..c20f4637d1daee35e697c394ee13afd8852abb29 100644 GIT binary patch delta 25 gcmaEQocZZ-<_+03T;{q4#tH@oRz^mfOKS?!0fy}fU;qFB delta 25 gcmaEQocZZ-<_+03TxPmPW(o!dRz}8~OKS?!0f!<9WdHyG diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index dc5987b50..b8f2a642c 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -315,12 +315,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "Bu projenin %s uzantısına ve en az %s sürümüne ihtiyacı vardır ve bu nedenle yüklenen sürümle oluşturulamaz (%s)." -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments lexer adı %r bilinmiyor" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "\"%s\" olarak literal_block lex yapılamadı. Vurgulama atlandı." @@ -634,7 +634,7 @@ msgstr "belgeler hazırlanıyor" msgid "duplicated ToC entry found: %s" msgstr "kopyalanmış ToC girişi bulundu: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "resimler kopyalanıyor..." @@ -644,7 +644,7 @@ msgstr "resimler kopyalanıyor..." msgid "cannot read image file %r: copying it instead" msgstr "resim dosyası %r okunamıyor: bunun yerine kopyalanıyor" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -769,7 +769,7 @@ msgstr "yapılandırma değeri \"epub_identifier\", EPUB3 için boş olmamalıd msgid "conf value \"version\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"version\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "geçersiz css_file: %r, yoksayıldı" @@ -892,7 +892,7 @@ msgstr "Makefile dosyası yazılırken hata oldu: %s" msgid "The text files are in %(outdir)s." msgstr "Metin dosyaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -918,164 +918,164 @@ msgstr "oluşturma bilgisi dosyası bozuldu: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTML sayfaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "oluşturma bilgisi dosyasını okuma başarısız: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Genel Dizin" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "dizin" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "sonraki" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "önceki" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "dizinler oluşturuluyor" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "ilave sayfalar yazılıyor" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "indirilebilir dosyalar kopyalanıyor..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "indirilebilir dosya %r kopyalanamıyor: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "sabit dosya %r kopyalanamıyor" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "fazladan dosyalar kopyalanıyor" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "fazladan dosya %r kopyalanamıyor..." -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "oluşturma bilgisi dosyasını yazma başarısız: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "arama dizini yüklenemedi, ancak tüm belgeler oluşturulmayacaktır: dizin tamamlanmamış olacaktır." -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "sayfa %s html_sidebars içinde iki şekille eşleşiyor: %r ve %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "%s sayfasını işlerken bir Evrensel kod hatası meydana geldi. Lütfen ASCII olmayan içerik içeren tüm yapılandırma değerlerinin Evrensel kod dizgiler olduğundan emin olun." -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s sayfasını işlerken bir hata oldu.\nSebep: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "nesne envanteri dökümleniyor" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "%s içinde arama dizini dökümleniyor" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "geçersiz js_file: %r, yoksayıldı" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Birçok math_renderers kayıtlı. Ama hiç math_renderer seçilmedi." -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Bilinmeyen math_renderer %r verildi." -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "logo dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "favicon dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s belgelendirmesi" @@ -1886,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Parametreler" @@ -1904,44 +1904,44 @@ msgstr "Dönüşler" msgid "Return type" msgstr "Dönüş türü" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "üyesi" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "değişkeni" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "işlevi" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "makrosu" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "birliği" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "türü" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1990,16 +1990,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "Şunu verir: " -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "sınıfı" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "kavramı" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2178,7 +2178,7 @@ msgstr "%s kopya nesne açıklaması, %s içindeki diğer örnek, bunlardan biri msgid "more than one target found for cross-reference %r: %s" msgstr "çapraz referans %r için birden fazla hedef bulundu: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (kullanım dışı)" @@ -3097,58 +3097,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "Örnek" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Örnekler" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "Notlar" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "Diğer Parametreler" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "Kaynaklar" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "Uyarılar" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "Getiriler" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3470,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 77b6fe2c76b2fce26c376d32501b74219f8d0464..aaf19bb9784a136113a27d406c025287c05cda91 100644 GIT binary patch delta 23 ecmZ2#veab5K^`u1T?1nU0|P4~qs^yzqIdyZW(N=e delta 23 ecmZ2#veab5K^`tMT_ZCE0|P4~, 2009\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Загальний індекс" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "індекс" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "наступний" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "попередній" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Параметри" @@ -1901,44 +1901,44 @@ msgstr "Повертає" msgid "Return type" msgstr "Тип повернення" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "клас" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr " (застарілий)" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 0ae4d6c35b3f030e659e96e37977ff8af4e26897..046da2636c404a4f4693bbfbfe6aa001a8a72b37 100644 GIT binary patch delta 21 ccmaFP{G5408<)ARfw6*tft8Wb#tGq!08TIla{vGU delta 21 ccmaFP{G5408<&}`k(q*lft8W*#tGq!08U^AcmMzZ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 2d314ef61..9fdb33272 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 65786b1ca921dedd941921a9af828da7d3705bff..130a8aed8883e4ae827edf2f1ea7383947a93464 100644 GIT binary patch delta 23 fcmcbtcUf=4d|obdT?1nU0|P4~qs=RMS8)OWVHO8! delta 23 fcmcbtcUf=4d|oayT_ZCE0|P4~, 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -312,12 +312,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -889,7 +889,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -915,164 +915,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Chỉ mục chung" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "Tham số" @@ -1901,44 +1901,44 @@ msgstr "Trả về" msgid "Return type" msgstr "Kiểu trả về" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "thuộc tính" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "biến" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "hàm" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "kiểu" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1987,16 +1987,16 @@ msgstr "" msgid "Throws" msgstr "Ném" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "lớp" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -3094,58 +3094,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "Các ví dụ" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3467,25 +3467,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index dc95839da23bf8ad883b562e10f0a23707fe63de..f35d1b3905e5d0bfa9c02c050afdb2d71611afd7 100644 GIT binary patch delta 21 ccmaFP{G5408<)ARfw6*tft8Wb#tGq!08TIla{vGU delta 21 ccmaFP{G5408<&}`k(q*lft8W*#tGq!08U^AcmMzZ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 85905a351..c8f99115b 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 8620360d72f8dce0180262bd8cb408c6125ed1f9..48ed84e70fc53a62814c1c0b8e2babc8016f7826 100644 GIT binary patch delta 25 hcmbPxgJtdwmJKdzxy*G9j1>$Ftc;8{`>j1+2LOI734Qj1+2LOIy34;It diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index c9078f8ce..5381807b4 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Yinian Chin , 2013,2018,2020,2022\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -328,12 +328,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "该项目要求扩展 %s 至少是 %s 版本,当前加载版本(%s)无法构建文档。" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "未知的 Pygments 词法分析器 %r" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "无法按照“%s”语言的词法解析代码块,跳过该代码块的语法高亮。" @@ -647,7 +647,7 @@ msgstr "正在准备写入文档" msgid "duplicated ToC entry found: %s" msgstr "发现重复的目录条目:%s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "正在复制图像文件……" @@ -657,7 +657,7 @@ msgstr "正在复制图像文件……" msgid "cannot read image file %r: copying it instead" msgstr "无法读取图像文件 %r:改为直接复制" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -782,7 +782,7 @@ msgstr "对于 EPUB3 格式,配置项“epub_identifier”的值不能为空" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“version”的值不能为空" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "无效的 css_file:%r,已忽略" @@ -905,7 +905,7 @@ msgstr "写入 Makefile 文件时出错:%s" msgid "The text files are in %(outdir)s." msgstr "文本文件保存在 %(outdir)s 目录。" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -931,164 +931,164 @@ msgstr "构建信息文件损坏:%r" msgid "The HTML pages are in %(outdir)s." msgstr "HTML 页面保存在 %(outdir)s 目录。" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "读取构建信息文件失败:%r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "总索引" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "下一页" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "上一页" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "正在生成索引" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "正在写入附加页面" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "正在复制可下载文件……" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "无法复制可下载文件 %r:%s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "无法复制 html_static_file 中的文件:%s: %r" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "正在复制静态文件" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "无法复制静态文件 %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "正在复制额外文件" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "无法复制额外文件 %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "写入构建信息文件失败:%r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "无法加载搜索索引,不会构建所有文档:索引将不完整。" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "页面 %s 同时符合两条 html_sidebars 规则:%r 和 %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "在渲染页面 %s 时发生了 Unicode 错误。请确保所有包含非 ASCII 字符的配置项均为 Unicode 字符串。" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "渲染页面 %s 时发生了错误。\n原因:%r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "正在导出对象清单" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "正在导出 %s 的搜索索引" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "无效的 js_file:%r,已忽略" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "注册了多个 math_renderer,但没有选择 math_renderer。" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "给定的 math_renderer %r 不存在。" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 入口 %r 不存在" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 入口 %r 被置于输出目录内" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 入口 %r 不存在" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 入口 %r 置于输出目录内" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "logo 文件 %r 不存在" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "favicon 文件 %r 不存在" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks 自 v3.5.0 后弃用。请改用 html_permalinks 和 html_permalinks_icon。" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s 文档" @@ -1899,7 +1899,7 @@ msgid "%s (C %s)" msgstr "%s(C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "参数" @@ -1917,44 +1917,44 @@ msgstr "返回" msgid "Return type" msgstr "返回类型" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "成员" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "变量" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "结构体" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "联合体" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "枚举" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "枚举成员" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "类型" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "函数参数" @@ -2003,16 +2003,16 @@ msgstr "%s(C++ %s)" msgid "Throws" msgstr "抛出" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "类" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "模板参数" @@ -2191,7 +2191,7 @@ msgstr "重复的 %s 对象描述,另一对象描述出现在 %s,请向二 msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "(已弃用)" @@ -3110,58 +3110,58 @@ msgid "" "%(default)s)" msgstr "仅生成模块中 __all__ 属性成员的文档。(默认值:%(default)s)" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "关键字参数" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "示例" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "示例" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "备注" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "其他参数" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "接受" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "引用" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "生成器" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "无效的值集合(缺少右括号):%s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "无效的值集合(缺少左括号):%s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "异常的字符串字面量(缺少右引号):%s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "异常的字符串字面量(缺少左引号):%s" @@ -3483,25 +3483,25 @@ msgstr "脚注 [%s] 没有被引用过。" msgid "Footnote [#] is not referenced." msgstr "脚注 [#] 没有被引用过。" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "译文中的脚注引用与原文不一致。原文中为:{0},翻文中为:{1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "译文中的引用与原文不一致。原文中为:{0},译文中为:{1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "译文中的引文引用与原文不一致。原文中为:{0},译文中为:{1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index fbf5ee2d45d9d33c4cd27b042ab67abdb2b3d950..46a2379179d5e1083cbdb3cbcad6110dd07cbe59 100644 GIT binary patch delta 21 ccmey${FQk^8<)ARfw6*tft8Wb#tEs608o4eod5s; delta 21 ccmey${FQk^8<&}`k(q*lft8W*#tEs608p$3q5uE@ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index c6cb9293b..04d89e877 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 25de218770c1103947301bf83d9e1ffaec7f47a1..9a0e27d53fc12036c31afd729f9c26da47d736f8 100644 GIT binary patch delta 21 ccmZo+XqaY6|r06!Q7%m4rY delta 21 ccmZo+XyaY6|r06$0t(EtDd diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index 1454bd392..f6642cd66 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -311,12 +311,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -914,164 +914,164 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "" @@ -1882,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "" @@ -1900,44 +1900,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "" @@ -1986,16 +1986,16 @@ msgstr "" msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "" @@ -3093,58 +3093,58 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3466,25 +3466,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 925e91a553e7205a458ac86e38ae076226314687..5e7f685545d243a5436247bd8aa82bf053f6a125 100644 GIT binary patch delta 26823 zcmbuG34B!5`S)+aq7JyR?_2_5(GYe)R1g#a6{L#du9IYdNH#MQfmS;K41_hvNRWMz z9oZa~Kv=4+Ypu4fwSTQzGn1sP_3u)(`}_Ufb7lzC|NFju-+rv$d+ywO&U2paJm=iF z;@w8;-)bEGZHvY$9sc)qs^fHmC)%oY=70D0bDa4pj&mQZ;F+5Kj`JBmhXy&$8182c zcAR3`JBK(<9_)C9<6H>KVG~#hFN5pgGWZg_2Hr8$arh_fJjuVuapN^O61E=ZIBD>9 zcmbRR&xdniI$R7T=t0;Oz7D&=KS2$6$(4@N61IVt!pq<#@M@_3CctKJ3T(;vPBs^9 zxG@vz!Da9wxDmQ=A5=$gK)v`0R7aoL-@k>o(QY@~^pgii(Vl19FIav6)&EzpEo^)h z?=Zg8iHqiN2$bZbVGno*L|e{}pl13k>x?Ysu{do%Re8@9F_0lUzi z1{uql5B1)QP|o)T>;^xCxP|jCDBl@2+Gyr}D1oMq4m%DG>^#a17aoM_;7ur7eGEIm zFQ8`D{5msG29#h!;6ykQYJg>yhhS&gzk!(B`3~aW&YZ9O7)#Ahd~WE8S1^K;e+rScrl!EgX8ps(_j<04AQ0ZBpe6dhd04A?A;EA z3%HQ8EPzsB1tgT6r=Xnibtu#P4obi;pj6t3-f$P^YAEOWA=E(6K$PWt0p&Y`$2(46 z7=V|<2$Zv)hP@cy`HBmvqT`L`hY?WiVkp(Egx%pU;d$_DDBJ$s{@#V@$TW9B7tV$k zz%@|sZ-ol)kDyHZ4b;RM-|RT4ivM<8U>>IXn^sZ=ef`WzlRIqKjA&Fe3EgZ8q3rl z7!$bgE`A>frHLi*Vz>_ugr}enegQSHze8#0S{$YTJ_vCa=M5N^B&}~V9i+i#v-_i@KU(fwolvNUxjk2ub`r*`DCNP&hT#9X;7Ma49b-ACZqohE*5j6 z4JxjJt!Te-yXl|?%4UCt5}?r?HvFJeJp@Xin_wGw2h`e-4?Dm`usz%cmDo;Oz6aaT z{`?N~uLqh=F=69EdGA=53l~AD^lONpI=${R`Ql+Hm2S6u5w@irxBMrZO}hTm{>Ns6IfTmUtb2qeUvEwCf}160_Z zcdtn>mqHDEACw@|p#+-^rTV$>a>f5@F4XZ0a0dJpRPMh9JxP#9p=MqI`{E-}DChg+ zelw%5palFI)Bu+}V1928rJ>6q+IB`ll;Ny~m%*>$AjN;z2U+2`aU1Ln=fO<)44ef2 z3l_l)ztPZo*p2o{s6_P8%$W3)L=!a>j_g{~?q>O{SWZ+zSq+9e^^)dbkGefOP4Mp2j+% zHVi+)#lN^{3Llw{qrk^tV>k!8a6Wt+?tp{fqq)Y02cT^K5=?`iLJi#XA=U*r0!sBi zf)~Jd;Cb*P*aX%-WaIxcZpcYG-~bAX%b^4s1z&;VpgL-iM@YgvI0SwRGhp9*Bgoy* zn+R;i{l}mNTxi=**!FsOKKHlfqkq|EA2$}mf54G?p}=ImSD@nmTc{2%D>Tk_1?)`w zCMYM(g_^*l@JhH8c7QKI&HQ(;Is7Ah5dH;9@Vmo!mIhb=@e}7b)XX|R>^KC1a~m8C z55Ng927ALn#inGt7s~s$LaF{3lm@?m!{B*AW2$SR1epTUp&vd7!wb03OzL14*feAk zP`c$1cq#YCKxtqK>3 zsd!>1*bVB%5l~)z8`MlnpqyqOlqwIwmhd?!8@~gkfe+you=Pw+l->--(=NB|H{o#F z7tK-v!~WyBkj+-WvG6rG5Vo3aI2K++`-gBaTnO91Q&0lGW7}WC>u6u_L-XDQ*q(MN z)N^Z~G;|cUgYUpDjPLx33(e%h9~o!r2HVme45f*ip=|Dl*T6+k&h|3A7`_kt!+NN& z?eM4>xGU^O`%2gW=EBS1<4`8t55sbbce%I{ehk%dhsTVhmqVBKcql<0g4oOnLkYMS zN)s=@0q_H;0WSKnal$L1!t53}3El}M=q@M$e)D7WFXu`@4P9YN=y^BP%J_)930egiu~-{Z_4_JlXWFqELL>OwEP0e$e# zP^xyyj9{&y1jw|!8_KEX!>(`>lnH+Vhrw5&@#c_dpne1ufyJo|9^2I@9n+Rgv;G9gZ3iW4IYJ>@%vD={0=IdS}ijJ_Jfzx z&WGxFHM|49YT2#Am}C~bmHRKk9Be;;WTn{J0J7Isg1NMQxhOJ@h6Nc?9 zGht`$Uk^3YEZ7f*p?qXNl;E#GnV=5#g#Ut?SkDzaE6K-kp@BlMFWg}H8kFk)3iV>Y zh)K0~z%jJ%ht1(uco{qhhr$nF8f^8XiI$;IntKpR;72XjJc<7GLlrml!rQP3{1(dj z{s9NW)+-Hfgso_Yp#*voUInY6ocCMHe?s-wq|(f^HBkrHOaoXxQ;7 zVJ@VBd!ST56ZVGNpagmy%2qAc7(s?Wb#yJ%b2+xX6l!J%;rXx%UId?mdhVC79sCQ_ zL|Uvh`6Aqw3zr*{;3W7kl9}k<+o&=R>?uEnQf5)!tQI!3!gC(_kHF!fMO6 z;Cm@-)8UWcPxrCgPR0Hs58#nJxaV0q<%cCvvs}J$$eiboK5W8gKWxf#r(p(s5iWpV z!9nmxM~sU1!y9RT2#3JlM@>GtA1a#Wz~-+q{I|4P{uV6F9f31DsE2x<@I)-Dw{!pr% z4;6N+ZTr`-J?%e0Ic1aMrrjQ@JqRic$HKPob|~MJ z**VQc1#EnZ!v**xyg}{L#u;yd(nK-T49cKP@tpnrEhyjkt7XbhjNs=(nW#0)gk7QD zn+PSygFiw4nt3@lI>LQ$ID8eV!zRxe+ck%sX?KG9eK=GHB~Z_;hf@7kC{tBI_4h55 z?OQ%?*d5CG20@wd+ULWjgS+hyemIgJ3ZPWF&+<*E4!?n;VT+%d>i2foiS`oM6YheO z;V+>ENdKAXee80z_N zp)@k)Mblv^)N`vWH^4!(w?S#*eam_%lZOAo#V{_KzhusA#z5J4E|extS^g9Dqdnqf zQ&1GZ%V@8Hm&4~_PxvP&fm^>~1|AC2XwQIJ#+O0;{u9_#@&7w6(z#I&uYec7YU1<; zD3$vm4?2&*YvAKhl0OeGfbZD$M^Mjw2{q%tz`?NZ&&~5$P`{VJ?kN%3==|1RrH*{%#3kzYpUzs|f97>S4;l=P1%P;Kx zlsApZE`oje{Yn^?N~UokZ!Cc7pbTCHS3o6@lduJR2kQAccq{zewnx8Z?vIDk&?I;< zDxMEp(yn~l^t;>gC{+JHdm9C*!_T>)jPwmu`{H+uirPTkA82`#Wsc=zmX((KEnkMc zdG8abnfl)4TOS+-2f>YS3ViEb^e?Bn{5|89xljWxhSJDZ+pdPwX}=9yz-xYOW;6+^ z2gF#_Jejhmpna|QIA4vwQ;W!owLWdvyk z^?OICfzqKSGQ$3z4IiN$g#F>~p)}O-0~79<@Uj%_KbZ?pk`K*{mq2wGfg0c$d;bX3 zb0^`=@KyK&*!H(3U*y8Bv>&(J3f0fgZ2LoaEA4;4d^qVNttr_5ly||d6?Wl=zd{$b z|JdaA;V?jZ3Y-E@!kb|0Pt2K)A4+q_VK12SJM(@YSWf#!cnf?Bc7WYKHH+B@*p2a> zd$||`e+;|BpFs&y2M5FR$TCvl)lfc>4_CqvoD6+2BhUlzA=-POo@)~~8te=k)9wY+ zUf8u%gD3oeA$!h>)G{1V;;2h^DX7F({cTnz{E`z9z;y#?FD zkL~Y&g)h@iskbL2_2_>AH@f}a>}YmD&GZx48MgR?seJlFAMGn)6L>wm5Z-8izY{j2 z?T3Dt59h!)pnT;Ae>ACi1C&Nzhs|N5&(MEsE-v}Z%)BR57>4u?Y*RzUT80Jef3z>DA)Q13ZknlKJu$VFG$onbn> z26lwmuoDd1_Btp{RY5)fI+SMq1aF6ze`Rw29H{q>LJ9sh)O(*nX{gcHW+#*m(PY?p zfD1`96_vMK8~~q%LtqUY13UcLsPaKLnD#1o9efQAf|q<_O10~u-d_MS z;4!Fi;;_Hs{~In^bEDU{=7(!6C&1C%zYkskH$ge&d(ee{hMG~E@61exLA8Hi+d-&) zmq2NBi@kpeYGUufp^WeRi;GL((7zY~#z9GZCzP`-g6-iG_WmB&j`oMJFZ>3|);<1e zo}UCWX-|RD?0hJ}B9@0?OWNHjnX2H=IX z^WZ)3hwvKsE|l$C{mX>!c&PrS+x8qNn{R@>;V)nh_zl#=Iy&JL@5Xp1#gnuE-pvn{ zusi$$UItsIq<9*-7IvgP1u9&FmZzaoY_rr9&-*WdN?3iNG%^gz#ABdLbqAD*=Z3kE zDh@%Z>~$y=|2LG=eG8@P%tk5Rayk#Tp#4`U=en@5>99NeG3{I6O!zufKQ}Z<@k+P} zP$mvQMaQGC84MrbLNhu6CDE_pwb0iz#nb~(f~|nEncME7W^0 zL)rE#C>6K!nTcEvJVflL~+c#=qIJgBL{xo2K z8=YVYyb`W}@`2Z&I(Q$d!;hh!JHKU$mzvX|exD9qSZLeJp`3CRl=FQ8N5Gb?Oux56 zP5gmY#J?_bxiJ(5;V8HVUJE~iS_3j$r+B;DhoNTp6x2+fg>t%2p$0mizhcr%heL($ zZBV9I1m#;tp-lA^RQR?Cw>7Hm4f}B8dg#IesF_tj30MiGkxfto?u8oYP1p$j0cwVy z!)`FMU5Z!jPJ(*=X{do;hB9R>ycvcYwNLR1gh^2G8GssamgQV1r&$7Js-sYXyaeUd zZ`<~H9gMTJg4c0>G*mzHp(eH*YC^}MH1nKc*!hkN&7@yP)A2aiiuUbL8S5b^Rn4(n z1tq{<%i~Z2zGQ#@5^A9HI~mnq4E6ifQ2kAV(!`HpQ^o&!E~av0E0iG3IvdG*Kn;`$ zGvHNF&N&@Q#ap1F<7ZGa{Tk~1e?n=hZ5NZEdO=0gO;FMDFq{IHz^fGhHC!ksyIswq zG8wAFO;7^thMLh)%TrL9?*+?xD1k0?%?$fN+585m_h-OaaF*p4P|o{MH{xFxYq^l^ zUxQj~K7vxw;55_mZLllt5-2ZU3AIYT1my#1-3@Pt(o{Kg;bAD#y$dygKSDkK6_loW z_8|V%;m95--unD7l(VdXo@${4`5HEXEz^zU?V<9)jh4kw&#kfTV^Hh;Cs5w*>uF5T z6H1_)p;o`Fo?+8b0XLL7E1@KP0ZMhR!Mou5P>aT(UdGGsfTL(X4wWBXwD&LQZA>>5 zDo>1pO2PL)&3K{Z7O4KJhjSsX{4JEEe}+=^rG1PF2S7Q~tx&&bLC<^pq(t}hUX&6Z z8z=}A`$GXYr!c!DKTr_zhjI%G+^NNd`EIbVq&Pd^PR-2=1T%fUVA1s4f?0jDN^&9F^{#MstkmDBR`LhE-H#g+tr(13hPo8x9WPZzZ z$A{d!!onFrcWPm=+bg@UU}|R3>|SSgpr6#Ye$Aa$g51dJ3kE`=+=6MrOm{NB^|E3< zT#}nTBN*}*hkCi8!ooZ^-#^>U3b-Y~Kn^$T1j5Wb6v#&^F1(3mAXs)@Ne(@p5#yZ6 zXZs7>?Bc+`tBpD3ra>BWf;9< zpAnGU^0tKI&CCr=$L`5MO3lfP4!o@T{BYkL03P~z%nnJXourD#6Jw46!EbS*91RpBI5nZyBrs6#nOmnXDCtu7W zOx?8fV4CMV-i2|6U^M-TR;h#BgwjX4y=V6;=;K^xQqT7(-#!u;m9U_mgM> zMB&uJ5?s#4LL$ew$=+>O!f#h)i#%r>JZds5Kl z`*FfztHGcrP2%DIOQ{}Fq@h&rwMhLH&7zyHyfLMt8_Erl8ju9H^5R~8JR+NrLi`2OO8nE9ky&$y8h1>=H1f&x44;BuQEAN9@M+d3)`reEK%Ca3Oo3Am}YS!Rdu16jQ`mpunF+z8da~FUZMNg`@-< z(!HSW1#@#yI}YhNeA3DU=FCE4M|&?^oXg9e&gj)z{3)q>uv2yF_OZ2U1ZdjE*#sr?HAULX@V!&#%e>L=(HmEm7a55HfO+NShl0k^m*%C0*nOGPK z1f7W``B}`~xh2c1JG8{-C}SiOf*U5p&Y7@t3o1&^jx6WpJu-loAyuq->pLDR*HH;2 z!9s;abc-t)-}I&NyGjAFeQ_X=hC7)$FT=iWJud8pjvCW*si=yx@o$DorWl`f^@Kds zyc3mF^72Tw6p%zFcBfVd%wmiztdMKXWN-QsZ+ewm!Z{Nr$++ArACy77@>WZ!*DGF> z@G`A&(p+ZrmeIXZ!+8NeOR{xD<0QuLRJAHJdSw;|*%)B=UYVg;p& za_ti4P3!F612{9G)r$?1rciLM{FL>cjnjkYOw6l$l|9e7@0FBh?`-62tTJggbf5TJ*PLGE&+m_FYL!3}<Z{24V^25pENfgQa(Zmfuu0vDV(Ev_WNbx|-%YcUnDULb72f1ep7sR` zr-o*-Zf3e;{NzCUytg8H6>vWLxms_Dy0ZX7_}N4ixq5 zW6TaMFPF-BVCE1x#GuUn8Crz2_dr_PE!IGkbDz%~VBhc$U=!|zC3&TwSI8|0cv*u{ za!N8AhI@w3^96;WSG#(PuFZO$17t=&9h=i6tns~=F?#gYle5kg-0RpkXeV$cOIXiN zQ>m`j=>HH~eix4)!It!^Y@F9Fz&Rg*Nxbk_PQp~%PyZ(rBIzs$N=n4MixtUMXi z2A7E?&Lqq}%j{Io_Mqkyvm1wRC!=AtA|Z$cjM4q~KOJU9w0vTVn7-gWYgRC^s)RG&?gg|JH$F z%0X?qC>!i1!!wIipb|xWm^meD4DWZ_FAFGp{Y>8&FaKnCX<2(8?Q;@4;Is$44$Kb7 zTa9ehqIx_dEN}BRgMlKy4xW5z#wG0T$G)5B&J;89a8I;k@Mb!yHf;G+P&m^qDx^A4 z?M2^Iwr7{^%Fw11a??yva+Z0CiUtQ=ZuHQtZt6A3g3;_Jvc1*7+Z7cDJRymeX$4d) zY)YoOef`RH$-PJPSCcDK?p9UJI?1^Rd)WXxQ~5}!7(J6|b-~L`3yg;6bh>1E9(MgU%#4D_e3OUxH zgrxY=EO2!%Jl!-6C<9ShD~cz|eX@&6`ew7q3iXNfyQ@cgmKScyxV>$1AMS0;`$Q(( zHLi1h7MoqoI&o-$h7(J0FtYfr(!Nt!?yb(!iyd1k6&A4;kO~XrYhH>~ftMbPHoCh@ ziaR}^(+L%0XPF0GC{CvZB3Hu=K3C18HoKL4pkVQqR;mt!%Tdu$YWo{LEm zdZSyrb`^RBZqP|+N_BJwBB}W2Dc06W6UQn)+;+!U3TG+#e|k2zolVxo96#ZzY#}Gm z+l~HN(K{Z#H6=~aj_cw#S%qwAXS=;sJyNN&>(IGvPM_$u;xAKsK2(_H7I^h{BAM`v zpKQWQIyN-FMJh|~e-Jw-o+OwQ?%GZ;QFf)%0=)e#|2&V(|& zfr0gVJeA??99Y|up%!%5LnS<)buW}dBg2%THX50Y_XFoQk;6Yc(WNit1No*%J2d4i z@{o6CofF8xNh0|_+SH?1ds4p=h<9Q`jxs@K&*eQAi=6-H-C-(Yzs)?}4*l#+r;|7w z@}e!93dwWCr0;rLF7zi)G;Z4@aHV>-kstjOmk`obd@CPB`lS<@+in&e|wtM)%H{ z+&HqOtkb1vLHQ#mVWLoEU0K?V1#B4-=YNTSQ9y;P@u%ext#}KYtO9M2b8>T3r;^H1nFHev<2ze>w%<+?bfSS?UkWO#M z0TcBj-ZV=oP)USH$exiIsVMK3rHZ%jlni%9AW-B^<3M?umUw-eFu|9Yr(dg?Yy{W*;ZDM1Nl% zN%0Ns+kcSTzyI)o1EUKTeU%zMwIQ}_V{FIb`0gj;o6BpT+*14G#=70R<4-M%S1zcj zKJsbl+;hI7#n;V?o!W3FP~4iTy|rr|HyzZRn*Z;8e12j{P1SZ^?7)K9zInAL_r;$) z6|X$OXT-^q!ro^@2H_WVyl&^&9mftVjxRiQ=8K-|iu!zW%fk_w(?HCBE2_viRa>&Wv%+eCy_&q=%ZS zrLpBpG|x>ZVkatM)yHf1EIvn3NFRHGhquPcSH+hw*)`@dUu^YG-i$3@TD$Wga@5bM zibodIRF&554DU1jeSTtXtn5hrrsbMa>51C8$GtN?DaIR#9%_zlM3mUZqjj5?`0C0R z)U94wyL^5_5#s9>)~{Npk;;zLR9DtiSH~8w_6&$*rtkQ?vUqe328k~$rPa~ z793{;CTiZnwIqk*)5PrB8aq%P-yF6sSHG^bZu^|G9!`9?ZjeUfPwhu*vC_pg$5+G_ zuaq4;BO{OXpOqCnP;-1OdO(o)+@0Pi?SI4%V!tk+*MR|FJDW=k30`E-2UGfXl1$kJE5uYydyep6ZO z#LD=}s@UnW`c35s?`^BicR*JXo!r6{^hNMLcslVlQ16%Ri0wOuXD0Q6H2xWzSE1=X z*xltJ{4VwYuSil|8MZK&O7m{<_^;V{13WHXX#r@WuGvDn%=P zb^2u8v8}by>e|BxNjlc*PwiLM_zyo1);+VHe?C8vGADZDs%9xoV>=@Fb#&rWJyXK9 zk8h4gS9&q;&D?(blg046c;&YGwexFEdg7n+@z7z0N*DG=eH+Am%tyjl*)G&*4DHnI z-Cn!(xFf;SgKq7@a=fQ*-=g^1Lry%peDzx?H=@4S^6e(JlIBQ!Nj&Sv#P`GohS_L7 zI2t)3*ABZrvUhE>rt!T`Ghk%-p;nQqwI7GI6e}-QZ>!r^8mp*8)5*;cQ#A=v57nGF zQFCmWlFO3)()m-X>UM3fJ-nU#W__cpy>aa;77CFu99g%^)UF z60x0iN)B9JDL*xl?V2f@9B6tztGn+N2tPD0BqXb*7a5gTqdV6DR zh#`#{5D@J~89eflz-f+qsDT>-H>;FJ4!-bN87~hZk?E4#&37jc*`*YWYVy z^i{X`VBPKwN`_l2rOw?O>UNfLA1lZ9?~$a+09t6VXgsn;%Y5Q7+`xzC;(NDZO0(<{ z2c`=qWfudj{iZy4@^+OVyp8}wMeXV8y1n~JQFXhXO}^ywu~^g`pI^7*X@-qIxj$ZE zQn=(|K$8Z|3}Y4Z>MIZae|#%^Wz!YsjrabxC=eODzE|X5n+AvREaKNo5sPDy-8Kvo zbBP>^m6gR8ER@JBr7JfQW|+*WJw(1=sik}KPL_S$l4b~k#Ck(Uub;=WOJWt<(Y47L z$zM^DF>ILHgNmWy*Fo1uRYh%8w_tbO&bg@1d?Pf)jxbef6AR& zrbxn7)tKM-r>UusKx@nLJzCc#&_c(o*=G7o%*-gMNqRAF#=IFs4sKl-uG?9SKVg)_ zw?EcCZBo2%hGtEm0;JAK+LW0kpEWU8Q5io{Zv31do!H#f^y;Vt*t^Qnh?GA{yA-es zcM)EgKcR%MO+Q}7t=gN+8muX$HPt80biEgkQHs?ZTTJ~Y@2NatN*|=E+g_;w&iOiM z>+||eb8GkP_tow%t*_pILr_k}4jfc`@7^tk3sZnUwciX=zh+tN;8v4OY<0is7!#^5 zT@$OS;_3R*)i|S4r_X*0RF5a;+tlHiDe>jdHGT51ahjxuCVdmL)*S1z(PR+2O)#ZB z(;*VfdpHRilsApt=1UEeyo@^<=Sf(8NzJLnNRjwbNVc_~3T2PvJGRHl11QwK?-l3F zf;W_j8mukmf%*kYU#QL>c>MIH3 zg=fT)>#r z3SyJ@7e7v?tZJSqd+aS6sY@yuIq{TN7DfKC<9NG&SKY4+6{>-Rj#t`gmRTDrtc z;M3BjWC}GK%!-?mbNk%b>BFc!zQ2M+&u3n+E9JU{ti{|t`?a}s$Xplp0@EJC z(wli(E2XKf_0`ZPU*Nl;ggaY;*un*8p5tqweb7Guagt$5)-;s?0j=tE?P?!>uCb^j zGIrpdXDqI$DBD$6T1IFRm$hrF%!U}}q08t`cfZy+Y_e|hL_sR>&J~RHjcR%Ld-90+ za_C8EJ{|HHd(7Qv+UT1C!n~jCG`?`DSrO}YE3uMbnwnG-S-gM$=!R}5ov~3RroFu? zJv4MEli`dpYECX?5oPyUTX8CS#esp1!?u`Dem&IcW_G+@frN%ov-06itsVdN0nxs0 zDopz+&{XRG=Z^G}Kl!KI=YBwRv|(6TrM*P#iA4#-_inB`y{x|US<3B%^HPn*PVcEN z-N?QA%Fh=zB-XQf{FDBI$9E#e&FTM!aH0a)(5& zuBm#~+aBt8Tpt!=OG{&$7uiRvp3x4>Ga%J&ExqqM9KEONwbaSAYd4c#%#jt}2bErU z?07}&Sd=QtSdLVW;PHKnh}^_CMTzGfrty+2pZuz*WZttn?Q#{|-nN!$n{GIgqNfIn z!y5guot__CJ+6Ihd3nvr!_oq&StlVCi_jB!AW~jEH_dK{yxc&+}z7Gz%db9~EsufjUO z`JPHc@318L*vUsyTgR8}h?O6SRU9yGZ6u6-dHU6q{%1Za8nYT_OngDC-!!Lw{T7q4 zZLT@=+)w)A1huDj>3bq6fR%u}rB%Tj7fD<`BzosPo(&_x=U*OTj!F0gz?a3?$z62| zpEaVKqtOQ67NywXKOOM@_GWb2PdBEH)agXRj7o-&YyT`aUU49{g=Kq5{6JOxoJ~Aq zP6T3QJK2p$+n%AKOb5T6!RW4+bDB1zVlRKjDz(`gTN{Oq zCh9B7b?~zw%GhY-9E&EtHrm42Taj^Y$Gqzm;z)=&yswQ~&Gfl3cJd(Um&l4eQBLHa z^ECJMeX)Z+FuEjz+R}=;?I(4X%C6meA-eC)zA4>eTQVm5HvK6sq)%B~lMxOd$T@R_=JFvGg#Rmhv0#vLeqmmj- z;)x9U@V;M8ZK)CuShaWXmh@!i*9VbASCNVj-RXMLTL_bjPV#rB;RG9eY{WjAeWIIlB;qWf z!S@bRQpw%+eb~NHYn+6=%vM#zHeK*BGWx>D={RhI-|9E-=PV+5j?Kww{P_Mz{U@&^ z{;P`y2k4lRwZRAFX7k5(f@;&HKvz!cqe-BcW*S}zX32dHVJ{#A4$3V2_=(dEATXvk9p6;fR>g2 z;T6T6cX0T>dByu^8QZX!vQ9hl__~(6V@rtr)YF)~FC2MXB zrO3V~%JQQhDPxSE6opj$U+>O&JpMh(^L);|_bi{Y%xLBLkOdcl1OF`;vdH0|*+Gs| z0tXjX^#A{CuIM;#yNfsPr6v|K$U)^!S@p;URFJXD?hZ@+M7>ld1H10=rcmoSzHa>@cVFAon z!?YKRd59~a-b=)y*d7bezcYYBJ}O?rIGl!RCAKw7_nt zINiDx3lJa1Vt4_g@Mny~T(uYw{X2yzl*5Wx7n4yl{Wr$oTKjxI?jgR33HU*6Gr;qh zi})HUBe$?E-bHns$jb#W8R^>@fNJ-B3}`L3P-uh?Q61N=<2XgI3u-{aZ2SSn5${B0 zEP~aMHl0=& zhm%q7FT(=30gK}v)C9gowfh@tpnqdW%*77Wp6YIWyZ_giiWr!`PccAKe}K- zea8vIw=n|epi;NQ`YEd6v#9rD8#qpW9E)0t85o7LP!q~P4QwMaS7%3nLLmy-s7?46 zK8JZ24Q)ClQOBn{vh2=6Ou{3mwG3z7I6zKA zN41xqjY5V3PBaCrajZ2F)o=&YF?ks^lTo&QA6Nq1(m5?sE$vemgFLqz@M== z=3yP8u>uyu=GLC5_g}ToXJViN6&V!x);Wg5F;6SA1mjVgayItEC8z;BL|rJ6q^T^% zVmWMyTDoDVrF$K9dS;_0FdsF+rKkyf+?xDr)9s`}sr>>q^W&)ci>QvSp&Gi6%G4jI z_w%(e11yg1h$~?Xjzw*o_B^2(qu7>8P3QN3HEo zm_n(K&3jAX~kh>Ou-JQ4nM(;82JJ}L9q`~d6>CbJ5|^%#s>F$8yD zoX&qHg>R|2gi6tt&SsbXfLhDPsF@e$epScyP#up!Ey-jI#pzf8XQDRg5>&@q@g3ZW ziP*d=M-eArjL!du6!hXg%!5Zz4WF~|e{7tExvBpdnXK~&-^DiMxtiX`+URsM?Id7f z!e*!o>Lo0QV^ITr3mfSCFQ%Y#dlogbI~a+-;{Xim?l=Q+5GLXg?2CV49qdKESuJNS zYExZB_NNot(+nUPmAQdf1ealb+>U{w6mC;c$J)BuBoU|)*F@cX9j*OQyFC?^scERq z_#Q^%C#dgEq9$}3TVMz~lYgBy{Gm)`U@82%H~IhP=AuHW%EN`Ok;S3bv==H9FJmDb zg<6_vSQlquBix7W@lPAKCOr*_rz0oN*^3P@w4cdLGt^Se>_`4p_>78tco&t@zfc3K z)!%H!j@Xho1@-<$jK-^|_a0(NEcCLu^J`%#;^$EVAC6l4saOo>qb9r|KtXHv1!_}d zp;G<`Yhtbe=D5^Hb=U-JU=J*gGqD1$K`r5N)J)H#+ROWj8CWTdBW{f9xF2dDfw2^{ z2j0QTn1R|Pr%=2726nI=NtNW8c`UJvr#F1hT1I8jWEZh9KKH61=H|r48v9HV5UUcm!vq{}>o;N(;!JFZzo**s-*k-mOJyI7=fN4&fF5E+jDOYq_S*?- z5YIq$umeluHPlSq*US>ep(fTCyJHXQR!k-i9czAF?>d(Jhf=YQ3Z2u<*b(<*P0T-z zUn;OU>Qs!dPO~mXo%_wG-F^Z!z+0%bFUERlV6{-0?SvI@C~Dwy0~D%I*pBMxDptcV zHiWE$b#Nf&!gOqnA7CWj#4>mvm8l{VOa_{w2G-j;$<{AMy}tuB@xXT!w0W+eI(lHO zIMH4ds1c7v9ml1p&G()4DyqRBQ8NmgWY)GK>b=*nEKWjAUs53p)%u4F&$SzosLv2tMfmZ zf?inpPX#v^YUDYX8-K-o_ynUcoU^C_mcjZMkHv8S7RD)92s8Q_ya9r8kQt`Kf~fjv zR7T69zVC!O&Qq`?ZbnVu#0*BPng2pXItIUKT#ia@!oQ6vs1&ASU)+K*81a^wSp`&s z9Z|TK z)vRq$19=(M@f6gOzHgszMeU8FsD6Gx_E^CA%@mx-cli6B%P*8T1^;@N^Ny3|n4b-w z&o%$UvHCpod%|)IqoGZxwcdeD*13iWICQ?r)N*{D_&6qF;rGpj^*k2V`5#R|7tIV* zO6Q?wuoE?-lcv-q!cBjzrxLQ!zg-z~c1ptf8O| zzd(I>-o9`RHM4uz4NG{Yz$QET18+76ZK7qL3_LcKo=)!{PK1P-8_OBUk2-AA~wcUY=oOoGr5H|Fn*Q!;nV|lQB6bLc$=^SUPNuK zr>G9&J}}4aC9Fj}5%qi{GT?x7l0tDR&S4DRH4mKd)n;G?P?;!e<7%jxHb-^P7VF>? z)I_$Uo*zWrlqYQb*!m2Wp|A{{x&Z4>K_4cd)~*d|rd?5+>P_S|XA$Lk{v*`PcA#dk z$JU=kEyed(40C^EI*voVpI~ihZGqb4?J%Gj_oX0*qZ*ok`Y;2daD$D%Le2P?t^djT zx3%ax^L`C$JL@afe_=(w_fSi-cO8ixLLr9=EkWn?W*~!6^{=7oFIn%P8hDE3Fn)uX z$qT3n48SlPZB0XEa*B=LwJt!tzjOon*V?SJ54K||;!GP~z{14eqdvHAeTHp_BR86i zbVao@2HW9e8y`Ro;FOK8+Bgd*Q2#JMLBE-d{@C1Dt56*sLe1nG)Dm36aQxNQ|A~4p zXp`f-fcddA_C=khtr&~Pt+!F_gl{(WWv~lzAc?|g3X8BL25&KzMrEQI#$kUffdNdx z71#rVwwle`8+#J3LuKX}#$%gp=KEB9k$4_zfY*@z0?rc(rKyP8ZjMbuRLA{M=XxsE z#2u)N{D}M0r=8I=+q? z`7>;e@t>Lohgrv1CtxJcr=qUtcWnJyoJqV1>tVu9Gl7w)46nf4_!&m%{2!zcif1q{ zersR2fq97U;4AnDr(>^O=7PF{b%^t1nt?ROBE-q4i44L*I0FmfV${{X5w#bxFrbt^ zqo7oU?KY__fWwIUqB=N?t?&uf#b$d<>L*|o;*;0`A7L?U`I)(z`(PCDJR5JY@l{mj ze*cX8>l_DtZZ=6g7A9_o`LG}A#Zj0aCu4b>jWM_lwJA^9I2$#?kiF(NrWTk;oQ@^% zG-^OOs7wWaLH-+1i2lN?aaUA_y-^(wwe=IR7V#UX2Df8t%tB?P>X#-{gRmv>5=_9W zn1luPneV$|RpPf$?e7Rs(C$89D;`*b_nQw3p*rY}C2jQqV|_pk{ahwI^~PFuOWGs=gAcqdurLPeZ-88mr@aROT*V zY5dU|deCgbcq~eNBhpoK)C6{- zcKczB#>=R7A7D3(Jk0;<$APGR!j9;)1^9zPA1Y$72~I@q`khz`b5IS1A2o3q)Ec(H zikOP!FddnZv)9Hs7*Cx4nECCv9+o9ufXc)!jG=$$GzA@>+t$S6=EjZ0+jGB4n6DC8gFpPKzY7dP@Wp*u2z&|jci{aIiW=-BiHMkVtz{5BZ zTb(iu?M0pMgQyu?LGAMUm7nO1d1vT@i zOD0pX$Pxye`ljFvM|H3awd+5|26z;;#_na)Kt5E1MNscG!6fW$pRdF?;&!nK4F0`(~7Q`E{Ip&}`sB*>p4JQ?&i5HsS~6K&7_k zRr5EfeprNfDaPP7)RLUUIGz9BDJV5Xzc&LZiJEads^K~qjLFy(JEPWeJ{HDpSP&1P zCUVjG18RxxpfX$Zzoy*^sJ)he|NQuUj9Y-iy3$jJ{6(HNpy1=*7;cj)tOAn2LJ7982L5)bpD-1pkK` zK-VA4fJdP^n1K5JO>BVMu?FU#CRY50`L5iJfJsdgDs&GdV|jcHi(@)=z#XU$pQ1X* z{i7L35o-z5_hqeZu{7~WR3_%2?v=Hu?~mgoyb!R37k@IF>6rBo)S6blY3}SMs0=JX zHT((2;(64ret^BPe3se$(@>epK&|x#)O%O3BIdnimNrnAf>JX8)xmrW#cinFy%Xax z%bG9SyjK@h-woB^RMhTXhvo4AYDu#(4?ab`A933ZtTvK~fYX3N86LF3Bpi<6xEXcK zcA+-sS=3rTwHC`U-_=B=xGQP^BT$)n8{=>tYWE+t&o81T`T(5>zkiLHu0N>G?%e*~ zCV5=%K(ojG@#ghie?Zc6LEffT$zDY3-y>7TjvX_$q0?IUquUO4{i5w}xnA!M9lYxu z4tbZ78+t7|Cgw{S7xzl);JCC`298P@*U^16Hd{Gtoz z2KyJ%>$zV4rMtcQ%T{=QFY6YSHY_e}Ox)-(gU63bQEBj)LE}fKq^9}9R+JC+*L+aQ z^?q3W$X~xEImDa4zLa-teG@-=LsXF0_v2FDN&ZXT)Xd+tX|5Ylw_5GGaW!i;texO@ z-0~pEpX(pa?LXcd>G~o2B3wUaf2`}T{OX?TojusiYj)^*f!ptG%l>%ny}ipEQ}P2x z2DpCgu@kP>=0sEPz=_Yi)u$4@;L~*q-uiUS&Ap4VXU)vc*pRh)FW>ls&*TmAx1Jr~ zdPC36%6oIh((DbNJ6Vf%-`tY!FZwnj$ZK+Gb!66tjI5RWZoaqpr`=n;vX?*eA6~BE zdV{X)@oHQx?+3m=8RDJ4vB^L5WAza4-Rv0ea&{HJTu!whf7Sn{yZ)G;PX>AOel6`? z{k5&v^8OV6xBK~Bul#Q*{*K?q2l-7N9e2H^f9&?kJvr)?{d>tS+{1-%385Gy>`4?KK*FCo0M6vqC3R> EKR_X(^b diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 1ee11b41e..44b8dfbca 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-26 00:23+0000\n" +"POT-Creation-Date: 2022-07-03 00:22+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Steven Hsu , 2021-2022\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -319,12 +319,12 @@ msgid "" "cannot be built with the loaded version (%s)." msgstr "這個專案需要擴充套件 %s 的最低版本是 %s,所以無法以載入的版本 (%s) 被建立。" -#: sphinx/highlighting.py:127 +#: sphinx/highlighting.py:159 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments lexer 名稱 %r 不是已知的" -#: sphinx/highlighting.py:153 +#: sphinx/highlighting.py:185 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "無法將 literal_block 分析為 \"%s\"。Highlighting 已省略。" @@ -638,7 +638,7 @@ msgstr "正在準備文件" msgid "duplicated ToC entry found: %s" msgstr "找到了重複的 ToC 項目: %s" -#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:759 +#: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:762 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " msgstr "正在複製圖片..." @@ -648,7 +648,7 @@ msgstr "正在複製圖片..." msgid "cannot read image file %r: copying it instead" msgstr "無法讀取圖片檔 %r: 正在複製它做為替代" -#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:767 +#: sphinx/builders/_epub_base.py:411 sphinx/builders/html/__init__.py:770 #: sphinx/builders/latex/__init__.py:418 sphinx/builders/texinfo.py:183 #, python-format msgid "cannot copy image file %r: %s" @@ -773,7 +773,7 @@ msgstr "conf 值 \"epub_identifier\" 在 EPUB3 不應該為空" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "conf 值 \"version\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1151 +#: sphinx/builders/epub3.py:229 sphinx/builders/html/__init__.py:1154 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無效的 css_file: %r, 已略過" @@ -896,7 +896,7 @@ msgstr "錯誤寫入檔案 Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "文字檔案在 %(outdir)s 。" -#: sphinx/builders/html/__init__.py:1104 sphinx/builders/text.py:69 +#: sphinx/builders/html/__init__.py:1107 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" @@ -922,164 +922,164 @@ msgstr "build info 檔案已失效: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTML 頁面在 %(outdir)s 。" -#: sphinx/builders/html/__init__.py:403 +#: sphinx/builders/html/__init__.py:406 #, python-format msgid "Failed to read build info file: %r" msgstr "讀取 build info 檔失敗: %r" -#: sphinx/builders/html/__init__.py:496 sphinx/builders/latex/__init__.py:177 +#: sphinx/builders/html/__init__.py:499 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 #: sphinx/writers/texinfo.py:222 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html/__init__.py:515 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:518 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "總索引" -#: sphinx/builders/html/__init__.py:515 +#: sphinx/builders/html/__init__.py:518 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:580 +#: sphinx/builders/html/__init__.py:583 msgid "next" msgstr "下一頁" -#: sphinx/builders/html/__init__.py:589 +#: sphinx/builders/html/__init__.py:592 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html/__init__.py:683 +#: sphinx/builders/html/__init__.py:686 msgid "generating indices" msgstr "正在產生索引" -#: sphinx/builders/html/__init__.py:698 +#: sphinx/builders/html/__init__.py:701 msgid "writing additional pages" msgstr "正在編寫附加頁面" -#: sphinx/builders/html/__init__.py:777 +#: sphinx/builders/html/__init__.py:780 msgid "copying downloadable files... " msgstr "正在複製可下載的檔案..." -#: sphinx/builders/html/__init__.py:785 +#: sphinx/builders/html/__init__.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "無法複製可下載的檔案 %r: %s" -#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 +#: sphinx/builders/html/__init__.py:821 sphinx/builders/html/__init__.py:833 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "在 html_static_file 中複製一個檔案失敗: %s: %r " -#: sphinx/builders/html/__init__.py:851 +#: sphinx/builders/html/__init__.py:854 msgid "copying static files" msgstr "正在複製靜態檔案" -#: sphinx/builders/html/__init__.py:867 +#: sphinx/builders/html/__init__.py:870 #, python-format msgid "cannot copy static file %r" msgstr "無法複製靜態檔案 %r" -#: sphinx/builders/html/__init__.py:872 +#: sphinx/builders/html/__init__.py:875 msgid "copying extra files" msgstr "正在複製額外檔案" -#: sphinx/builders/html/__init__.py:878 +#: sphinx/builders/html/__init__.py:881 #, python-format msgid "cannot copy extra file %r" msgstr "無法複製額外檔案 %r" -#: sphinx/builders/html/__init__.py:885 +#: sphinx/builders/html/__init__.py:888 #, python-format msgid "Failed to write build info file: %r" msgstr "寫入 build info 檔失敗: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:936 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "搜尋索引無法被載入,但不是所有的文件都會被建置:索引將會是不完全的。" -#: sphinx/builders/html/__init__.py:994 +#: sphinx/builders/html/__init__.py:997 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "頁面 %s 在 html_sidebars 中符合兩個型樣: %r 和 %r" -#: sphinx/builders/html/__init__.py:1087 +#: sphinx/builders/html/__init__.py:1090 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "在呈現頁面 %s 時發生了一個 Unicode 錯誤。請確認所有包含 non-ASCII 內容的組態值都是 Unicode 字串。" -#: sphinx/builders/html/__init__.py:1092 +#: sphinx/builders/html/__init__.py:1095 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "在呈現頁面 %s 時發生了一個錯誤。\n原因: %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1124 msgid "dumping object inventory" msgstr "正在傾印物件庫存" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1129 #, python-format msgid "dumping search index in %s" msgstr "正在傾印搜尋索引於 %s" -#: sphinx/builders/html/__init__.py:1168 +#: sphinx/builders/html/__init__.py:1171 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無效的 js_file: %r, 已略過" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1258 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "多個 math_renderer 已被註冊。但是沒有 math_renderer 被選擇。" -#: sphinx/builders/html/__init__.py:1258 +#: sphinx/builders/html/__init__.py:1261 #, python-format msgid "Unknown math_renderer %r is given." msgstr "未知的 math_renderer %r 被給予。" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1269 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 項目 %r 不存在" -#: sphinx/builders/html/__init__.py:1270 +#: sphinx/builders/html/__init__.py:1273 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 項目 %r 被放入 outdir" -#: sphinx/builders/html/__init__.py:1279 +#: sphinx/builders/html/__init__.py:1282 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 項目 %r 不存在" -#: sphinx/builders/html/__init__.py:1283 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 項目 %r 被放入 outdir" -#: sphinx/builders/html/__init__.py:1292 sphinx/builders/latex/__init__.py:422 +#: sphinx/builders/html/__init__.py:1295 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" msgstr "標誌檔案 %r 不存在" -#: sphinx/builders/html/__init__.py:1301 +#: sphinx/builders/html/__init__.py:1304 #, python-format msgid "favicon file %r does not exist" msgstr "favicon 檔案 %r 不存在" -#: sphinx/builders/html/__init__.py:1321 +#: sphinx/builders/html/__init__.py:1324 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks 從 v3.5.0 開始已被廢止。請改用 html_permalinks 和 html_permalinks_icon。" -#: sphinx/builders/html/__init__.py:1353 +#: sphinx/builders/html/__init__.py:1356 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" @@ -1206,16 +1206,16 @@ msgstr "如果這是一個使用者錯誤,請一併回報,如此下次才能 msgid "" "A bug report can be filed in the tracker at . Thanks!" -msgstr "" +msgstr "錯誤回報可被歸檔於追蹤系統中,它是在 . 謝謝!" #: sphinx/cmd/build.py:90 msgid "job number should be a positive number" -msgstr "" +msgstr "工件編號應該是一個正數" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:465 #: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." -msgstr "" +msgstr "需要更多資訊,請拜訪 ." #: sphinx/cmd/build.py:99 msgid "" @@ -1234,27 +1234,27 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\n從原始檔案產生說明文件。\n\nsphinx-build 會從 SOURCEDIR 中的檔案來產生說明文件,並\n將它置放於 OUTPUTDIR。它會在 SOURCEDIR 中尋找 'conf.py' \n內的組態設定。'sphinx-quickstart' 工具可以用來產生模板檔案,\n包括 'conf.py'\n\nsphinx-build 能以不同的格式建立說明文件。在命令列指定建立\n器的名稱來選擇一種格式;其預設值為 HTML。建立器也能執行\n與處理說明文件有關的其他任務。\n\n在預設情況,所有舊的文件都已經被建立。指定個別的檔名,\n可以在建立時僅限於輸出所選的檔案。\n" #: sphinx/cmd/build.py:120 msgid "path to documentation source files" -msgstr "" +msgstr "到說明文件原始檔案的路徑" #: sphinx/cmd/build.py:122 msgid "path to output directory" -msgstr "" +msgstr "到輸出資料夾的路徑" #: sphinx/cmd/build.py:124 msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "" +msgstr "一份要重建的特定檔案列表。如果 -a 被指定則會被略過。" #: sphinx/cmd/build.py:127 msgid "general options" -msgstr "" +msgstr "一般選項" #: sphinx/cmd/build.py:130 msgid "builder to use (default: html)" -msgstr "" +msgstr "要使用的建立器(預設值:html)" #: sphinx/cmd/build.py:132 msgid "write all files (default: only write new and changed files)" @@ -1262,243 +1262,243 @@ msgstr "寫入所有檔案(預設:只寫入新增及已變更檔案)" #: sphinx/cmd/build.py:135 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "不要使用已儲存的環境,永遠要讀取全部的檔案" #: sphinx/cmd/build.py:138 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" -msgstr "" +msgstr "已存快取環境及 doctree 檔案的路徑(預設值:OUTPUTDIR/.doctrees)" #: sphinx/cmd/build.py:141 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" -msgstr "" +msgstr "盡可能以 N 個程序平行建立(特殊值 \"auto\" 會設定 N 為 cpu-count)" #: sphinx/cmd/build.py:145 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "組態檔案 (conf.py) 所在的路徑(預設值:與 SOURCEDIR 相同)" #: sphinx/cmd/build.py:148 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "完全不使用組態檔案,只用 -D 選項" #: sphinx/cmd/build.py:151 msgid "override a setting in configuration file" -msgstr "" +msgstr "在組態檔案中置換一項設定" #: sphinx/cmd/build.py:154 msgid "pass a value into HTML templates" -msgstr "" +msgstr "傳遞一個值進入 HTML 模板" #: sphinx/cmd/build.py:157 msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgstr "定義 tag:「只」包含有 TAG 的區塊" #: sphinx/cmd/build.py:159 msgid "nit-picky mode, warn about all missing references" -msgstr "" +msgstr "nit-picky 模式,對所有遺漏的參照發出警告" #: sphinx/cmd/build.py:162 msgid "console output options" -msgstr "" +msgstr "控制台輸出選項" #: sphinx/cmd/build.py:164 msgid "increase verbosity (can be repeated)" -msgstr "" +msgstr "增加贅言(可以被重複)" #: sphinx/cmd/build.py:166 sphinx/ext/apidoc.py:326 msgid "no output on stdout, just warnings on stderr" -msgstr "" +msgstr "在 stdout 無輸出,只有在 stderr 的警告" #: sphinx/cmd/build.py:168 msgid "no output at all, not even warnings" -msgstr "" +msgstr "完全沒有輸出,也沒有警告" #: sphinx/cmd/build.py:171 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "執行 emit 彩色輸出(預設值:auto-detect)" #: sphinx/cmd/build.py:174 msgid "do not emit colored output (default: auto-detect)" -msgstr "" +msgstr "不執行 emit 彩色輸出(預設值:auto-detect)" #: sphinx/cmd/build.py:177 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "寫入警告(及錯誤)至給定的檔案" #: sphinx/cmd/build.py:179 msgid "turn warnings into errors" -msgstr "" +msgstr "將警告轉為錯誤" #: sphinx/cmd/build.py:181 msgid "with -W, keep going when getting warnings" -msgstr "" +msgstr "帶有 -W,在得到警告時會繼續前進" #: sphinx/cmd/build.py:183 msgid "show full traceback on exception" -msgstr "" +msgstr "在例外中顯示完整的回溯" #: sphinx/cmd/build.py:185 msgid "run Pdb on exception" -msgstr "" +msgstr "在例外中執行 Pdb" #: sphinx/cmd/build.py:217 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "無法找到檔案 %r" #: sphinx/cmd/build.py:220 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "無法合併 -a 選項及檔名" #: sphinx/cmd/build.py:241 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "無法開啟警告檔案 %r: %s" #: sphinx/cmd/build.py:251 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "-D 選項引數必須是 name=value 的形式" #: sphinx/cmd/build.py:258 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "-A 選項引數必須是 name=value 的形式" #: sphinx/cmd/quickstart.py:38 msgid "automatically insert docstrings from modules" -msgstr "" +msgstr "從模組自動插入說明字串" #: sphinx/cmd/quickstart.py:39 msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgstr "在 doctest 區塊自動測試程式碼片段" #: sphinx/cmd/quickstart.py:40 msgid "link between Sphinx documentation of different projects" -msgstr "" +msgstr "在不同專案的 Sphinx 說明文件中鏈接" #: sphinx/cmd/quickstart.py:41 msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" +msgstr "寫入 \"todo\" 項目,它們可以在組建時被顯示或隱藏" #: sphinx/cmd/quickstart.py:42 msgid "checks for documentation coverage" -msgstr "" +msgstr "核對說明文件的涵蓋範圍" #: sphinx/cmd/quickstart.py:43 msgid "include math, rendered as PNG or SVG images" -msgstr "" +msgstr "包含 math,以 PNG 或 SVG 影像被呈現" #: sphinx/cmd/quickstart.py:44 msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgstr "包含 math,被 MathJax 在瀏覽器中呈現" #: sphinx/cmd/quickstart.py:45 msgid "conditional inclusion of content based on config values" -msgstr "" +msgstr "根據組態值有條件地包含內容" #: sphinx/cmd/quickstart.py:46 msgid "include links to the source code of documented Python objects" -msgstr "" +msgstr "包含鏈接至已有說明文件的 Python 物件原始碼" #: sphinx/cmd/quickstart.py:47 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "建立 .nojekyll 檔案以在 GitHub 頁面發布文件" #: sphinx/cmd/quickstart.py:89 msgid "Please enter a valid path name." -msgstr "" +msgstr "請輸入有效的路徑名稱。" #: sphinx/cmd/quickstart.py:105 msgid "Please enter some text." -msgstr "" +msgstr "請輸入一些文字。" #: sphinx/cmd/quickstart.py:112 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "請輸入一種 %s 。" #: sphinx/cmd/quickstart.py:119 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "請輸入 'y' 或 'n'。" #: sphinx/cmd/quickstart.py:125 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "請輸入檔案後綴,例如 '.rst' 或 '.txt'。" #: sphinx/cmd/quickstart.py:206 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "歡迎進入 Sphinx %s 快速入門公用程式。" #: sphinx/cmd/quickstart.py:208 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "請輸入以下設定值(如果括號中有給定預設值,請直接\n按下 Enter 以接受它)。" #: sphinx/cmd/quickstart.py:213 #, python-format msgid "Selected root path: %s" -msgstr "" +msgstr "被選的根路徑: %s" #: sphinx/cmd/quickstart.py:216 msgid "Enter the root path for documentation." -msgstr "" +msgstr "輸入說明文件的根路徑。" #: sphinx/cmd/quickstart.py:217 msgid "Root path for the documentation" -msgstr "" +msgstr "說明文件的根路徑" #: sphinx/cmd/quickstart.py:222 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "錯誤:在被選的根路徑找到一個已存在的 conf.py。" #: sphinx/cmd/quickstart.py:224 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "sphinx-quickstart 不會重寫已存在的 Sphinx 專案。" #: sphinx/cmd/quickstart.py:226 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "請輸入一個新的根路徑(或直接按 Enter 離開)" #: sphinx/cmd/quickstart.py:233 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." -msgstr "" +msgstr "您有兩個選擇來為 Sphinx 的輸出放置建立資料夾。\n其一,您可以在根路徑中使用資料夾 \"_build\",或者,\n您可以在根路徑中分離 \"source\" 和 \"build\" 資料夾。" #: sphinx/cmd/quickstart.py:236 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "分離來源並建立資料夾 (y/n)" #: sphinx/cmd/quickstart.py:240 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." -msgstr "" +msgstr "在根資料夾內部,另外兩個資料夾會被建立;\"_templates\" \n放置自訂的 HTML 模板,而 \"_static\" 放置自訂的表單及其他\n靜態檔案。您可以輸入另一個前綴(像是 \".\")來取代底線。" #: sphinx/cmd/quickstart.py:243 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "用於模板及靜態資料夾的名稱前綴" #: sphinx/cmd/quickstart.py:247 msgid "" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "專案名稱會在已建立的說明文件中的多個位置出現。" #: sphinx/cmd/quickstart.py:248 msgid "Project name" -msgstr "" +msgstr "專案名稱" #: sphinx/cmd/quickstart.py:250 msgid "Author name(s)" -msgstr "" +msgstr "作者姓名" #: sphinx/cmd/quickstart.py:254 msgid "" @@ -1507,15 +1507,15 @@ msgid "" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "" +msgstr "在 Sphinx 中,軟體具有「版本」和「發布版本」的概念。每個\n版本可以有多個發布版本。舉例來說,Python 的版本會像是 2.5 \n或 3.0,而發布版本則像是 2.5.1 或 3.0a1。如果您不需要這個雙\n重的結構,請直接將兩者設為相同的值。" #: sphinx/cmd/quickstart.py:259 msgid "Project version" -msgstr "" +msgstr "專案版本" #: sphinx/cmd/quickstart.py:261 msgid "Project release" -msgstr "" +msgstr "專案發布版本" #: sphinx/cmd/quickstart.py:265 msgid "" @@ -1525,21 +1525,21 @@ msgid "" "\n" "For a list of supported codes, see\n" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -msgstr "" +msgstr "如果文件是被英語以外的語言被編寫,您可以根據它的語言碼\n在此選擇一個語言。Sphinx 會將它產生的文本翻譯為該語言。\n\n要了解可支援的語言碼列表,請參閱\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." #: sphinx/cmd/quickstart.py:271 msgid "Project language" -msgstr "" +msgstr "專案語言" #: sphinx/cmd/quickstart.py:277 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "用於原始檔的檔案名稱後綴。通常,這會是 \".txt\" 或 \".rst\"。\n只有具有此後綴的檔案才會被認為是文件。" #: sphinx/cmd/quickstart.py:279 msgid "Source file suffix" -msgstr "" +msgstr "原始檔案後綴" #: sphinx/cmd/quickstart.py:283 msgid "" @@ -1547,91 +1547,91 @@ msgid "" "\"contents tree\", that is, it is the root of the hierarchical structure\n" "of the documents. Normally, this is \"index\", but if your \"index\"\n" "document is a custom template, you can also set this to another filename." -msgstr "" +msgstr "一份文件的特別之處在於它會被視為 \"contents tree\" 中的頂端\n節點,也就是說,它是文件階層結構中的根。通常,這會是 \n\"index\",但如果您的 \"index\" 文件是一個自訂的模板,您也可以\n將它設定為另一個檔名。" #: sphinx/cmd/quickstart.py:287 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "您的主要文件名稱(不含後綴)" #: sphinx/cmd/quickstart.py:292 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "錯誤:在被選的根路徑中已經找到主檔 %s 。" #: sphinx/cmd/quickstart.py:294 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "sphinx-quickstart 不會重寫已存在的檔案。" #: sphinx/cmd/quickstart.py:296 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "請輸入一個新的檔案名稱,或將已存在的檔案重新命名並按下 Enter" #: sphinx/cmd/quickstart.py:300 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "指示以下哪一個 Sphinx 擴充應該被啟用:" #: sphinx/cmd/quickstart.py:308 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "註解:imgmath 和 mathjax 無法同時被啟用。imgmath 已被取消選擇。" #: sphinx/cmd/quickstart.py:314 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." -msgstr "" +msgstr "會為您產生一個 Makefile 和一個 Windows 命令檔,所以\n您只需要執行像是 `make html' 而不必直接調用 \nsphinx-build。" #: sphinx/cmd/quickstart.py:317 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "是否建立 Makefile? (y/n)" #: sphinx/cmd/quickstart.py:320 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "是否建立 Windows 命令檔?(y/n)" #: sphinx/cmd/quickstart.py:363 sphinx/ext/apidoc.py:85 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "正在建立檔案 %s 。" #: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:82 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "檔案 %s 已存在,正在跳過。" #: sphinx/cmd/quickstart.py:410 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "已結束:一個初始資料夾結構已被建立。" #: sphinx/cmd/quickstart.py:412 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "您現在應該在您的主檔 %s 輸入資料並建立其他說明文件\n原始檔。" #: sphinx/cmd/quickstart.py:415 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" -msgstr "" +msgstr "使用 Makefile 來建立文件,像這樣:\n make builder" #: sphinx/cmd/quickstart.py:418 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" -msgstr "" +msgstr "使用 sphinx-build 命令來建立文件,像這樣:\n sphinx-build -b builder %s %s" #: sphinx/cmd/quickstart.py:420 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." -msgstr "" +msgstr "在這裡 \"builder\" 是一種被支援的建立器,例如 html,latex 或 linkcheck。" #: sphinx/cmd/quickstart.py:455 msgid "" @@ -1641,7 +1641,7 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\n為 Sphinx 專案產生需要的檔案。\n\nsphinx-quickstart 是一個互動式工具,它會問一些關於您專案\n的問題,然後產生完整的說明文件資料夾以及用於 sphinx-build \n的 Makefile 樣本。\n" #: sphinx/cmd/quickstart.py:470 msgid "quiet mode" @@ -1763,13 +1763,13 @@ msgstr "\"quiet\" 被指定,但 \"project\" 或 \"author\" 的任一項未被 #: sphinx/cmd/quickstart.py:581 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "錯誤:指定的路徑不是資料夾,或是 sphinx 檔案已經存在。" #: sphinx/cmd/quickstart.py:583 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "" +msgstr "sphinx-quickstart 只能產生於空白資料夾中。請指定一個新的根路徑。" #: sphinx/cmd/quickstart.py:598 #, python-format @@ -1778,7 +1778,7 @@ msgstr "無效的模板變數: %s" #: sphinx/directives/code.py:56 msgid "non-whitespace stripped by dedent" -msgstr "" +msgstr "非空白字元被凸排去除" #: sphinx/directives/code.py:75 #, python-format @@ -1789,58 +1789,58 @@ msgstr "無效標題:%s" #: sphinx/directives/code.py:432 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "" +msgstr "列號規格超出範圍 (1-%d): %r" #: sphinx/directives/code.py:200 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" -msgstr "" +msgstr "不能使用 \"%s\" 及 \"%s\" 兩個選項" #: sphinx/directives/code.py:212 #, python-format msgid "Include file %r not found or reading it failed" -msgstr "" +msgstr "Include 檔案 %r 未找到或是讀取失敗" #: sphinx/directives/code.py:215 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" -msgstr "" +msgstr "編碼 %r 用以讀取被 include 的檔案 %r 似乎有錯,嘗試給定一個 :encoding: 選項" #: sphinx/directives/code.py:250 #, python-format msgid "Object named %r not found in include file %r" -msgstr "" +msgstr "名為 %r 的物件在 include 檔案 %r 中未找到" #: sphinx/directives/code.py:275 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" -msgstr "" +msgstr "無法以一個 \"lines\" 的互斥集使用 \"lineno-match\" " #: sphinx/directives/code.py:280 #, python-format msgid "Line spec %r: no lines pulled from include file %r" -msgstr "" +msgstr "Line spec %r: 從 include 檔案 %r 沒有提取任何一行" #: sphinx/directives/other.py:102 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "toctree glob 型樣 %r 未匹配任何文件" #: sphinx/directives/other.py:123 sphinx/environment/adapters/toctree.py:168 #, python-format msgid "toctree contains reference to excluded document %r" -msgstr "" +msgstr "toctree 包含了指向已排除文件的參照 %r" #: sphinx/directives/other.py:126 sphinx/environment/adapters/toctree.py:170 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "" +msgstr "toctree 包含了指向不存在文件的參照 %r" #: sphinx/directives/other.py:136 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "" +msgstr "在 toctree 中找到重複的項目: %s" #: sphinx/directives/other.py:168 msgid "Section author: " @@ -1860,11 +1860,11 @@ msgstr "作者:" #: sphinx/directives/other.py:246 msgid ".. acks content is not a list" -msgstr "" +msgstr ".. acks 的內容不是一個列表" #: sphinx/directives/other.py:271 msgid ".. hlist content is not a list" -msgstr "" +msgstr ".. hlist 的內容不是一個列表" #: sphinx/directives/patches.py:109 msgid "" @@ -1890,7 +1890,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 -#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 +#: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:739 msgid "Parameters" msgstr "參數" @@ -1908,44 +1908,44 @@ msgstr "回傳" msgid "Return type" msgstr "回傳型別" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7734 +#: sphinx/domains/c.py:3749 sphinx/domains/cpp.py:7733 msgid "member" msgstr "成員函數" -#: sphinx/domains/c.py:3751 +#: sphinx/domains/c.py:3750 msgid "variable" msgstr "變數" -#: sphinx/domains/c.py:3752 sphinx/domains/cpp.py:7733 +#: sphinx/domains/c.py:3751 sphinx/domains/cpp.py:7732 #: sphinx/domains/javascript.py:318 sphinx/domains/python.py:1155 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:3753 +#: sphinx/domains/c.py:3752 msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:3754 +#: sphinx/domains/c.py:3753 msgid "struct" msgstr "結構" -#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 +#: sphinx/domains/c.py:3754 sphinx/domains/cpp.py:7731 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7736 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7738 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7737 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7735 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7734 msgid "type" msgstr "型別" -#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 +#: sphinx/domains/c.py:3759 sphinx/domains/cpp.py:7739 msgid "function parameter" msgstr "函式參數" @@ -1994,16 +1994,16 @@ msgstr "%s (C++ %s)" msgid "Throws" msgstr "拋出" -#: sphinx/domains/cpp.py:7731 sphinx/domains/javascript.py:320 +#: sphinx/domains/cpp.py:7730 sphinx/domains/javascript.py:320 #: sphinx/domains/python.py:1157 msgid "class" msgstr "類別" -#: sphinx/domains/cpp.py:7736 +#: sphinx/domains/cpp.py:7735 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:7741 +#: sphinx/domains/cpp.py:7740 msgid "template parameter" msgstr "模板參數" @@ -2182,7 +2182,7 @@ msgstr "%s 的重複物件敘述,其他的實例在 %s ,使用 :noindex: 給 msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python.py:1395 +#: sphinx/domains/python.py:1402 msgid " (deprecated)" msgstr "(已棄用)" @@ -2321,12 +2321,12 @@ msgstr "無效的 numfig_format: %s" #: sphinx/domains/std.py:1102 #, python-format msgid "undefined label: %r" -msgstr "" +msgstr "未定義的標籤: %r" #: sphinx/domains/std.py:1104 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" -msgstr "" +msgstr "無法建立一個交互參照。未找到標題或說明: %r" #: sphinx/environment/__init__.py:71 msgid "new config" @@ -3101,58 +3101,58 @@ msgid "" "%(default)s)" msgstr "文件確實是在模組 __all__ 屬性中的成員。(預設值: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 +#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:706 msgid "Keyword Arguments" msgstr "關鍵字引數" -#: sphinx/ext/napoleon/docstring.py:648 +#: sphinx/ext/napoleon/docstring.py:660 msgid "Example" msgstr "範例" -#: sphinx/ext/napoleon/docstring.py:649 +#: sphinx/ext/napoleon/docstring.py:661 msgid "Examples" msgstr "範例" -#: sphinx/ext/napoleon/docstring.py:709 +#: sphinx/ext/napoleon/docstring.py:721 msgid "Notes" msgstr "備註" -#: sphinx/ext/napoleon/docstring.py:718 +#: sphinx/ext/napoleon/docstring.py:730 msgid "Other Parameters" msgstr "其他參數" -#: sphinx/ext/napoleon/docstring.py:754 +#: sphinx/ext/napoleon/docstring.py:766 msgid "Receives" msgstr "接收" -#: sphinx/ext/napoleon/docstring.py:758 +#: sphinx/ext/napoleon/docstring.py:770 msgid "References" msgstr "參照" -#: sphinx/ext/napoleon/docstring.py:790 +#: sphinx/ext/napoleon/docstring.py:802 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:794 +#: sphinx/ext/napoleon/docstring.py:806 msgid "Yields" msgstr "產出" -#: sphinx/ext/napoleon/docstring.py:964 +#: sphinx/ext/napoleon/docstring.py:976 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "無效的值集合(缺少右括號): %s" -#: sphinx/ext/napoleon/docstring.py:971 +#: sphinx/ext/napoleon/docstring.py:983 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "無效的值集合(缺少左括號): %s" -#: sphinx/ext/napoleon/docstring.py:978 +#: sphinx/ext/napoleon/docstring.py:990 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "異常的字串文本(缺少右括號): %s" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:997 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "異常的字串文本(缺少左括號): %s" @@ -3474,25 +3474,25 @@ msgstr "註腳 [%s] 未被參照。" msgid "Footnote [#] is not referenced." msgstr "註腳 [#] 未被參照。" -#: sphinx/transforms/i18n.py:323 sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:324 sphinx/transforms/i18n.py:395 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "被翻譯訊息中有不一致的註腳參照。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:366 +#: sphinx/transforms/i18n.py:367 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "被翻譯訊息中有不一致的參照。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:414 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "被翻譯訊息中有不一致的引用。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:433 +#: sphinx/transforms/i18n.py:434 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" From a1f4e972fd15466c84531eafcac4afda83a551e8 Mon Sep 17 00:00:00 2001 From: naveen <172697+naveensrinivasan@users.noreply.github.com> Date: Sun, 3 Jul 2022 01:29:18 +0000 Subject: [PATCH 08/13] chore: Included githubactions in the dependabot config This should help with keeping the GitHub actions updated on new releases. This will also help with keeping it secure. Dependabot helps in keeping the supply chain secure https://docs.github.com/en/code-security/dependabot GitHub actions up to date https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot https://github.com/ossf/scorecard/blob/main/docs/checks.md#dependency-update-tool Signed-off-by: naveen <172697+naveensrinivasan@users.noreply.github.com> --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..5ace4600a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 9e0841fd89d0e991a42c4b2ecc82fa61baf7ba4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 Jul 2022 04:27:08 +0000 Subject: [PATCH 09/13] Bump deadsnakes/action from 2.0.1 to 2.1.1 Bumps [deadsnakes/action](https://github.com/deadsnakes/action) from 2.0.1 to 2.1.1. - [Release notes](https://github.com/deadsnakes/action/releases) - [Commits](https://github.com/deadsnakes/action/compare/v2.0.1...v2.1.1) --- updated-dependencies: - dependency-name: deadsnakes/action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a3246960e..9369cbe14 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: with: python-version: ${{ matrix.python }} - name: Set up Python ${{ matrix.python }} (deadsnakes) - uses: deadsnakes/action@v2.0.1 + uses: deadsnakes/action@v2.1.1 if: "endsWith(matrix.python, '-dev')" with: python-version: ${{ matrix.python }} From 0b9f96dfe17f7b36de3174e57db8bfcff404bb5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 Jul 2022 04:27:11 +0000 Subject: [PATCH 10/13] Bump peter-evans/create-pull-request from 3 to 4 Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3 to 4. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3...v4) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/transifex.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index 0f9533a59..263622d02 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -60,7 +60,7 @@ jobs: - name: Compile message catalogs run: python utils/babel_runner.py compile - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v4 with: commit-message: 'Update message catalogs' branch: bot/pull-translations From 5c22bd86ef98cffa709ac74672c8cc10736afdf4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Jul 2022 14:05:46 +0900 Subject: [PATCH 11/13] CI: Update lock-threads to v3 --- .github/workflows/lock.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 583f64fd0..e24c068d1 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -13,8 +13,8 @@ jobs: if: github.repository_owner == 'sphinx-doc' runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v2 + - uses: dessant/lock-threads@v3 with: github-token: ${{ github.token }} - issue-lock-inactive-days: '30' - pr-lock-inactive-days: '30' + issue-inactive-days: '30' + pr-inactive-days: '30' From 5ffe1e879ea80641934ec35c7437ade79698704d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B?= <2589111+jfbu@users.noreply.github.com> Date: Sun, 3 Jul 2022 12:14:24 +0200 Subject: [PATCH 12/13] Update CHANGES for PR #10619 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index c9ba16283..facdbb089 100644 --- a/CHANGES +++ b/CHANGES @@ -24,6 +24,8 @@ Features added making whitespace issues easier to identify. * #10571: quickstart: Reduce content in the generated ``conf.py`` file. Patch by Pradyun Gedam. +* #10619: LaTeX: new ``shadowShadowColor`` and ``shadowBorderColor`` configurations + for :ref:`'sphinxsetup' ` key of :confval:`latex_elements` Bugs fixed ---------- From 2ac802fbd430513560529fda11b0dbe312787eea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B?= <2589111+jfbu@users.noreply.github.com> Date: Sun, 3 Jul 2022 14:42:26 +0200 Subject: [PATCH 13/13] Fix #10633 LaTeX: upstream framed.sty color leak bug --- CHANGES | 3 +++ sphinx/texinputs/sphinxlatexadmonitions.sty | 4 +++- sphinx/texinputs/sphinxlatexliterals.sty | 4 +++- sphinx/texinputs/sphinxlatexshadowbox.sty | 4 +++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index facdbb089..2c38017f0 100644 --- a/CHANGES +++ b/CHANGES @@ -38,6 +38,9 @@ Bugs fixed * #10566: HTML Theme: Fix enable_search_shortcuts does not work * #8686: LaTeX: Text can fall out of code-block at end of page and leave artifact on next page +* #10633: LaTeX: user injected ``\color`` commands in topic or admonition boxes may + cause color leaks in PDF due to upstream `framed.sty `_ + bug * #10579: i18n: UnboundLocalError is raised on translating raw directive * #9577, #10088: py domain: Fix warning for duplicate Python references when using ``:any:`` and autodoc. diff --git a/sphinx/texinputs/sphinxlatexadmonitions.sty b/sphinx/texinputs/sphinxlatexadmonitions.sty index 1e418c8c2..b261ad7f6 100644 --- a/sphinx/texinputs/sphinxlatexadmonitions.sty +++ b/sphinx/texinputs/sphinxlatexadmonitions.sty @@ -1,7 +1,7 @@ %% NOTICES AND ADMONITIONS % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexadmonitions.sty}[2021/01/27 admonitions] +\ProvidesFile{sphinxlatexadmonitions.sty}[2022/07/03 admonitions] % Provides support for this output mark-up from Sphinx latex writer: % @@ -103,9 +103,11 @@ \let\@listdepth\@mplistdepth \@mplistdepth\z@ \@minipagerestore \@setminipage }% + \color@begingroup % workaround to an upstream framed.sty bug } {% \par\unskip + \color@endgroup % matches the \color@begingroup \@minipagefalse \endMakeFramed \ifspx@inframed\end{minipage}\fi diff --git a/sphinx/texinputs/sphinxlatexliterals.sty b/sphinx/texinputs/sphinxlatexliterals.sty index 3aa08cffa..aa907333f 100644 --- a/sphinx/texinputs/sphinxlatexliterals.sty +++ b/sphinx/texinputs/sphinxlatexliterals.sty @@ -1,7 +1,7 @@ %% LITERAL BLOCKS % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexliterals.sty}[2022/06/30 code-blocks and parsed literals] +\ProvidesFile{sphinxlatexliterals.sty}[2022/07/03 code-blocks and parsed literals] % Provides support for this output mark-up from Sphinx latex writer: % @@ -742,11 +742,13 @@ % never reset, and it issues \@minipagefalse repeatedly (from \@setminipage). % As fancyvrb Verbatim will do \@minipagefalse itself, let's simplify things. \everypar{}% + \color@begingroup % protect against color leaks (upstream framed.sty bug) % will fetch its optional arguments if any \OriginalVerbatim } {% \endOriginalVerbatim + \color@endgroup % matches the \color@begingroup \ifspx@inframed \egroup % finish \sphinxVerbatim@ContentsBox vbox \nobreak % update page totals diff --git a/sphinx/texinputs/sphinxlatexshadowbox.sty b/sphinx/texinputs/sphinxlatexshadowbox.sty index 12d3cec09..4a013ef65 100644 --- a/sphinx/texinputs/sphinxlatexshadowbox.sty +++ b/sphinx/texinputs/sphinxlatexshadowbox.sty @@ -1,7 +1,7 @@ %% TOPIC AND CONTENTS BOXES % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexshadowbox.sty}[2022/06/30 sphinxShadowBox] +\ProvidesFile{sphinxlatexshadowbox.sty}[2022/07/03 sphinxShadowBox] % Provides support for this output mark-up from Sphinx latex writer: % @@ -138,9 +138,11 @@ \@minipagerestore \@setminipage }% + \color@begingroup % workaround upstream framed.sty bug }% {% insert the "endminipage" code \par\unskip + \color@endgroup % matches the \color@begingroup \@minipagefalse \endMakeFramed \ifspx@inframed\end{minipage}\fi