From 184f98ae9561d4a59d57e665b5fa0828cd156451 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Sun, 13 Feb 2022 12:28:52 +0100 Subject: [PATCH 01/11] LaTeX: correct footnote marks, extended with page of link target Fix #10188 Footnotes in some LaTeX environments (tables, fulllineitems for object descriptions) are gathered and appear after the environment, causing the footnote to possibly appear on a page later than some of the footnote marks referring it. With this commit, the footnote mark compares page numbers and incorporates the destination page number if it turns out to be distinct from the page where it stands. --- sphinx/texinputs/sphinx.sty | 13 +- sphinx/texinputs/sphinxpackagefootnote.sty | 157 ++++++++++++--------- sphinx/writers/latex.py | 10 +- tests/test_build_latex.py | 61 +++----- 4 files changed, 120 insertions(+), 121 deletions(-) diff --git a/sphinx/texinputs/sphinx.sty b/sphinx/texinputs/sphinx.sty index 6c9f1606e..1f7eb1bd0 100644 --- a/sphinx/texinputs/sphinx.sty +++ b/sphinx/texinputs/sphinx.sty @@ -298,18 +298,11 @@ %% FOOTNOTES % % Support scopes for footnote numbering +% This is currently stepped at each input file \newcounter{sphinxscope} \newcommand{\sphinxstepscope}{\stepcounter{sphinxscope}} -% Some footnotes are multiply referred-to. For unique hypertarget in pdf, -% we need an additional counter. It is called "sphinxexplicit" for legacy -% reasons as "explicitly" numbered footnotes may be multiply referred-to. -\newcounter{sphinxexplicit} -\newcommand{\sphinxstepexplicit}{\stepcounter{sphinxexplicit}} -% Some babel/polyglossia languages fiddle with \@arabic, so let's be extra -% cautious and redefine \thesphinxscope with \number not \@arabic. -% Memo: we expect some subtle redefinition of \thesphinxscope to be a part of page -% scoping for footnotes, when we shall implement it. -\renewcommand{\thesphinxscope}{\number\value{sphinxscope}.\number\value{sphinxexplicit}} +% We ensure \thesphinxscope expands to digits tokens, independently of language +\renewcommand{\thesphinxscope}{\number\value{sphinxscope}} \newcommand\sphinxthefootnotemark[2]{% % this is used to make reference to an explicitly numbered footnote not on same page % #1=label of footnote text, #2=page number where footnote text was printed diff --git a/sphinx/texinputs/sphinxpackagefootnote.sty b/sphinx/texinputs/sphinxpackagefootnote.sty index a6071cf10..a43034e80 100644 --- a/sphinx/texinputs/sphinxpackagefootnote.sty +++ b/sphinx/texinputs/sphinxpackagefootnote.sty @@ -1,27 +1,37 @@ \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{sphinxpackagefootnote}% - [2021/02/04 v1.1d footnotehyper adapted to sphinx (Sphinx team)] -% Provides support for this output mark-up from Sphinx latex writer: -% - footnote environment -% - savenotes environment (table templates) -% - \sphinxfootnotemark -% + [2022/02/12 v4.5.0 Sphinx custom footnotehyper package (Sphinx team)] %% %% Package: sphinxpackagefootnote %% Version: based on footnotehyper.sty 2021/02/04 v1.1d -%% as available at https://www.ctan.org/pkg/footnotehyper +%% https://www.ctan.org/pkg/footnotehyper %% License: the one applying to Sphinx %% -%% Refer to the PDF documentation at https://www.ctan.org/pkg/footnotehyper for -%% the code comments. +% Provides support for footnote mark-up from Sphinx latex writer: +% - "footnote" and "footnotetext" environments allowing verbatim material +% - "savenotes" environment for wrapping environments, such as for tables +% which have problems with LaTeX footnotes +% - hyperlinks +% +% Sphinx uses exclusively this mark-up for footnotes: +% - \begin{footnote}[N] +% - \begin{footnotetext}[N] +% - \sphinxfootnotemark[N] +% where N is a number. +% +%% Some small differences from upstream footnotehyper.sty: +%% - a tabulary compatibility layer (partial but enough for Sphinx), +%% - usage of \spx@opt@BeforeFootnote +%% - usage of \sphinxunactivateextrasandspace from sphinx.sty, +%% - \sphinxlongtablepatch %% -%% Differences: -%% 1. a partial tabulary compatibility layer added (enough for Sphinx mark-up), -%% 2. use of \spx@opt@BeforeFootnote from sphinx.sty, -%% 3. use of \sphinxunactivateextrasandspace from sphinx.sty, -%% 4. macro definition \sphinxfootnotemark, -%% 5. macro definition \sphinxlongtablepatch -%% 6. replaced some \undefined by \@undefined +%% Starting with Sphinx v4.5.0, inherited footnotehyper macros for +%% footnote/footnotetext receive some Sphinx specific extras to +%% implement "intelligent" footnote marks checking page numbers. +%% +%% All footnotes output from Sphinx are hyperlinked. With "savenotes" +%% footnotes may appear on page distinct from footnote mark, the latter +%% will indicate page number of the footnote. \newif\iffootnotehyperparse\footnotehyperparsetrue \DeclareOption*{\PackageWarning{sphinxpackagefootnote}{Option `\CurrentOption' is unknown}}% \ProcessOptions\relax @@ -42,6 +52,7 @@ \let\footnotetext \FNH@footnotetext \let\endfootnote \FNH@endfntext \let\endfootnotetext\FNH@endfntext + % always True branch taken with Sphinx \@ifpackageloaded{hyperref} {\ifHy@hyperfootnotes \let\FNH@H@@footnotetext\H@@footnotetext @@ -175,12 +186,33 @@ }% \def\FNH@footnoteenv@i[#1]{% \begingroup + % This legacy code from LaTeX core restricts #1 to be digits only + % This limitation could be lifted but legacy Sphinx anyhow obeys it \csname c@\@mpfn\endcsname #1\relax \unrestored@protected@xdef\@thefnmark{\thempfn}% \endgroup +% -- Sphinx specific: + \global\let\spx@saved@thefnmark\@thefnmark + % this is done to access robustly the page number where footnote mark is + \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% + % if possible, compare page numbers of mark and footnote to define \@thefnmark + \ltx@ifundefined{r@\thesphinxscope.footnote.#1}% + {}% one more latex run is needed + {\sphinx@xdef@thefnmark{#1}}% check of page numbers possible +% -- \@footnotemark \def\FNH@endfntext@fntext{\@footnotetext}% +% -- Sphinx specific: + % we need to reset \@thefnmark as it is used by \FNH@startfntext via + % \FNH@startnote to set \@currentlabel which will be used by \label + \global\let\@thefnmark\spx@saved@thefnmark +% -- \FNH@startfntext +% -- again Sphinx specific + % \@currentlabel as needed by \label got set by \FNH@startnote + % insert this at start of footnote text then the label will allow + % to robustly know on which page the footnote text ends up + \phantomsection\label{\thesphinxscope.footnote.#1}% }% \def\FNH@footnotetext{% \ifx\@currenvir\FNH@footnotetext@envname @@ -207,6 +239,8 @@ \def\FNH@endfntext@fntext{\FNH@H@@footnotetext}% \fi \FNH@startfntext +% -- Sphinx specific addition + \phantomsection\label{\thesphinxscope.footnote.#1}% }% \def\FNH@startfntext{% \setbox\z@\vbox\bgroup @@ -329,60 +363,51 @@ }% % % some extras for Sphinx : -% \sphinxfootnotemark: usable in section titles and silently removed from TOCs. +% \sphinxfootnotemark: +% - if in section titles will auto-remove itself from TOC \def\sphinxfootnotemark [#1]% {\ifx\thepage\relax\else\sphinxfootref{#1}\fi}% -% \sphinxfootref: -% - \spx@opt@BeforeFootnote is from BeforeFootnote sphinxsetup option -% - \ref: -% the latex.py writer inserts a \phantomsection\label{.} -% whenever -% - the footnote was explicitly numbered in sources, -% - or it was in restrained context and is rendered using footnotetext -% -% These are the two types of footnotes that \sphinxfootnotemark must -% handle. But for explicitly numbered footnotes the same number -% can be found in document. So a secondary part in is updated -% at each novel such footnote to know what is the target from then on -% for \sphinxfootnotemark and already encountered [1], or [2],... -% -% LaTeX package varioref is not supported by hyperref (from its doc: "There -% are too many problems with varioref. Nobody has time to sort them out. -% Therefore this package is now unsupported.") So we will simply use our own -% macros to access the page number of footnote text and decide whether to print -% it. \pagename is internationalized by latex-babel. -\def\spx@thefnmark#1#2{% - % #1=label for reference, #2=page where footnote was printed - \ifx\spx@tempa\spx@tempb - % same page - #1% - \else - \sphinxthefootnotemark{#1}{#2}% - \fi -}% -\def\sphinxfootref@get #1#2#3#4#5\relax{% - \def\sphinxfootref@label{#1}% - \def\sphinxfootref@page {#2}% - \def\sphinxfootref@Href {#4}% -}% -\protected\def\sphinxfootref#1{% #1 always explicit number in Sphinx usage - \spx@opt@BeforeFootnote - \ltx@ifundefined{r@\thesphinxscope.#1}% - {\gdef\@thefnmark{?}\H@@footnotemark}% - {\expandafter\expandafter\expandafter\sphinxfootref@get - \csname r@\thesphinxscope.#1\endcsname\relax - \edef\spx@tempa{\thepage}\edef\spx@tempb{\sphinxfootref@page}% - \protected@xdef\@thefnmark{\spx@thefnmark{\sphinxfootref@label}{\sphinxfootref@page}}% - \let\spx@@makefnmark\@makefnmark - \def\@makefnmark{% - \hyper@linkstart{link}{\sphinxfootref@Href}% - \spx@@makefnmark - \hyper@linkend +\newcounter{sphinxfootnotemark} +\renewcommand\thesphinxfootnotemark{\number\value{sphinxfootnotemark}} +% - compares page number of footnote mark versus the one of footnote text +\def\sphinx@xdef@thefnmark#1{% + \expandafter\expandafter\expandafter\sphinx@footref@get + \csname r@\thesphinxscope.footnote.#1\endcsname\relax + \expandafter\expandafter\expandafter\sphinx@footmark@getpage + \csname r@footnotemark.\thesphinxfootnotemark\endcsname\thepage\relax + \protected@xdef\@thefnmark{% + \ifx\spx@footmarkpage\spx@footrefpage + \spx@footreflabel + \else + % the macro \sphinxthefootnotemark is in sphinx.sty + \sphinxthefootnotemark{\spx@footreflabel}{\spx@footrefpage}% + \fi }% - \H@@footnotemark - \let\@makefnmark\spx@@makefnmark - }% }% +\def\sphinx@footref@get #1#2#3#4#5\relax{% + \def\spx@footreflabel{#1}% + \def\spx@footrefpage {#2}% + \def\spx@footrefHref {#4}% +}% +\def\sphinx@footmark@getpage #1#2#3\relax{% + \def\spx@footmarkpage{#2}% +}% +\protected\def\sphinxfootref#1{% #1 always is explicit number in Sphinx + \spx@opt@BeforeFootnote + \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% + \let\spx@saved@makefnmark\@makefnmark + \ltx@ifundefined{r@\thesphinxscope.footnote.#1}% + {\gdef\@thefnmark{?}}% on first LaTeX run + {\sphinx@xdef@thefnmark{#1}% also defines \spx@footrefHref + \def\@makefnmark{% will be used by \H@@footnotemark + \hyper@linkstart{link}{\spx@footrefHref}% + \spx@saved@makefnmark + \hyper@linkend + }% + }% + \H@@footnotemark + \let\@makefnmark\spx@saved@makefnmark +}% \AtBeginDocument{% % let hyperref less complain \pdfstringdefDisableCommands{\def\sphinxfootnotemark [#1]{}}% diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 680f06bf5..246f52362 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -814,16 +814,14 @@ class LaTeXTranslator(SphinxTranslator): def visit_footnote(self, node: Element) -> None: self.in_footnote += 1 label = cast(nodes.label, node[0]) - if 'referred' in node: - self.body.append(r'\sphinxstepexplicit ') if self.in_parsed_literal: self.body.append(r'\begin{footnote}[%s]' % label.astext()) else: self.body.append('%' + CR) self.body.append(r'\begin{footnote}[%s]' % label.astext()) if 'referred' in node: - self.body.append(r'\phantomsection' - r'\label{\thesphinxscope.%s}%%' % label.astext() + CR) + # TODO: in future maybe output a latex macro with backrefs here + pass self.body.append(r'\sphinxAtStartFootnote' + CR) def depart_footnote(self, node: Element) -> None: @@ -1717,9 +1715,7 @@ class LaTeXTranslator(SphinxTranslator): def visit_footnotetext(self, node: Element) -> None: label = cast(nodes.label, node[0]) self.body.append('%' + CR) - self.body.append(r'\begin{footnotetext}[%s]' - r'\phantomsection\label{\thesphinxscope.%s}%%' - % (label.astext(), label.astext()) + CR) + self.body.append(r'\begin{footnotetext}[%s]' % label.astext()) self.body.append(r'\sphinxAtStartFootnote' + CR) def depart_footnotetext(self, node: Element) -> None: diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index 50b2b693a..da853d0b5 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -723,13 +723,9 @@ def test_footnote(app, status, warning): assert '\\sphinxcite{footnote:bar}' in result assert ('\\bibitem[bar]{footnote:bar}\n\\sphinxAtStartPar\ncite\n') in result assert '\\sphinxcaption{Table caption \\sphinxfootnotemark[4]' in result - assert ('\\hline%\n\\begin{footnotetext}[4]' - '\\phantomsection\\label{\\thesphinxscope.4}%\n' - '\\sphinxAtStartFootnote\n' + assert ('\\hline%\n\\begin{footnotetext}[4]\\sphinxAtStartFootnote\n' 'footnote in table caption\n%\n\\end{footnotetext}\\ignorespaces %\n' - '\\begin{footnotetext}[5]' - '\\phantomsection\\label{\\thesphinxscope.5}%\n' - '\\sphinxAtStartFootnote\n' + '\\begin{footnotetext}[5]\\sphinxAtStartFootnote\n' 'footnote in table header\n%\n\\end{footnotetext}\\ignorespaces ' '\n\\sphinxAtStartPar\n' 'VIDIOC\\_CROPCAP\n&\n\\sphinxAtStartPar\n') in result @@ -755,27 +751,19 @@ def test_reference_in_caption_and_codeblock_in_footnote(app, status, warning): assert '\\subsubsection*{The rubric title with a reference to {[}AuthorYear{]}}' in result assert ('\\chapter{The section with a reference to \\sphinxfootnotemark[6]}\n' '\\label{\\detokenize{index:the-section-with-a-reference-to}}' - '%\n\\begin{footnotetext}[6]' - '\\phantomsection\\label{\\thesphinxscope.6}%\n' - '\\sphinxAtStartFootnote\n' + '%\n\\begin{footnotetext}[6]\\sphinxAtStartFootnote\n' 'Footnote in section\n%\n\\end{footnotetext}') in result assert ('\\caption{This is the figure caption with a footnote to ' '\\sphinxfootnotemark[8].}\\label{\\detokenize{index:id35}}\\end{figure}\n' - '%\n\\begin{footnotetext}[8]' - '\\phantomsection\\label{\\thesphinxscope.8}%\n' - '\\sphinxAtStartFootnote\n' + '%\n\\begin{footnotetext}[8]\\sphinxAtStartFootnote\n' 'Footnote in caption\n%\n\\end{footnotetext}') in result assert ('\\sphinxcaption{footnote \\sphinxfootnotemark[9] in ' 'caption of normal table}\\label{\\detokenize{index:id36}}') in result assert ('\\caption{footnote \\sphinxfootnotemark[10] ' 'in caption \\sphinxfootnotemark[11] of longtable\\strut}') in result - assert ('\\endlastfoot\n%\n\\begin{footnotetext}[10]' - '\\phantomsection\\label{\\thesphinxscope.10}%\n' - '\\sphinxAtStartFootnote\n' + assert ('\\endlastfoot\n%\n\\begin{footnotetext}[10]\\sphinxAtStartFootnote\n' 'Foot note in longtable\n%\n\\end{footnotetext}\\ignorespaces %\n' - '\\begin{footnotetext}[11]' - '\\phantomsection\\label{\\thesphinxscope.11}%\n' - '\\sphinxAtStartFootnote\n' + '\\begin{footnotetext}[11]\\sphinxAtStartFootnote\n' 'Second footnote in caption of longtable\n') in result assert ('This is a reference to the code\\sphinxhyphen{}block in the footnote:\n' '{\\hyperref[\\detokenize{index:codeblockinfootnote}]' @@ -795,13 +783,13 @@ def test_footnote_referred_multiple_times(app, status, warning): print(status.getvalue()) print(warning.getvalue()) - assert ('Explicitly numbered footnote: \\sphinxstepexplicit %\n' - '\\begin{footnote}[100]\\phantomsection\\label{\\thesphinxscope.100}%\n' + assert ('Explicitly numbered footnote: %\n' + '\\begin{footnote}[100]' '\\sphinxAtStartFootnote\nNumbered footnote\n%\n' '\\end{footnote} \\sphinxfootnotemark[100]\n' in result) - assert ('Named footnote: \\sphinxstepexplicit %\n' - '\\begin{footnote}[13]\\phantomsection\\label{\\thesphinxscope.13}%\n' + assert ('Named footnote: %\n' + '\\begin{footnote}[13]' '\\sphinxAtStartFootnote\nNamed footnote\n%\n' '\\end{footnote} \\sphinxfootnotemark[13]\n' in result) @@ -837,9 +825,7 @@ def test_latex_show_urls_is_inline(app, status, warning): assert '\\sphinxhref{http://sphinx-doc.org/}{Sphinx} (http://sphinx\\sphinxhyphen{}doc.org/)' in result assert ('Third footnote: %\n\\begin{footnote}[3]\\sphinxAtStartFootnote\n' 'Third \\sphinxfootnotemark[4]\n%\n\\end{footnote}%\n' - '\\begin{footnotetext}[4]' - '\\phantomsection\\label{\\thesphinxscope.4}%\n' - '\\sphinxAtStartFootnote\n' + '\\begin{footnotetext}[4]\\sphinxAtStartFootnote\n' 'Footnote inside footnote\n%\n\\end{footnotetext}\\ignorespaces') in result assert ('Fourth footnote: %\n\\begin{footnote}[5]\\sphinxAtStartFootnote\n' 'Fourth\n%\n\\end{footnote}\n') in result @@ -849,8 +835,12 @@ def test_latex_show_urls_is_inline(app, status, warning): '(http://sphinx\\sphinxhyphen{}doc.org/)}\n' '\\sphinxAtStartPar\nDescription' in result) assert ('\\sphinxlineitem{Footnote in term \\sphinxfootnotemark[7]}%\n' - '\\begin{footnotetext}[7]\\phantomsection\\label{\\thesphinxscope.7}%\n' - '\\sphinxAtStartFootnote\n' + '\\begin{footnotetext}[7]\\sphinxAtStartFootnote\n') + assert ('\\sphinxlineitem{\\sphinxhref{http://sphinx-doc.org/}{URL in term} ' + '(http://sphinx\\sphinxhyphen{}doc.org/)}\n' + '\\sphinxAtStartPar\nDescription' in result) + assert ('\\sphinxlineitem{Footnote in term \\sphinxfootnotemark[7]}%\n' + '\\begin{footnotetext}[7]\\sphinxAtStartFootnote\n' 'Footnote in term\n%\n\\end{footnotetext}\\ignorespaces ' '\n\\sphinxAtStartPar\nDescription') in result assert ('\\sphinxlineitem{\\sphinxhref{http://sphinx-doc.org/}{Term in deflist} ' @@ -893,9 +883,7 @@ def test_latex_show_urls_is_footnote(app, status, warning): '\\sphinxnolinkurl{http://sphinx-doc.org/}\n%\n\\end{footnote}') in result assert ('Third footnote: %\n\\begin{footnote}[6]\\sphinxAtStartFootnote\n' 'Third \\sphinxfootnotemark[7]\n%\n\\end{footnote}%\n' - '\\begin{footnotetext}[7]' - '\\phantomsection\\label{\\thesphinxscope.7}%\n' - '\\sphinxAtStartFootnote\n' + '\\begin{footnotetext}[7]\\sphinxAtStartFootnote\n' 'Footnote inside footnote\n%\n' '\\end{footnotetext}\\ignorespaces') in result assert ('Fourth footnote: %\n\\begin{footnote}[8]\\sphinxAtStartFootnote\n' @@ -905,18 +893,18 @@ def test_latex_show_urls_is_footnote(app, status, warning): '\\sphinxnolinkurl{http://sphinx-doc.org/~test/}\n%\n\\end{footnote}') in result assert ('\\sphinxlineitem{\\sphinxhref{http://sphinx-doc.org/}' '{URL in term}\\sphinxfootnotemark[10]}%\n' - '\\begin{footnotetext}[10]\\phantomsection\\label{\\thesphinxscope.10}%\n' + '\\begin{footnotetext}[10]' '\\sphinxAtStartFootnote\n' '\\sphinxnolinkurl{http://sphinx-doc.org/}\n%\n' '\\end{footnotetext}\\ignorespaces \n\\sphinxAtStartPar\nDescription') in result assert ('\\sphinxlineitem{Footnote in term \\sphinxfootnotemark[12]}%\n' - '\\begin{footnotetext}[12]\\phantomsection\\label{\\thesphinxscope.12}%\n' + '\\begin{footnotetext}[12]' '\\sphinxAtStartFootnote\n' 'Footnote in term\n%\n\\end{footnotetext}\\ignorespaces ' '\n\\sphinxAtStartPar\nDescription') in result assert ('\\sphinxlineitem{\\sphinxhref{http://sphinx-doc.org/}{Term in deflist}' '\\sphinxfootnotemark[11]}%\n' - '\\begin{footnotetext}[11]\\phantomsection\\label{\\thesphinxscope.11}%\n' + '\\begin{footnotetext}[11]' '\\sphinxAtStartFootnote\n' '\\sphinxnolinkurl{http://sphinx-doc.org/}\n%\n' '\\end{footnotetext}\\ignorespaces \n\\sphinxAtStartPar\nDescription') in result @@ -955,9 +943,7 @@ def test_latex_show_urls_is_no(app, status, warning): assert '\\sphinxhref{http://sphinx-doc.org/}{Sphinx}' in result assert ('Third footnote: %\n\\begin{footnote}[3]\\sphinxAtStartFootnote\n' 'Third \\sphinxfootnotemark[4]\n%\n\\end{footnote}%\n' - '\\begin{footnotetext}[4]' - '\\phantomsection\\label{\\thesphinxscope.4}%\n' - '\\sphinxAtStartFootnote\n' + '\\begin{footnotetext}[4]\\sphinxAtStartFootnote\n' 'Footnote inside footnote\n%\n\\end{footnotetext}\\ignorespaces') in result assert ('Fourth footnote: %\n\\begin{footnote}[5]\\sphinxAtStartFootnote\n' 'Fourth\n%\n\\end{footnote}\n') in result @@ -965,8 +951,7 @@ def test_latex_show_urls_is_no(app, status, warning): assert ('\\sphinxlineitem{\\sphinxhref{http://sphinx-doc.org/}{URL in term}}\n' '\\sphinxAtStartPar\nDescription') in result assert ('\\sphinxlineitem{Footnote in term \\sphinxfootnotemark[7]}%\n' - '\\begin{footnotetext}[7]\\phantomsection\\label{\\thesphinxscope.7}%\n' - '\\sphinxAtStartFootnote\n' + '\\begin{footnotetext}[7]\\sphinxAtStartFootnote\n' 'Footnote in term\n%\n\\end{footnotetext}\\ignorespaces ' '\n\\sphinxAtStartPar\nDescription') in result assert ('\\sphinxlineitem{\\sphinxhref{http://sphinx-doc.org/}{Term in deflist}}' From 33cc980cecb8ba8edeea6763ec19855ad0326897 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Mon, 14 Feb 2022 10:34:12 +0100 Subject: [PATCH 02/11] LaTeX: comment out footnote mark enhancement for footnote environment Page detection left to apply as was case before this PR, i.e. only for the \sphinxfootnotemark mark-up, which means either in combination with footnotetext environment, or for multiply referred-to footnotes and the extra footnote marks additional to the initial one. This is to avoid a problem with each LaTeX pass in certain circumstances modifying the aux file, and latexmk consequently complaining. refs: https://github.com/sphinx-doc/sphinx/pull/10191#issuecomment-1038807448 --- sphinx/texinputs/sphinxpackagefootnote.sty | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/sphinx/texinputs/sphinxpackagefootnote.sty b/sphinx/texinputs/sphinxpackagefootnote.sty index a43034e80..7df49b145 100644 --- a/sphinx/texinputs/sphinxpackagefootnote.sty +++ b/sphinx/texinputs/sphinxpackagefootnote.sty @@ -192,26 +192,30 @@ \unrestored@protected@xdef\@thefnmark{\thempfn}% \endgroup % -- Sphinx specific: - \global\let\spx@saved@thefnmark\@thefnmark - % this is done to access robustly the page number where footnote mark is - \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% - % if possible, compare page numbers of mark and footnote to define \@thefnmark - \ltx@ifundefined{r@\thesphinxscope.footnote.#1}% - {}% one more latex run is needed - {\sphinx@xdef@thefnmark{#1}}% check of page numbers possible +% currently commented out due to +% https://github.com/sphinx-doc/sphinx/pull/10191#issuecomment-1038807448 + % \global\let\spx@saved@thefnmark\@thefnmark + % % this is done to access robustly the page number where footnote mark is + % \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% + % % if possible, compare page numbers of mark and footnote to define \@thefnmark + % \ltx@ifundefined{r@\thesphinxscope.footnote.#1}% + % {}% one more latex run is needed + % {\sphinx@xdef@thefnmark{#1}}% check of page numbers possible % -- \@footnotemark \def\FNH@endfntext@fntext{\@footnotetext}% % -- Sphinx specific: % we need to reset \@thefnmark as it is used by \FNH@startfntext via % \FNH@startnote to set \@currentlabel which will be used by \label - \global\let\@thefnmark\spx@saved@thefnmark +% currently commented out (see above) + % \global\let\@thefnmark\spx@saved@thefnmark % -- \FNH@startfntext % -- again Sphinx specific % \@currentlabel as needed by \label got set by \FNH@startnote % insert this at start of footnote text then the label will allow % to robustly know on which page the footnote text ends up +% currently only of use for extra footnote marks so in case footnote multiply referred \phantomsection\label{\thesphinxscope.footnote.#1}% }% \def\FNH@footnotetext{% From a1d91277259cb25409b71baecf9df79ab9ee85ce Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Mon, 14 Feb 2022 10:41:45 +0100 Subject: [PATCH 03/11] LaTeX: avoid a footnote in a signature line executing \label twice The signature may contain an auto-generated footnote, which now always sets a label (formerly this happened only for multiply referred-to footnotes so the problem did not arise). --- sphinx/texinputs/sphinxlatexobjects.sty | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sphinx/texinputs/sphinxlatexobjects.sty b/sphinx/texinputs/sphinxlatexobjects.sty index 85dd53a84..1b497111d 100644 --- a/sphinx/texinputs/sphinxlatexobjects.sty +++ b/sphinx/texinputs/sphinxlatexobjects.sty @@ -137,7 +137,11 @@ \pysigadjustitemsep } \newcommand{\pysiglinewithargsret}[3]{% + % as #1 may contain a footnote using \label we need to make \label + % a no-op here to avoid LaTeX complaining about duplicates +\let\spx@label\label\let\label\@gobble \settowidth{\py@argswidth}{#1\sphinxcode{(}}% +\let\label\spx@label \py@argswidth=\dimexpr\linewidth+\labelwidth-\py@argswidth\relax\relax \item[{#1\sphinxcode{(}\py@sigparams{#2}{#3}\strut}] \pysigadjustitemsep From 2b6e42a741ef9d61d057c9c936f06f305b367946 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Mon, 14 Feb 2022 18:21:14 +0100 Subject: [PATCH 04/11] LaTeX: workaround a memoir class compatibility issue --- sphinx/texinputs/sphinxpackagefootnote.sty | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/sphinx/texinputs/sphinxpackagefootnote.sty b/sphinx/texinputs/sphinxpackagefootnote.sty index 7df49b145..6a7884f83 100644 --- a/sphinx/texinputs/sphinxpackagefootnote.sty +++ b/sphinx/texinputs/sphinxpackagefootnote.sty @@ -194,6 +194,9 @@ % -- Sphinx specific: % currently commented out due to % https://github.com/sphinx-doc/sphinx/pull/10191#issuecomment-1038807448 +% Memo: memoir class detection of successive footnote marks (to separate them +% by commas) is broken by \refstepcounter and also by \label, and some +% mitigation such as in \sphinxfootref would be needed % \global\let\spx@saved@thefnmark\@thefnmark % % this is done to access robustly the page number where footnote mark is % \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% @@ -394,16 +397,20 @@ \def\spx@footrefHref {#4}% }% \def\sphinx@footmark@getpage #1#2#3\relax{% - \def\spx@footmarkpage{#2}% + \edef\spx@footmarkpage{#2}% }% \protected\def\sphinxfootref#1{% #1 always is explicit number in Sphinx \spx@opt@BeforeFootnote - \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% + % each of \refstepcounter and \label interferes with memoir class detection + % of successive footnote marks, so we move them to inside \@makefnmark \let\spx@saved@makefnmark\@makefnmark \ltx@ifundefined{r@\thesphinxscope.footnote.#1}% - {\gdef\@thefnmark{?}}% on first LaTeX run + {\gdef\@thefnmark{?}% on first LaTeX run + \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% + }% {\sphinx@xdef@thefnmark{#1}% also defines \spx@footrefHref \def\@makefnmark{% will be used by \H@@footnotemark + \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% \hyper@linkstart{link}{\spx@footrefHref}% \spx@saved@makefnmark \hyper@linkend From 0b22f5b3b746669bea788610808a68be0e827c0f Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Sat, 16 Apr 2022 19:34:24 +0200 Subject: [PATCH 05/11] Update CHANGES for PR #10191 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 9aab021a1..e192045e7 100644 --- a/CHANGES +++ b/CHANGES @@ -86,6 +86,8 @@ Bugs fixed bulding texinfo document * #10000: LaTeX: glossary terms with common definition are rendered with too much vertical whitespace +* #10188: LaTeX: alternating multiply referred footnotes produce a ``?`` in + pdf output * #10318: ``:prepend:`` option of :rst:dir:`literalinclude` directive does not work with ``:dedent:`` option From ec0c13c26dfa33a9caa21cc6ea3186da08c7e094 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 16 Apr 2022 19:02:38 +0100 Subject: [PATCH 06/11] Don't use deprecated `setup.py build_sphinx` --- doc/conf.py | 4 ++-- setup.cfg | 3 --- tox.ini | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index af84b2f5d..8da5f4b16 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -148,9 +148,9 @@ def linkify_issues_in_changelog(app, docname, source): # this path trickery is needed because this script can # be invoked with different working directories: # * running make in docs/ - # * running python setup.py build_sphinx in the repo root dir + # * running tox -e docs in the repo root dir - with open(changelog_path) as f: + with open(changelog_path, encoding="utf-8") as f: changelog = f.read() def linkify(match): diff --git a/setup.cfg b/setup.cfg index 598b4e823..aa8d8409a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,9 +9,6 @@ tag_date = true release = egg_info -Db '' upload = upload --sign --identity=36580288 -[build_sphinx] -warning-is-error = 1 - [extract_messages] mapping_file = babel.cfg output_file = sphinx/locale/sphinx.pot diff --git a/tox.ini b/tox.ini index f0afd779b..ca5409443 100644 --- a/tox.ini +++ b/tox.ini @@ -83,7 +83,7 @@ description = extras = docs commands = - python setup.py build_sphinx {posargs} + python -m sphinx -M html ./doc ./build/sphinx -W [testenv:docslint] basepython = python3 From 1e443bdcb4fafd77c5ca3b91def00857900dceef Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 16 Apr 2022 19:35:20 +0100 Subject: [PATCH 07/11] Move `compile_catalog_plusjs` to `utils/` --- setup.py | 117 ------------------------------------------ utils/babel_runner.py | 109 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 109 insertions(+), 117 deletions(-) create mode 100644 utils/babel_runner.py diff --git a/setup.py b/setup.py index ccadd59f4..860aae57e 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,4 @@ -import os import sys -from io import StringIO from setuptools import find_packages, setup @@ -57,120 +55,6 @@ extras_require = { ], } -# Provide a "compile_catalog" command that also creates the translated -# JavaScript files if Babel is available. - -cmdclass = {} - - -class Tee: - def __init__(self, stream): - self.stream = stream - self.buffer = StringIO() - - def write(self, s): - self.stream.write(s) - self.buffer.write(s) - - def flush(self): - self.stream.flush() - - -try: - from json import dump - - from babel.messages.frontend import compile_catalog - from babel.messages.pofile import read_po -except ImportError: - pass -else: - class compile_catalog_plusjs(compile_catalog): - """ - An extended command that writes all message strings that occur in - JavaScript files to a JavaScript file along with the .mo file. - - Unfortunately, babel's setup command isn't built very extensible, so - most of the run() code is duplicated here. - """ - - def run(self): - try: - sys.stderr = Tee(sys.stderr) - compile_catalog.run(self) - finally: - if sys.stderr.buffer.getvalue(): - print("Compiling failed.") - sys.exit(1) - - if isinstance(self.domain, list): - for domain in self.domain: - self._run_domain_js(domain) - else: - self._run_domain_js(self.domain) - - def _run_domain_js(self, domain): - po_files = [] - js_files = [] - - if not self.input_file: - if self.locale: - po_files.append((self.locale, - os.path.join(self.directory, self.locale, - 'LC_MESSAGES', - domain + '.po'))) - js_files.append(os.path.join(self.directory, self.locale, - 'LC_MESSAGES', - domain + '.js')) - else: - for locale in os.listdir(self.directory): - po_file = os.path.join(self.directory, locale, - 'LC_MESSAGES', - domain + '.po') - if os.path.exists(po_file): - po_files.append((locale, po_file)) - js_files.append(os.path.join(self.directory, locale, - 'LC_MESSAGES', - domain + '.js')) - else: - po_files.append((self.locale, self.input_file)) - if self.output_file: - js_files.append(self.output_file) - else: - js_files.append(os.path.join(self.directory, self.locale, - 'LC_MESSAGES', - domain + '.js')) - - for js_file, (locale, po_file) in zip(js_files, po_files): - with open(po_file, encoding='utf8') as infile: - catalog = read_po(infile, locale) - - if catalog.fuzzy and not self.use_fuzzy: - continue - - self.log.info('writing JavaScript strings in catalog %r to %r', - po_file, js_file) - - jscatalog = {} - for message in catalog: - if any(x[0].endswith(('.js', '.js_t', '.html')) - for x in message.locations): - msgid = message.id - if isinstance(msgid, (list, tuple)): - msgid = msgid[0] - jscatalog[msgid] = message.string - - with open(js_file, 'wt', encoding='utf8') as outfile: - outfile.write('Documentation.addTranslations(') - dump({ - 'messages': jscatalog, - 'plural_expr': catalog.plural_expr, - 'locale': str(catalog.locale) - }, outfile, sort_keys=True, indent=4) - outfile.write(');') - - cmdclass['compile_catalog'] = compile_catalog_plusjs - - setup( name='Sphinx', version=sphinx.__version__, @@ -246,5 +130,4 @@ setup( python_requires=">=3.6", install_requires=install_requires, extras_require=extras_require, - cmdclass=cmdclass, ) diff --git a/utils/babel_runner.py b/utils/babel_runner.py new file mode 100644 index 000000000..7cabeb47b --- /dev/null +++ b/utils/babel_runner.py @@ -0,0 +1,109 @@ +from io import StringIO +from json import dump +import os +import sys + +from babel.messages.frontend import compile_catalog +from babel.messages.pofile import read_po + +# Provide a "compile_catalog" command that also creates the translated +# JavaScript files if Babel is available. + + +class Tee: + def __init__(self, stream): + self.stream = stream + self.buffer = StringIO() + + def write(self, s): + self.stream.write(s) + self.buffer.write(s) + + def flush(self): + self.stream.flush() + + +class compile_catalog_plusjs(compile_catalog): + """ + An extended command that writes all message strings that occur in + JavaScript files to a JavaScript file along with the .mo file. + + Unfortunately, babel's setup command isn't built very extensible, so + most of the run() code is duplicated here. + """ + + def run(self): + try: + sys.stderr = Tee(sys.stderr) + compile_catalog.run(self) + finally: + if sys.stderr.buffer.getvalue(): + print("Compiling failed.") + sys.exit(1) + + if isinstance(self.domain, list): + for domain in self.domain: + self._run_domain_js(domain) + else: + self._run_domain_js(self.domain) + + def _run_domain_js(self, domain): + po_files = [] + js_files = [] + + if not self.input_file: + if self.locale: + po_files.append((self.locale, + os.path.join(self.directory, self.locale, + 'LC_MESSAGES', + domain + '.po'))) + js_files.append(os.path.join(self.directory, self.locale, + 'LC_MESSAGES', + domain + '.js')) + else: + for locale in os.listdir(self.directory): + po_file = os.path.join(self.directory, locale, + 'LC_MESSAGES', + domain + '.po') + if os.path.exists(po_file): + po_files.append((locale, po_file)) + js_files.append(os.path.join(self.directory, locale, + 'LC_MESSAGES', + domain + '.js')) + else: + po_files.append((self.locale, self.input_file)) + if self.output_file: + js_files.append(self.output_file) + else: + js_files.append(os.path.join(self.directory, self.locale, + 'LC_MESSAGES', + domain + '.js')) + + for js_file, (locale, po_file) in zip(js_files, po_files): + with open(po_file, encoding='utf8') as infile: + catalog = read_po(infile, locale) + + if catalog.fuzzy and not self.use_fuzzy: + continue + + self.log.info('writing JavaScript strings in catalog %r to %r', + po_file, js_file) + + jscatalog = {} + for message in catalog: + if any(x[0].endswith(('.js', '.js_t', '.html')) + for x in message.locations): + msgid = message.id + if isinstance(msgid, (list, tuple)): + msgid = msgid[0] + jscatalog[msgid] = message.string + + with open(js_file, 'wt', encoding='utf8') as outfile: + outfile.write('Documentation.addTranslations(') + dump({ + 'messages': jscatalog, + 'plural_expr': catalog.plural_expr, + 'locale': str(catalog.locale) + }, outfile, sort_keys=True, indent=4) + outfile.write(');') + From 0db2817328909edb67fe4c7949aa8900d5f5c8b9 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 16 Apr 2022 20:55:57 +0100 Subject: [PATCH 08/11] Add command runners --- setup.cfg | 14 ----- utils/babel_runner.py | 142 ++++++++++++++++++++++++++++++------------ 2 files changed, 102 insertions(+), 54 deletions(-) diff --git a/setup.cfg b/setup.cfg index 598b4e823..ef051eef2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -12,20 +12,6 @@ upload = upload --sign --identity=36580288 [build_sphinx] warning-is-error = 1 -[extract_messages] -mapping_file = babel.cfg -output_file = sphinx/locale/sphinx.pot -keywords = _ __ l_ lazy_gettext - -[update_catalog] -input_file = sphinx/locale/sphinx.pot -domain = sphinx -output_dir = sphinx/locale/ - -[compile_catalog] -domain = sphinx -directory = sphinx/locale/ - [flake8] max-line-length = 95 ignore = E116,E241,E251,E741,W504,I101 diff --git a/utils/babel_runner.py b/utils/babel_runner.py index 7cabeb47b..514ce9eb5 100644 --- a/utils/babel_runner.py +++ b/utils/babel_runner.py @@ -1,29 +1,32 @@ -from io import StringIO -from json import dump +"""Run babel for translations. + +Usage: + +babel_runner.py extract + Extract messages from the source code and update the ".pot" template file. + +babel_runner.py update + Update all language catalogues in "sphinx/locale//LC_MESSAGES" + with the current messages in the template file. + +babel_runner.py compile + Compile the ".po" catalogue files to ".mo" and ".js" files. +""" + +import json +import logging import os import sys -from babel.messages.frontend import compile_catalog +from babel.messages.frontend import compile_catalog, extract_messages, update_catalog from babel.messages.pofile import read_po -# Provide a "compile_catalog" command that also creates the translated -# JavaScript files if Babel is available. +import sphinx + +ROOT = os.path.realpath(os.path.join(os.path.abspath(__file__), "..", "..")) -class Tee: - def __init__(self, stream): - self.stream = stream - self.buffer = StringIO() - - def write(self, s): - self.stream.write(s) - self.buffer.write(s) - - def flush(self): - self.stream.flush() - - -class compile_catalog_plusjs(compile_catalog): +class compile_catalog_plusjs(compile_catalog): # NoQA """ An extended command that writes all message strings that occur in JavaScript files to a JavaScript file along with the .mo file. @@ -33,19 +36,12 @@ class compile_catalog_plusjs(compile_catalog): """ def run(self): - try: - sys.stderr = Tee(sys.stderr) - compile_catalog.run(self) - finally: - if sys.stderr.buffer.getvalue(): - print("Compiling failed.") - sys.exit(1) + if super().run(): + print("Compiling failed.", file=sys.stderr) + raise SystemExit(2) - if isinstance(self.domain, list): - for domain in self.domain: - self._run_domain_js(domain) - else: - self._run_domain_js(self.domain) + for domain in self.domain: + self._run_domain_js(domain) def _run_domain_js(self, domain): po_files = [] @@ -86,7 +82,7 @@ class compile_catalog_plusjs(compile_catalog): if catalog.fuzzy and not self.use_fuzzy: continue - self.log.info('writing JavaScript strings in catalog %r to %r', + self.log.info('writing JavaScript strings in catalog %s to %s', po_file, js_file) jscatalog = {} @@ -98,12 +94,78 @@ class compile_catalog_plusjs(compile_catalog): msgid = msgid[0] jscatalog[msgid] = message.string - with open(js_file, 'wt', encoding='utf8') as outfile: - outfile.write('Documentation.addTranslations(') - dump({ - 'messages': jscatalog, - 'plural_expr': catalog.plural_expr, - 'locale': str(catalog.locale) - }, outfile, sort_keys=True, indent=4) - outfile.write(');') + obj = json.dumps({ + 'messages': jscatalog, + 'plural_expr': catalog.plural_expr, + 'locale': f'{catalog.locale!s}' + }, sort_keys=True, indent=4) + with open(js_file, 'w', encoding='utf8') as outfile: + outfile.write(f'Documentation.addTranslations({obj});') + +def _get_logger(): + log = logging.getLogger('babel') + log.setLevel(logging.INFO) + handler = logging.StreamHandler() + handler.setFormatter(logging.Formatter('%(message)s')) + log.addHandler(handler) + return log + + +def run_extract(): + os.chdir(ROOT) + command = extract_messages() + command.log = _get_logger() + command.initialize_options() + + command.keywords = "_ __ l_ lazy_gettext" + command.mapping_file = "babel.cfg" + command.output_file = os.path.join("sphinx", "locale", "sphinx.pot") + command.project = "Sphinx" + command.version = sphinx.__version__ + command.input_paths = "sphinx" + + command.finalize_options() + return command.run() + + +def run_update(): + os.chdir(ROOT) + command = update_catalog() + command.log = _get_logger() + command.initialize_options() + + command.domain = "sphinx" + command.input_file = os.path.join("sphinx", "locale", "sphinx.pot") + command.output_dir = os.path.join("sphinx", "locale") + + command.finalize_options() + return command.run() + + +def run_compile(): + os.chdir(ROOT) + command = compile_catalog_plusjs() + command.log = _get_logger() + command.initialize_options() + + command.domain = "sphinx" + command.directory = os.path.join("sphinx", "locale") + + command.finalize_options() + return command.run() + + +if __name__ == '__main__': + try: + action = sys.argv[1].lower() + except IndexError: + print(__doc__, file=sys.stderr) + raise SystemExit(2) + + if action == "extract": + raise SystemExit(run_extract()) + if action == "update": + raise SystemExit(run_update()) + if action == "compile": + raise SystemExit(run_compile()) From 22f7a0124c9080ed6e137992f8eba703e126c9a3 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 16 Apr 2022 20:58:59 +0100 Subject: [PATCH 09/11] Update documentation --- doc/internals/contributing.rst | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/doc/internals/contributing.rst b/doc/internals/contributing.rst index 8c74d1b10..f6ba5146a 100644 --- a/doc/internals/contributing.rst +++ b/doc/internals/contributing.rst @@ -252,17 +252,19 @@ locales. The translations are kept as gettext ``.po`` files translated from the master template :file:`sphinx/locale/sphinx.pot`. Sphinx uses `Babel `_ to extract messages -and maintain the catalog files. It is integrated in ``setup.py``: +and maintain the catalog files. The ``utils`` directory contains a helper +script, ``babel_runner.py``. -* Use ``python setup.py extract_messages`` to update the ``.pot`` template. -* Use ``python setup.py update_catalog`` to update all existing language +* Use ``python babel_runner.py extract`` to update the ``.pot`` template. +* Use ``python babel_runner.py update`` to update all existing language catalogs in ``sphinx/locale/*/LC_MESSAGES`` with the current messages in the template file. -* Use ``python setup.py compile_catalog`` to compile the ``.po`` files to binary +* Use ``python babel_runner.py compile`` to compile the ``.po`` files to binary ``.mo`` files and ``.js`` files. -When an updated ``.po`` file is submitted, run compile_catalog to commit both -the source and the compiled catalogs. +When an updated ``.po`` file is submitted, run +``python babel_runner.py compile`` to commit both the source and the compiled +catalogs. When a new locale is submitted, add a new directory with the ISO 639-1 language identifier and put ``sphinx.po`` in there. Don't forget to update the possible @@ -273,9 +275,9 @@ The Sphinx core messages can also be translated on `Transifex which is provided by the ``transifex_client`` Python package, can be used to pull translations in ``.po`` format from Transifex. To do this, go to ``sphinx/locale`` and then run ``tx pull -f -l LANG`` where ``LANG`` is an -existing language identifier. It is good practice to run ``python setup.py -update_catalog`` afterwards to make sure the ``.po`` file has the canonical -Babel formatting. +existing language identifier. It is good practice to run +``python babel_runner.py update`` afterwards to make sure the ``.po`` file has the +canonical Babel formatting. Debugging tips From 4b515076f6a7e03e23806e62be5c97fdf5664e55 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 16 Apr 2022 21:07:15 +0100 Subject: [PATCH 10/11] Update transifex.yml --- .github/workflows/transifex.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index 71c9d32cc..88affa2cb 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -21,7 +21,7 @@ jobs: - name: Install dependencies run: pip install -U babel jinja2 transifex-client - name: Extract translations from source code - run: python setup.py extract_messages + run: python utils/babel_runner.py extract - name: Push translations to transifex.com run: cd sphinx/locale && tx push -s --no-interactive --parallel env: @@ -42,13 +42,13 @@ jobs: - name: Install dependencies run: pip install -U babel jinja2 transifex-client - name: Extract translations from source code - run: python setup.py extract_messages + run: python utils/babel_runner.py extract - name: Pull translations to transifex.com run: cd sphinx/locale && tx pull -a -f --no-interactive --parallel env: TX_TOKEN: ${{ secrets.TX_TOKEN }} - name: Compile message catalogs - run: python setup.py compile_catalog + run: python utils/babel_runner.py compile - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: From e5088724acc97c769f8d05b3c96f0d084f982890 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 17 Apr 2022 00:19:01 +0000 Subject: [PATCH 11/11] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7945 -> 7945 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 490 -> 490 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7974 -> 7974 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5585 -> 5585 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2423 -> 2423 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8263 -> 8263 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6212 -> 6212 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13158 -> 13158 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11214 -> 11214 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82355 -> 82355 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 461 -> 461 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 14117 -> 14117 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 506 -> 506 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1862 -> 1862 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70064 -> 70064 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33948 -> 33948 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6725 -> 6725 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 100644 -> 100644 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2910 -> 2910 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 75787 -> 75787 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 4945 -> 4945 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 98991 -> 98991 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 500 -> 500 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17187 -> 17187 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11531 -> 11531 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 60854 -> 60854 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3080 -> 3080 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10016 -> 10016 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 85764 -> 85764 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 84882 -> 84882 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7102 -> 7102 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6784 -> 6784 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2009 -> 2009 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6764 -> 6764 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8867 -> 8867 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19424 -> 19424 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29697 -> 29697 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 491 -> 491 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 82062 -> 82062 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 7982 -> 7982 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8820 -> 8820 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16425 -> 16425 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3600 -> 3600 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68702 -> 68702 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5415 -> 5415 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/sphinx.pot | 12 ++++++------ sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78589 -> 78589 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9424 -> 9424 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 582 -> 582 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 577 -> 577 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6752 -> 6752 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 645 -> 645 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58412 -> 58412 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6691 -> 6691 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 485 -> 485 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5969 -> 5969 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 485 -> 485 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 65045 -> 65045 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 499 -> 499 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 12 ++++++------ .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 514 -> 514 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 12 ++++++------ sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41472 -> 41472 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 12 ++++++------ 125 files changed, 378 insertions(+), 378 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index bf0856b1688a52828f015ca74fde62abf5fa622e..36cf1b9baad31bdcf7df161f4c819c0a6ddbe31e 100644 GIT binary patch delta 20 bcmeCQ>$KaTEWmEAU|?WnXt7yK;65J!J%|OZ delta 20 bcmeCQ>$KaTEWmD{U|?WnXtr5P;65J!JtzgF diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 4e14351cd..d487464dc 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Abdullah ahmed , 2020\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 20dd5104ecedb83ad06e754e6565a9552e20cabd..16a807e03dd739eb7f2d63c6b4d97318f0230610 100644 GIT binary patch delta 18 ZcmaFG{EB%(C%d_Vfq|8w#l{Iyi~v4)1@Qm? delta 18 ZcmaFG{EB%(C%b`yfq|8w*~SS`i~v3&1?T_( diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index e5031707c..4ae429a3f 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 530d121b2fd9b3239879488f896d4b05e3606755..e37dcc331460e606b04d5fdd9c1fb17ad1b816b5 100644 GIT binary patch delta 20 bcmZ2xx6E!sA1}MPf`NgRp~dE@yb}chNc#qC delta 20 bcmZ2xx6E!sA1}Lsf`NgRq1ooCyb}chNSg*@ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 206ef7032..ce0725330 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "C API পরিবর্তন" msgid "Other changes" msgstr "অন্যান্য পরিবর্তন" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "পাদটীকা" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index ca9b3844b47c15c2bfd38a559540a0d0baabe013..f38a491adc8adee40f7b44b6f327d71a592c1676 100644 GIT binary patch delta 20 bcmcbpeNlTuB`>?Vf`NgRp~dC~-arljN|^>J delta 20 bcmcbpeNlTuB`>>yf`NgRq1omJ-arljN;w7~ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index b3da8444e..47348f61d 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "Canvis a la API de C" msgid "Other changes" msgstr "Altres canvis" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Oculta Resultats de Cerca" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 8876d7f39e068c98b30f7ea3cdbd3408a63f2a4d..87ffa645ec2ef8f0f36032c62c28d79b8444f51a 100644 GIT binary patch delta 20 bcmew^^j&B}87sTFf`NgRp~dD})?ds3O+^OL delta 20 bcmew^^j&B}87sSif`NgRq1onI)?ds3Oyvg1 diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 0f7cbef2f..fc4052cc2 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 98ff1bdac71cfde3f6d051cccdfafc1d28f5e63c..ac1522f08dda04ca53a78bf1381ce332d9092fb4 100644 GIT binary patch delta 20 ccmX@^aNJ?TYGHPB1p@;sLyOIugs1WV08qIG_W%F@ delta 20 ccmX@^aNJ?TYGHN*1p@;sL$l4Bgs1WV08m*5?f?J) diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 3177f5ac8..a0935070e 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vilibald W. , 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "Změny API" msgid "Other changes" msgstr "Ostatní změny" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "Poznámky pod čarou" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 2a90dc7203301ad24f5f5e6c1a7a5c5c6fd7d875..28577ba36f516d2cc4bc0932ffafb7806d269305 100644 GIT binary patch delta 20 bcmX?NaKvE4Rz7xf1p@;sLyOIO_&PWNPE!WU delta 20 bcmX?NaKvE4Rz7wE1p@;sL$l3$_&PWNP4foA diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index d5117877e..ef44c0314 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Geraint Palmer , 2016\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "Newidiadau i'r C-API" msgid "Other changes" msgstr "Newidiadau arall" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Cuddio Canlyniadau Chwilio" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "Troednodiadau" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index a58a46b416a7596e105d486973be9353839f121a..6d257a5f1ef4ae1106b42d8dd198a7a9d5bc4448 100644 GIT binary patch delta 20 ccmaEs_AG6~E_rry1p@;sLyOG^<(CQr09?BV&Hw-a delta 20 ccmaEs_AG6~E_rqX1p@;sL$l2X<(CQr09;!K#Q*>R diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index be4b1eae8..80ab68ecc 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3423,7 +3423,7 @@ msgstr "Ændringer i C-API" msgid "Other changes" msgstr "Andre ændringer" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Skjul søgeresultater" @@ -3666,17 +3666,17 @@ msgstr "" msgid "Footnotes" msgstr "Fodnoter" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index d9293ff5cbff20e756cc7a21336f5ed932963e0c..5993ad7332925f48a1414f563415b77aa91d28e6 100644 GIT binary patch delta 20 bcmX>XelC22o)o*ef`NgRp~YrXshNTROgsiq delta 20 bcmX>XelC22o)o)*f`NgRq1k3rshNTROWX!W diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index eb32654fd..4d19d7d45 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2018\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3423,7 +3423,7 @@ msgstr "C API-Änderungen" msgid "Other changes" msgstr "Andere Änderungen" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Suchergebnisse ausblenden" @@ -3666,17 +3666,17 @@ msgstr "" msgid "Footnotes" msgstr "Fußnoten" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 971fe2ff114a1aebf3d5a451f0f0a4572b7c25df..55398c78ca6fc7a9748ba364691a568182c2a4f4 100644 GIT binary patch delta 22 ecmdno%(}Umb;HU=c5?*-11m#|%^Mn-4*&pSLI_y^ delta 22 ecmdno%(}Umb;HU=b^`?i11m$b%^Mn-4*&pR;s{Ux diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index bcc237356..f74dde14a 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2061,7 +2061,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Ανέγκυρο math_eqref_format: %r" @@ -3422,7 +3422,7 @@ msgstr "Αλλαγές στο API της C" msgid "Other changes" msgstr "Άλλες αλλαγές" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" @@ -3665,17 +3665,17 @@ msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκε msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "τόσο η επιλογή για tabularcolumns όσο και για :widths: δίνονται. Η επιλογή :widths: θα αγνοηθεί." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θα αγνοηθεί." -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 1e18dcc6fc34c5a6e48c3c6acc55b90e082724fd..411f2c7b1bdfe30e30803979775b635fa8ba1fcb 100644 GIT binary patch delta 18 ZcmX@he3p4aC%d_Vfq|8w#l{J?i~u@i1)2Z= delta 18 ZcmX@he3p4aC%b`yfq|8w*~SUBi~u?g1(5&% diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index abd4c0c87..b75f4ad82 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index e583ddd16117d8c2fde8e2120b4d8e46ccd0aacf..98bbe1d6f1782acb0e0d209a2aa28c918d3d40e8 100644 GIT binary patch delta 20 bcmZ3Qw={3V4LNpm1p@;sLyOJ#<=i9yRiy_! delta 20 bcmZ3Qw={3V4LNoL1p@;sL$l5I<=i9yRYeCg diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 94c0317c0..2136d82ea 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2022\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 782a54bf6a20ac981bff11a01032f5702592a83d..70f1887cd8b422f809a59b7b80024c30e2687c0c 100644 GIT binary patch delta 18 Zcmeyx{EK-)C%d_Vfq|8w#l{I)i~vBn1|a|d delta 18 Zcmeyx{EK-)C%b`yfq|8w*~ST3i~vAl1{eSU diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 0d0d53e40..99f4a666e 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index b9a2e31bee38d70ce16baa83dad081cd8735c30a..8d64f0edce57f2b26f56893c9b63fde22121c7ae 100644 GIT binary patch delta 20 bcmX@ccZ_d?F$=r7f`NgRp~Yq^79M5*K8XbJ delta 20 bcmX@ccZ_d?F$=qaf`NgRq1k3D79M5*J}Cs~ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 9e73552bc..2bb6b6cc8 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tatsuro YOKOTA , 2021\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index ea197352b7fde30df36a0adc2d637b7fa7150d94..76222cafe2b46e97713c5df58ecfc632eba37c89 100644 GIT binary patch delta 22 ccmdn6m}LVHxldv@S1>TJGPKz2Hz}ze0ASh(4FCWD delta 22 ccmdn6m}LVHxldv@P%tpCGBn%lHz}ze0AP9u1ONa4 diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 71fa8b59c..18f66da74 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2065,7 +2065,7 @@ msgstr "duplicada %s descripción de %s, otra %s en %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "No válido math_eqref_format: %r" @@ -3426,7 +3426,7 @@ msgstr "Cambios en la API C" msgid "Other changes" msgstr "Otros cambios" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Ocultar coincidencias de la búsqueda" @@ -3669,17 +3669,17 @@ msgstr "no se encontró el nodo de título en la sección, tema, tabla, adverten msgid "Footnotes" msgstr "Notas a pie de página" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "ambas columnas tabulares y la opción :widths: se dan. La opción :widths: se ignora." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "la unidad de dimensión %s no es válida. Ignorado." -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "tipo de entrada de índice desconocido %s encontrado" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 68259b27374c87be28515a8fb1db0c7f7545b743..e69a872f662a5414e5220cccfeff7e02c14d3e5a 100644 GIT binary patch delta 22 dcmbQ!$uy^vX@k8FySajaft8`fW;dTO3jkBe2EG6Q delta 22 dcmbQ!$uy^vX@k8FyMcm%ft8`zW;dTO3jkAT2DJbH diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 189b78364..a12ad0a7d 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Ivar Smolin , 2013-2022\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "võrrandil %s on topeltsilt, teine instants on %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Vigane math_eqref_format: %r" @@ -3423,7 +3423,7 @@ msgstr "C API muutused" msgid "Other changes" msgstr "Ülejäänud muutused" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Varja otsingu tulemused" @@ -3666,17 +3666,17 @@ msgstr "" msgid "Footnotes" msgstr "Joonealused märkused" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 7484bf88f669ad9c39e22bae8cb2b540250284f9..d48446064c8d06af6d0b0e5c0c0f1d23c9ed500c 100644 GIT binary patch delta 20 bcmX?Va@1slrU1LSf`NgRp~Yqc0Z}dhL*fNb delta 20 bcmX?Va@1slrU1Kvf`NgRq1k2w0Z}dhLxKfH diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index ceedf27de..8ac23fbf4 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Asier Iturralde Sarasola , 2018\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "C API aldaketak" msgid "Other changes" msgstr "Beste aldaketak" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Bilaketa bat-etortzeak ezkutatu" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "Oin-oharrak" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 9061628eb74ebcda2d219c8fc2ae8c9449ce1c15..0a15757f8989586444af072d579d82b4d5d0c62d 100644 GIT binary patch delta 21 dcmZ27iEYUwwgt=C%@qs`tPCwSvoDu@1OQZl2Y~

, 2020-2021\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -2062,7 +2062,7 @@ msgstr "توضیح %s تکراری از %s، مورد دیگر%s در %s قرا msgid "duplicate label of equation %s, other instance in %s" msgstr "بر چسب معادله ی %s تکرار است، مورد دیگر در %s قرار دارد" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "قالب مرجع معادله‌‌ی ریاضی (math_eqref_format) نامعتبر: %r" @@ -3423,7 +3423,7 @@ msgstr "C API تغییرات" msgid "Other changes" msgstr "دگر تغییرات" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "عدم نمایش نتایج یافت شده" @@ -3666,17 +3666,17 @@ msgstr "به بست عنوانی برخورد که در قسمت، موضوع، msgid "Footnotes" msgstr "پانویس ها" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "هر دو مقدار tabularcolumns و :widths: داده شده، بنابراین :widths: حذف می شود." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "ابعاد واحد %sنامعتبر است و نادیده گرفته شد." -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 8241eaf1b30e7b0724cce95696858e19d93a938a..00464da17f02637248a64b2964786f293bb3d2fc 100644 GIT binary patch delta 20 bcmca7c28`>SvGca1p@;sLyOH<*t%E%PsRr5 delta 20 bcmca7c28`>SvGb91p@;sL$l3S*t%E%Pi6++ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 28284a95a..c68b7031f 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Piilota löydetyt" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index bf0eae4ab048f16618149fe43139feae3911377a..f70f5a85933578b08753860b4734aadf6eff82ab 100644 GIT binary patch delta 22 ecmeCaz|wtzWyAhi?B)sv23Cd^n~%+M?F9g93<(YZ delta 22 ecmeCaz|wtzWyAhi>;?)323Ce\n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 9e604af098e153b4f8e236ab37253dfe55306e74..40d8d58faf96d82a9b2698c1e38706687bace3a3 100644 GIT binary patch delta 20 ccmcbpc2RA^EG~9)1p@;sLyOG|xi)YB08HZsx&QzG delta 20 ccmcbpc2RA^EG~8f1p@;sL$l2bxi)YB08E1hu>b%7 diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index a26bd57fd..7dc76312e 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2011\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "שינויים אחרים" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "הסתר תוצאות חיפוש" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "הערות שוליים" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index f2823860235621d4c8e6263bbeb7a725bae00c13..1ea0340dd3c1c67e38b9d5477f9f5647b83e29b7 100644 GIT binary patch delta 22 ecmZ4A%C^3hZNtP4c5?*-11m#|%`-a0e*pktA_#*3 delta 22 ecmZ4A%C^3hZNtP4b^`?i11m$b%`-a0e*pks!U%c* diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 2ce4dcf28..e887350f5 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "समीकरण का प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "अमान्य math_eqref_format: %r" @@ -3423,7 +3423,7 @@ msgstr "सी ऐ.पी.आई. परिवर्तन" msgid "Other changes" msgstr "अन्य परिवर्तन" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "खोजे गए जोड़े छिपाएं" @@ -3666,17 +3666,17 @@ msgstr "पाया गया शीर्ष बिंदु किसी भ msgid "Footnotes" msgstr "पाद टिप्पणियां" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "दोनों तालिका-स्तंभ और :चौड़ाई: विकल्प दिए गए हैं. :चौड़ाई: मान की उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "परिमाण मात्रक %s अमान्य है. उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index c8685bc4d858fabe08697e3b64b16c46c82ccea6..bcb6fed65cb75858daca6ed65956a2d7af7824e0 100644 GIT binary patch delta 18 Zcmeyu{DpZ!C%d_Vfq|8w#l{IKi~v931`hxL delta 18 Zcmeyu{DpZ!C%b`yfq|8w*~SSei~v811_l5C diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 0e15083aa..d37a41a69 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index b74b28b74b243022a348220c27df80438385c68f..46235f7fca2b040f37e8ff474cb0bb1e08d0586e 100644 GIT binary patch delta 22 dcmZ47#<;kRalWWU|?WnXtvp3YL5^AM2iL= diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 78fe97a60..9ce1b7489 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -2064,7 +2064,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3425,7 +3425,7 @@ msgstr "C API változások" msgid "Other changes" msgstr "Egyéb változások" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" @@ -3668,17 +3668,17 @@ msgstr "" msgid "Footnotes" msgstr "Lábjegyzetek" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 0b26e4ebb02a526162c2a7f80ed84707df07b965..9f590a79672deac79f7e8a362f1219c2a6e48c4a 100644 GIT binary patch delta 22 dcmdmXn|a%9<_+3y?B)sv23Cd^n~mC9(gA0G2tfb< delta 22 dcmdmXn|a%9<_+3y>;?)323Ce, 2019-2020\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -2063,7 +2063,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplikasi label persamaan %s, misalnya di %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Math_eqref_format tidak valid: %r" @@ -3424,7 +3424,7 @@ msgstr "Perubahan API C" msgid "Other changes" msgstr "Perubahan lain" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Sembunyikan Hasil Pencarian" @@ -3667,17 +3667,17 @@ msgstr "simpul judul tidak ditemui dalam bagian, topik, tabel, peringatan atau s msgid "Footnotes" msgstr "Catatan kaki" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "opsi tabularcolumns dan :widths: opsi diberikan bersamaan. :widths: diabaikan." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "unit dimensi %s tidak valid. Diabaikan" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "entri indeks tidak diketahui ditemukan tipe %s" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 5ab564c81a379a7cb3b55995473b822c4280c3b9..5018d1b4c328c342215a38fcdf2538d50f11c5b0 100644 GIT binary patch delta 19 acmeB>=#W^z&Tg(?U|?lvv6-Enkre=#W^z&TgP!U|?lvwwaxskre, 2021\n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Fela leitarniðurstöður" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 27d52cd3cb13cbeb818b3210d05a7e78a4b1b8fa..c1b9adefe1ea85e72fb1aa825678a5983af3bc29 100644 GIT binary patch delta 20 bcmZ4Bx4>`11#xzB1p@;sLyOJV#Xb1}PgMra delta 20 bcmZ4Bx4>`11#xx*1p@;sL$l4-#Xb1}PW1-G diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index fd405f1f7..690a25292 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Denis Cappellin , 2018\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -2063,7 +2063,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3424,7 +3424,7 @@ msgstr "Modifiche nelle API C" msgid "Other changes" msgstr "Altre modifiche" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" @@ -3667,17 +3667,17 @@ msgstr "" msgid "Footnotes" msgstr "Note a piè di pagina" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 7e0e7f358cf669f7c221064b96ab26d805be6391..70a5d1c4be5e135343b990a5260845ebbf6fdbe7 100644 GIT binary patch delta 22 ecmZpf$J#QFb%V_!c5?*-11m#|&CZJst^ojAS_ne` delta 22 ecmZpf$J#QFb%V_!b^`?i11m$b&CZJst^oj9`UpAz diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 990f0fe4d..13885ac41 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: KaKkouo, 2021\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -2075,7 +2075,7 @@ msgstr "%s の記述 %s はすでに %s で %s が使われています" msgid "duplicate label of equation %s, other instance in %s" msgstr "数式 %s のラベルはすでに %s で使われています" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無効な math_eqref_format: %r" @@ -3436,7 +3436,7 @@ msgstr "C API に関する変更" msgid "Other changes" msgstr "その他の変更" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "検索結果を隠す" @@ -3679,17 +3679,17 @@ msgstr "セクション、トピック、表、訓戒またはサイドバーに msgid "Footnotes" msgstr "注記" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns と :widths: オプションの両方が設定されています。:widths: は無視されます。" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "ディメンション単位 %s が無効です。無視されます。" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "不明なインデックスエントリタイプ %s が見つかりました" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 59a070c2d6aceeb18e715a323d4d4812b056a21a..bd9010607c4051f6d0da3e38da7c77f363be830f 100644 GIT binary patch delta 22 ecmbO, 2019-2022\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -2060,7 +2060,7 @@ msgstr "중복된 %s 설명 (%s에 대한), 다른 항목은 %s (%s)에 있음" msgid "duplicate label of equation %s, other instance in %s" msgstr "중복 레이블의 수식 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "잘못된 math_eqref_format: %r" @@ -3421,7 +3421,7 @@ msgstr "C API 변경 사항" msgid "Other changes" msgstr "다른 변경 사항" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "검색 일치 숨기기" @@ -3664,17 +3664,17 @@ msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 msgid "Footnotes" msgstr "각주" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns와 :widths: 옵션이 모두 설정되었습니다. :widths:는 무시됩니다." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다." -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 9dcb9345209d8d56b2ec1c9b45d8b86832fef7e5..b9b45f5f98345d148c8ee2c65a342eb5f6ea88a6 100644 GIT binary patch delta 20 bcmdmIzR!HaGy!&V1p@;sLyOIG1r)gfOLPV< delta 20 bcmdmIzR!HaGy!%41p@;sL$l3u1r)gfOB4nr diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index deec4cc58..50930a821 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: DALIUS DOBRAVOLSKAS , 2010\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "C API pakeitimai" msgid "Other changes" msgstr "Kiti pakeitimai" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Paslėpti paieškos rezultatus" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "Išnašos" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 25919e4d14bb72fe156b3b59b4e6ff6aff6e234a..54d052b869c1e9e851f99f30a855cf4d3dda3f72 100644 GIT binary patch delta 20 bcmZoLZ7|*7B*1R2U|?WnXtCK-z?=&JJLd%( delta 20 bcmZoLZ7|*7B*1Q\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "Izmaiņas iekš C API" msgid "Other changes" msgstr "Citas izmaiņas" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Paslēpt atlases vārdus" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "Vēres" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index a5218f55229fb5ddd433119b56c1d36fb3c39dca..b71c8d99f14379b809d963675b401a23d5c83a71 100644 GIT binary patch delta 20 ccmcb~f0KX1EoOFe1p@;sLyOH1nSU??08gt2Q2+n{ delta 20 ccmcb~f0KX1EoOED1p@;sL$l2fnSU??08dK?NB{r; diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 99c42c4fa..168789e28 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski , 2013\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 1035f0162eda02db6e648e4a7afb443fe9080ecc..f4825f3ab44485bbf224ec0282afad700f787343 100644 GIT binary patch delta 20 bcmaE3^2TJtTLE@+1p@;sLyOH{1S&WISp5fw delta 20 bcmaE3^2TJtTLE?h1p@;sL$l3a1S&WISe*xc diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index e518cb24c..b3f17163c 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "Endringer i C API" msgid "Other changes" msgstr "Andre endringer" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Skjul søkeresultat" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index a5d8d9fe0e02a87b14314ab6a104b70a5b7601a8..48b460afb91ddd16e83698b952659d82c42d1295 100644 GIT binary patch delta 19 acmZ4Ny4ZEY907K71p@;sLyN_W1%v=YZ3XrK delta 19 acmZ4Ny4ZEY907I%1p@;sL$k$;1%v=Y76t79 diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 8fe4661cd..b05efdf2e 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "C API का परिवर्तनहरु " msgid "Other changes" msgstr "अरु परिवर्तनहरु " -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "फूट्नोट्स" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 23800c09280fc30c3b78ff75efd6b4f18ddce691..57471456ac3209d39453ed228387bed92e98ff1e 100644 GIT binary patch delta 22 ecmaDbo$O delta 22 ecmaDbo$zHec7~Q~&^IDhJX4 diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index efd2f87ab..711f3a2a7 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2065,7 +2065,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicaatlabel van formule %s, andere in %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3426,7 +3426,7 @@ msgstr "Veranderingen in de C-API" msgid "Other changes" msgstr "Andere veranderingen" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Zoekresultaten verbergen" @@ -3669,17 +3669,17 @@ msgstr "" msgid "Footnotes" msgstr "Voetnoten" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 1429c06a08efb5535dbf50a62beebc5396d83cc1..bcb72f296843257bd62eb5e848ea4b23b512d2f6 100644 GIT binary patch delta 22 dcmZpC!PxkMal, 2017-2020\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" @@ -3423,7 +3423,7 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" @@ -3666,17 +3666,17 @@ msgstr "" msgid "Footnotes" msgstr "Przypisy" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "%s" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index e8b86dd39f2cb3b443e5cdc2560278446a743610..eaa6417ebe4ff1643b740138c7a4efca3ecc777b 100644 GIT binary patch delta 18 ZcmaFO{F-?}C%d_Vfq|8w#l{KIi~v5J1@r&_ delta 18 ZcmaFO{F-?}C%b`yfq|8w*~SUci~v4H1?vC+ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 6309199df..d805837e9 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index ac72225e114fcc3dc8db0fe24b8918b9209b747d..38b46d87ac88b17e6849d6bd37ea2041276719d0 100644 GIT binary patch delta 22 ecmeBcWbJEY-LPj3ySajaft8`f=EG}FPX+*Ct_dOl delta 22 ecmeBcWbJEY-LPj3yMcm%ft8`z=EG}FPX+*CP6-(R diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index b819012b7..3ac59c005 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Rafael Fontenelle , 2019-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -2064,7 +2064,7 @@ msgstr "descrição duplicada de %s de %s, outro %s em %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "rótulo duplicado da equação %s, outra instância em %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format inválido: %r" @@ -3425,7 +3425,7 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Esconder Resultados da Busca" @@ -3668,17 +3668,17 @@ msgstr "nó de título encontrado não na section, topic, table, admonition ou s msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns e opção :widths: foram fornecidas. :widths: foi ignorada." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "a unidade de dimensão %s é inválida. Ignorada." -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "tipo desconhecido de entrada de índice %s encontrado" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index c3aafe3a67dd32d33d9eac87ba728424bc60b71a..814e58bcf2efe8d1643b76fd759e8552789c1491 100644 GIT binary patch delta 20 bcmZ2yx6W?E3n6xM1p@;sLyOJth3t6%P=yBL delta 20 bcmZ2yx6W?E3n6v`1p@;sL$l5Ah3t6%P$dT1 diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index d0306df50..1d09abc7d 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index f5d53a799d7015374c5b3f19bfae676f56807927..a04a14aeaaecd32be1a25964f4f0cd1c5c456e70 100644 GIT binary patch delta 20 ccmez3^2KGtNfCB)1p@;sLyOH9M3(RZ09s)OrvLx| delta 20 ccmez3^2KGtNfCAf1p@;sL$l2nM3(RZ09pYDo&W#< diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 3dc4b9b3f..ea049b181 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Razvan Stefanescu , 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "Schimbări în API C" msgid "Other changes" msgstr "Alte schimbări" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Ascunde Rezultatele Căutării" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "Note de subsol" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index a962ecbc3e806bced2021b8d0dced056d1b598f5..da67a756f0c23b545d3b954a0ab296ee14d94a3b 100644 GIT binary patch delta 22 dcmZ44z__x3al;`wc5?*-11m#|%_rp&6aiZT2VnpJ delta 22 dcmZ44z__x3al;`wb^`?i11m$b%_rp&6aiYI2Uq|A diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 103b03be3..579d7002f 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2065,7 +2065,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "повторяющаяся метка уравнения %s, также используется в %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3426,7 +3426,7 @@ msgstr "Изменения в API C" msgid "Other changes" msgstr "Другие изменения" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Снять выделение" @@ -3669,17 +3669,17 @@ msgstr "" msgid "Footnotes" msgstr "Сноски" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 537ce6dc67d2ca7a7dfd031538d6c8064c8fddbd..60d0c4107f86046ff8b888c1c0c47313f00db9b2 100644 GIT binary patch delta 20 bcmbOrGeKs<0XBAX1p@;sLyOJF**w_+LzD&p delta 20 bcmbOrGeKs<0XB961p@;sL$l4t**w_+Lo@~V diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index a3f7391f8..04e0b895d 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa , 2013\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "C API වෙනස්කම්" msgid "Other changes" msgstr "වෙනත් වෙනස්කම්" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index fafa58d1bbb9c2c328a433b11a66a6b63fbd65b6..e2f39161e5a869ea38cca067a199b8f96d22a783 100644 GIT binary patch delta 22 ecmcaNgXP`~mJQ8Q*v%CT46F<-Hg`?AQVsxX{Rue$ delta 22 ecmcaNgXP`~mJQ8Q*bNj646F>zHg`?AQVsxXoe3}i diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 20bf9aa3a..28f5f5cde 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2061,7 +2061,7 @@ msgstr "duplicitný %s popis %s, ďalší výskyt%s v %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "neplatný math_eqref_format: %r" @@ -3422,7 +3422,7 @@ msgstr "Zmeny API C" msgid "Other changes" msgstr "Ostatné zmeny" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Skryť výsledky hľadania" @@ -3665,17 +3665,17 @@ msgstr "" msgid "Footnotes" msgstr "Poznámky pod čiarou" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "sú zadané obe, tabularcolumns aj voľba :widths:. :widths: je ignorované." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 7bb5df94711701d88cc4da15b80509c3ca1ce431..0381cece049d70c0f51760f24419cd32e45f9cfb 100644 GIT binary patch delta 20 bcmZ3kwOnfhFE6{ff`NgRp~YqqUSSRZJGlhC delta 20 bcmZ3kwOnfhFE6`+f`NgRq1k2;USSRZJ6Qy@ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 61f179881..e9d061db8 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "C API spremembe" msgid "Other changes" msgstr "Ostale spremembe" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Skrij resultate iskanja" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "Opombe" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index c2ab2218b..9251b7123 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 5.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2076,7 +2076,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3439,7 +3439,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3679,16 +3679,16 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 99dd0d65ada8607726bf1ec87e35c0764e5a56c5..d48fdbb4f61cf0300e6a702b68276bcdc60c47cc 100644 GIT binary patch delta 22 ecmezSl;!VJmJRBQ+07LU46F<-HtQ`u-wyzG=n0Ad delta 22 ecmezSl;!VJmJRBQ*$os746F>zHtQ`u-wyzGhzWrJ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 4be1d8ce7..25a5db6f1 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2059,7 +2059,7 @@ msgstr "përshkrim %s i përsëdytur i %s, tjetër %s në %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiketë e përsëdytur ekuacioni %s, instancë tjetër te %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format i pavlefshëm: %r" @@ -3420,7 +3420,7 @@ msgstr "Ndryshime API C" msgid "Other changes" msgstr "Ndryshime të tjera" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Fshih Përputhje Kërkimi" @@ -3663,17 +3663,17 @@ msgstr "u has nyje titulli jo në ndarje, temë, tabelë, paralajmërim ose anë msgid "Footnotes" msgstr "Poshtëshënime" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "janë dhënë që të dyja mundësitë, “tabularcolumns” dhe “:widths:”. shpërfillet :widths:." -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "njësia e përmasave %s është e pavlefshme. U shpërfill." -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "u gjet lloj i panjohur %s zërash treguesi" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 1d485d8a82c3899e26fea3a7bf6296c8311bbaf0..893452efbaa4840c9c9ace93c76720e0fa4b75ce 100644 GIT binary patch delta 20 ccmccMdBJnTIU#m)1p@;sLyOH, 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3421,7 +3421,7 @@ msgstr "" msgid "Other changes" msgstr "Друге измене" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3664,17 +3664,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 74cda45c03f756e8495246f0823f64cd2651d971..c75862e7c52ec2ef30b1615c88911ed7efe19df6 100644 GIT binary patch delta 18 ZcmX@ca*Sm{C%d_Vfq|8w#l{KS7y&wo1_uBD delta 18 ZcmX@ca*Sm{C%b`yfq|8w*~SUm7y&vm1^xg4 diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index d44774d8d..ce21c698b 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 53c78f005b68e1a5d326852171787765d157824a..f6c7ab8cfc59ab584565b20528c625ae3b6da073 100644 GIT binary patch delta 18 ZcmX@ea*$<0C%d_Vfq|8w#l{I6838%f1^55} delta 18 ZcmX@ea*$<0C%b`yfq|8w*~SSQ838$d1@8a= diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 2d340942c..c7ed37332 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 93ae8915d66a4e2d94ca53a1c5814cb5c76a2db1..140cb36032cc05d1e4243967f7926b8da45a1ad0 100644 GIT binary patch delta 20 bcmaE0^1x)nc>#8F1p@;sLyOJV1iCl@RUZdM delta 20 bcmaE0^1x)nc>#6<1p@;sL$l4-1iCl@RKEv2 diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 55fd6b4b7..8428525d0 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "Förändringar i C-API" msgid "Other changes" msgstr "Övriga förändringar" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Dölj Sökresultat" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 94635d524b0c903090d20ce4338387df78202f7d..03c71e5c68845a7d3f44a8d4508b302aa7e8d05d 100644 GIT binary patch delta 18 ZcmZo=ZDpOXo!wl)z`)ATV&lH!i~uzW1@r&_ delta 18 ZcmZo=ZDpOXo!vmez`)ATY~#M;i~uyU1?vC+ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 5b098d0f3..ab79da93e 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 058850cde3896e7125da491ca4ba41637431fcb9..056971e9586e4d3c3730c78b099bfdb37618935c 100644 GIT binary patch delta 18 ZcmaFP{G540C%d_Vfq|8w#l{KYi~v3j1?T_( delta 18 ZcmaFP{G540C%b`yfq|8w*~SUsi~v2h1>XPw diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index d139fc9bb..f6958a54c 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 54ce0a4aaf1ae544a964de99c5d8809f9bfb15ba..7d706bf14ba91cce9ba478fe38b1007d12a165c5 100644 GIT binary patch delta 22 ecmZ2;f_cpe<_%M8*v%CT46F<-HqWVzHqWV, 2009\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "зміни C API" msgid "Other changes" msgstr "Інші зміни" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "Приховати співпадіння пошуку" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 4396ae8b70807181b41666196445cf28080d8ab9..520da2c48b5ad32cf251b0da960e151ee0e88c90 100644 GIT binary patch delta 18 ZcmaFL{FHe@C%d_Vfq|8w#l{Jti~v2w1>yhz delta 18 ZcmaFL{FHe@C%b`yfq|8w*~ST>i~v1u1=#=q diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 293a7c6b5..fa47a058d 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 5923d395ea7f9e16b63e29f15d4f083b43931ab7..704f7b515d4b0a5e743885e2a83e43afd5a08d43 100644 GIT binary patch delta 20 ccmcbpcTsP{B3^cL1p@;sLyOHTc~@`(08YOK*#H0l delta 20 ccmcbpcTsP{B3^a_1p@;sL$l2*c~@`(08U>9&;S4c diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 9cfeaaae4..1d5087b4e 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hoat Le Van , 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3420,7 +3420,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3663,17 +3663,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index b13ec24d0ef59417a049cf3d450ab3168b3c5271..7a054f3adac8f7b5ed42ecbc98cda22c644f04ac 100644 GIT binary patch delta 18 ZcmaFL{FHe@C%d_Vfq|8w#l{Jti~v2w1>yhz delta 18 ZcmaFL{FHe@C%b`yfq|8w*~ST>i~v1u1=#=q diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 65b65be22..af78a576b 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 2e0c721536ab3b13dae957f1f6829e7ee35594ed..920138be7b8d7ecbf65aeaa83a3d1cf7608f2ce1 100644 GIT binary patch delta 22 ecmbRGhk5EB<_-I&v70Lx7+4uvY(6&4KOF#a-w9Lz delta 22 ecmbRGhk5EB<_-I&u^T8D7+4vaZ9X>5KOF#ae+f$f diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index c1e2d7366..df9573e26 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: JY3, 2022\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -2075,7 +2075,7 @@ msgstr "对%s重复的描述 %s,其它的%s出现在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重复的公式标签 %s,另一实例出现在 %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "无效的 math_eqref_format:%r" @@ -3436,7 +3436,7 @@ msgstr "C API 更改" msgid "Other changes" msgstr "其他更改" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "隐藏搜索结果" @@ -3679,17 +3679,17 @@ msgstr "在节、话题、表格、警示或边栏以外的位置发现标题节 msgid "Footnotes" msgstr "脚注" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "给出了表格列和 :width:选项。:宽度:被忽略。" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "无效的量纲单位 %s,已忽略。" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "发现未知的索引条目类型 %s" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index b08eb0098eaecce07c36946e0820c0bd10abd964..4ae6a5d4f3338813536580421488651dd38c6422 100644 GIT binary patch delta 18 Zcmey&{F!+|C%d_Vfq|8w#l{KAi~v8q1`GfI delta 18 Zcmey&{F!+|C%b`yfq|8w*~SUUi~v7o1_J;9 diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 8b7d182b2..4b805e3cb 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 677cd881f5736dfcbc47f09f2a89771a1e063429..69a4446bc086b69fea0c6026abe0ad9d68f7d03c 100644 GIT binary patch delta 18 ZcmZo-X=0hs$!@M-U|?lvv2j8XBLFb@1v>x$ delta 18 ZcmZo-X=0hs$!?%vU|?lvwsArcBLFa>1u_5t diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index 18b11246d..bbe0a7f94 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+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" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -3419,7 +3419,7 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "" @@ -3662,17 +3662,17 @@ msgstr "" msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 52e9dfc019905be81ccf65b93f06bf53d6f2e385..2e8b6f5c7a25b732058d39c2a3d285fa215c48b4 100644 GIT binary patch delta 22 dcmZoT!qjktX~Ve$c5?*-11m#|%~un&9RXwR2p|9e delta 22 dcmZoT!qjktX~Ve$b^`?i11m$b%~un&9RXvG2p0eV diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 127942963..f27b1f103 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-04-10 00:16+0000\n" +"POT-Creation-Date: 2022-04-17 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Steven Hsu , 2021\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -2066,7 +2066,7 @@ msgstr "%s 的重複 %s 敘述,其他的 %s 在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重複公式標籤 %s,亦出現於 %s" -#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027 +#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無效的 math_eqref_format: %r" @@ -3427,7 +3427,7 @@ msgstr "C API 的變更" msgid "Other changes" msgstr "其他變更" -#: sphinx/themes/basic/static/doctools.js:155 +#: sphinx/themes/basic/static/doctools.js:153 msgid "Hide Search Matches" msgstr "隱藏符合搜尋" @@ -3670,17 +3670,17 @@ msgstr "遇到的標題節點不是在段落、主題、表格、警告或側邊 msgid "Footnotes" msgstr "註腳" -#: sphinx/writers/latex.py:863 +#: sphinx/writers/latex.py:861 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "同時被給予 tabularcolumns 及 :widths: 選項。 :widths: 已略過。" -#: sphinx/writers/latex.py:1194 +#: sphinx/writers/latex.py:1192 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "維度單位 %s 是無效的。已略過。" -#: sphinx/writers/latex.py:1507 +#: sphinx/writers/latex.py:1505 #, python-format msgid "unknown index entry type %s found" msgstr "找到了未知的索引條目型別 %s"