mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch '5.x'
# Conflicts: # setup.py # sphinx/application.py # sphinx/environment/__init__.py # sphinx/ext/autodoc/directive.py # tests/test_build_html.py
This commit is contained in:
commit
14c9b40f15
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
@ -2,6 +2,9 @@ name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
ubuntu:
|
||||
runs-on: ubuntu-18.04
|
||||
|
3
.github/workflows/nodejs.yml
vendored
3
.github/workflows/nodejs.yml
vendored
@ -2,6 +2,9 @@ name: CI (node.js)
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
17
CHANGES
17
CHANGES
@ -36,15 +36,22 @@ Deprecated
|
||||
Features added
|
||||
--------------
|
||||
|
||||
- #10286: C++, support requires clauses not just between the template
|
||||
* #10286: C++, support requires clauses not just between the template
|
||||
parameter lists and the declaration.
|
||||
* #10755: linkcheck: Check the source URL of raw directives that use the ``url``
|
||||
option.
|
||||
* #10781: Allow :rst:role:`ref` role to be used with definitions and fields.
|
||||
* #10717: HTML Search: Increase priority for full title and
|
||||
subtitle matches in search results
|
||||
* #10718: HTML Search: Save search result score to the HTML element for debugging
|
||||
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
- #10257: C++, ensure consistent non-specialization template argument
|
||||
* #10257: C++, ensure consistent non-specialization template argument
|
||||
representation.
|
||||
- #10729: C++, fix parsing of certain non-type template parameter packs.
|
||||
* #10729: C++, fix parsing of certain non-type template parameter packs.
|
||||
* #10715: Revert #10520: "Fix" use of sidebar classes in ``agogo.css_t``
|
||||
|
||||
Testing
|
||||
--------
|
||||
@ -136,8 +143,8 @@ Bugs fixed
|
||||
* #10506: LaTeX: build error if highlighting inline code role in figure caption
|
||||
(refs: #10251)
|
||||
* #10634: Make -P (pdb) option work better with exceptions triggered from events
|
||||
* #10031: py domain: Fix spurious whitespace in unparsing various operators (``+``,
|
||||
``-``, ``~``, and ``**``). Patch by Adam Turner.
|
||||
* #10550: py domain: Fix spurious whitespace in unparsing various operators (``+``,
|
||||
``-``, ``~``, and ``**``). Patch by Adam Turner (refs: #10551).
|
||||
* #10460: logging: Always show node source locations as absolute paths.
|
||||
* HTML Search: HTML tags are displayed as a part of object name
|
||||
* HTML Search: search snipets should not be folded
|
||||
|
2
doc/_themes/sphinx13/static/sphinx13.css
vendored
2
doc/_themes/sphinx13/static/sphinx13.css
vendored
@ -131,7 +131,7 @@ div.footer {
|
||||
background-color: var(--colour-sphinx-blue);
|
||||
color: #ccc;
|
||||
text-shadow: 0 0 .2px rgba(255, 255, 255, 0.8);
|
||||
padding: 3px 8px 3px 0;
|
||||
padding: 3px 8px 3px 8px;
|
||||
clear: both;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ Sphinx.
|
||||
:linenos:
|
||||
:lines: 12-
|
||||
|
||||
The simplest thing you can do it call the :meth:`~Sphinx.add_directive` method,
|
||||
The simplest thing you can do is to call the :meth:`~Sphinx.add_directive` method,
|
||||
which is what we've done here. For this particular call, the first argument is
|
||||
the name of the directive itself as used in a reST file. In this case, we would
|
||||
use ``helloworld``. For example:
|
||||
|
63
setup.cfg
63
setup.cfg
@ -41,49 +41,37 @@ strict_optional = False
|
||||
[mypy-sphinx.builders]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.builders.gettext]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.builders.html]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.builders.latex.*]
|
||||
[mypy-sphinx.builders.latex]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.builders.linkcheck]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.builders.singlehtml]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.cmd.*]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.directives]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.directives.code]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.domains.*]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.environment.*]
|
||||
[mypy-sphinx.environment]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.environment.adapters.toctree]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.environment.adapters.indexentries]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.ext.*]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.locale]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.pycode.parser]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.registry.*]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.search]
|
||||
[mypy-sphinx.registry]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.setup_command]
|
||||
@ -92,13 +80,40 @@ strict_optional = False
|
||||
[mypy-sphinx.testing.util]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.transforms.*]
|
||||
[mypy-sphinx.transforms.i18n]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.util.*]
|
||||
[mypy-sphinx.transforms.post_transforms.images]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.writers.*]
|
||||
[mypy-sphinx.util.cfamily]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.util.docfields]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.util.docutils]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.util.nodes]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.util.typing]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.writers.html]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.writers.html5]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.writers.latex]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.writers.text]
|
||||
strict_optional = False
|
||||
|
||||
[mypy-sphinx.writers.xml]
|
||||
strict_optional = False
|
||||
|
||||
[tool:pytest]
|
||||
|
95
setup.py
95
setup.py
@ -1,5 +1,3 @@
|
||||
import sys
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
import sphinx
|
||||
@ -7,56 +5,6 @@ import sphinx
|
||||
with open('README.rst', encoding='utf-8') as f:
|
||||
long_desc = f.read()
|
||||
|
||||
if sys.version_info < (3, 7):
|
||||
print('ERROR: Sphinx requires at least Python 3.7 to run.')
|
||||
sys.exit(1)
|
||||
|
||||
install_requires = [
|
||||
'sphinxcontrib-applehelp',
|
||||
'sphinxcontrib-devhelp',
|
||||
'sphinxcontrib-jsmath',
|
||||
'sphinxcontrib-htmlhelp>=2.0.0',
|
||||
'sphinxcontrib-serializinghtml>=1.1.5',
|
||||
'sphinxcontrib-qthelp',
|
||||
'Jinja2>=2.3',
|
||||
'Pygments>=2.0',
|
||||
'docutils>=0.14,<0.20',
|
||||
'snowballstemmer>=1.1',
|
||||
'babel>=1.3',
|
||||
'alabaster>=0.7,<0.8',
|
||||
'imagesize',
|
||||
'requests>=2.5.0',
|
||||
'packaging',
|
||||
"importlib-metadata>=4.4; python_version < '3.10'",
|
||||
]
|
||||
|
||||
extras_require = {
|
||||
# Environment Marker works for wheel 0.24 or later
|
||||
':sys_platform=="win32"': [
|
||||
'colorama>=0.3.5',
|
||||
],
|
||||
'docs': [
|
||||
'sphinxcontrib-websupport',
|
||||
],
|
||||
'lint': [
|
||||
'flake8>=3.5.0',
|
||||
'flake8-comprehensions',
|
||||
'flake8-bugbear',
|
||||
'isort',
|
||||
'mypy>=0.971',
|
||||
'sphinx-lint',
|
||||
'docutils-stubs',
|
||||
"types-typed-ast",
|
||||
"types-requests",
|
||||
],
|
||||
'test': [
|
||||
'pytest>=4.6',
|
||||
'html5lib',
|
||||
"typed_ast; python_version < '3.8'",
|
||||
'cython',
|
||||
],
|
||||
}
|
||||
|
||||
setup(
|
||||
name='Sphinx',
|
||||
version=sphinx.__version__,
|
||||
@ -130,6 +78,45 @@ setup(
|
||||
],
|
||||
},
|
||||
python_requires=">=3.7",
|
||||
install_requires=install_requires,
|
||||
extras_require=extras_require,
|
||||
install_requires=[
|
||||
'sphinxcontrib-applehelp',
|
||||
'sphinxcontrib-devhelp',
|
||||
'sphinxcontrib-jsmath',
|
||||
'sphinxcontrib-htmlhelp>=2.0.0',
|
||||
'sphinxcontrib-serializinghtml>=1.1.5',
|
||||
'sphinxcontrib-qthelp',
|
||||
'Jinja2>=3.0',
|
||||
'Pygments>=2.12',
|
||||
'docutils>=0.14,<0.20',
|
||||
'snowballstemmer>=2.0',
|
||||
'babel>=2.9',
|
||||
'alabaster>=0.7,<0.8',
|
||||
'imagesize>=1.3',
|
||||
'requests>=2.5.0',
|
||||
'packaging>=21.0',
|
||||
"importlib-metadata>=4.8; python_version < '3.10'",
|
||||
"colorama>=0.4.5; sys_platform == 'win32'",
|
||||
],
|
||||
extras_require={
|
||||
'docs': [
|
||||
'sphinxcontrib-websupport',
|
||||
],
|
||||
'lint': [
|
||||
'flake8>=3.5.0',
|
||||
'flake8-comprehensions',
|
||||
'flake8-bugbear',
|
||||
'isort',
|
||||
'mypy>=0.971',
|
||||
'sphinx-lint',
|
||||
'docutils-stubs',
|
||||
"types-typed-ast",
|
||||
"types-requests",
|
||||
],
|
||||
'test': [
|
||||
'pytest>=4.6',
|
||||
'html5lib',
|
||||
"typed_ast; python_version < '3.8'",
|
||||
'cython',
|
||||
],
|
||||
},
|
||||
)
|
||||
|
@ -125,9 +125,10 @@ class Sphinx:
|
||||
_warncount: int
|
||||
|
||||
def __init__(self, srcdir: str, confdir: Optional[str], outdir: str, doctreedir: str,
|
||||
buildername: str, confoverrides: Dict = None,
|
||||
buildername: str, confoverrides: Optional[Dict] = None,
|
||||
status: Optional[IO] = sys.stdout, warning: Optional[IO] = sys.stderr,
|
||||
freshenv: bool = False, warningiserror: bool = False, tags: List[str] = None,
|
||||
freshenv: bool = False, warningiserror: bool = False,
|
||||
tags: Optional[List[str]] = None,
|
||||
verbosity: int = 0, parallel: int = 0, keep_going: bool = False,
|
||||
pdb: bool = False) -> None:
|
||||
self.phase = BuildPhase.INITIALIZATION
|
||||
@ -332,7 +333,7 @@ class Sphinx:
|
||||
|
||||
# ---- main "build" method -------------------------------------------------
|
||||
|
||||
def build(self, force_all: bool = False, filenames: List[str] = None) -> None:
|
||||
def build(self, force_all: bool = False, filenames: Optional[List[str]] = None) -> None:
|
||||
self.phase = BuildPhase.READING
|
||||
try:
|
||||
if force_all:
|
||||
@ -602,7 +603,7 @@ class Sphinx:
|
||||
self.registry.add_translation_handlers(node, **kwargs)
|
||||
|
||||
def add_enumerable_node(self, node: Type[Element], figtype: str,
|
||||
title_getter: TitleGetter = None, override: bool = False,
|
||||
title_getter: Optional[TitleGetter] = None, override: bool = False,
|
||||
**kwargs: Tuple[Callable, Callable]) -> None:
|
||||
"""Register a Docutils node class as a numfig target.
|
||||
|
||||
@ -789,7 +790,8 @@ class Sphinx:
|
||||
self.registry.add_index_to_domain(domain, index)
|
||||
|
||||
def add_object_type(self, directivename: str, rolename: str, indextemplate: str = '',
|
||||
parse_node: Callable = None, ref_nodeclass: Type[TextElement] = None,
|
||||
parse_node: Optional[Callable] = None,
|
||||
ref_nodeclass: Optional[Type[TextElement]] = None,
|
||||
objname: str = '', doc_field_types: List = [], override: bool = False
|
||||
) -> None:
|
||||
"""Register a new object type.
|
||||
@ -856,7 +858,7 @@ class Sphinx:
|
||||
override=override)
|
||||
|
||||
def add_crossref_type(self, directivename: str, rolename: str, indextemplate: str = '',
|
||||
ref_nodeclass: Type[TextElement] = None, objname: str = '',
|
||||
ref_nodeclass: Optional[Type[TextElement]] = None, objname: str = '',
|
||||
override: bool = False) -> None:
|
||||
"""Register a new crossref object type.
|
||||
|
||||
@ -1069,7 +1071,7 @@ class Sphinx:
|
||||
self.builder.add_css_file(filename, # type: ignore[attr-defined]
|
||||
priority=priority, **kwargs)
|
||||
|
||||
def add_latex_package(self, packagename: str, options: str = None,
|
||||
def add_latex_package(self, packagename: str, options: Optional[str] = None,
|
||||
after_hyperref: bool = False) -> None:
|
||||
r"""Register a package to include in the LaTeX source code.
|
||||
|
||||
@ -1292,7 +1294,12 @@ class TemplateBridge:
|
||||
that renders templates given a template name and a context.
|
||||
"""
|
||||
|
||||
def init(self, builder: "Builder", theme: Theme = None, dirs: List[str] = None) -> None:
|
||||
def init(
|
||||
self,
|
||||
builder: "Builder",
|
||||
theme: Optional[Theme] = None,
|
||||
dirs: Optional[List[str]] = None
|
||||
) -> None:
|
||||
"""Called by the builder to initialize the template system.
|
||||
|
||||
*builder* is the builder object; you'll probably want to look at the
|
||||
|
@ -464,7 +464,7 @@ class EpubBuilder(StandaloneHTMLBuilder):
|
||||
logger.info(__('writing mimetype file...'))
|
||||
copy_asset_file(path.join(self.template_dir, 'mimetype'), self.outdir)
|
||||
|
||||
def build_container(self, outname: str = 'META-INF/container.xml') -> None: # NOQA
|
||||
def build_container(self, outname: str = 'META-INF/container.xml') -> None:
|
||||
"""Write the metainfo file META-INF/container.xml."""
|
||||
logger.info(__('writing META-INF/container.xml file...'))
|
||||
outdir = path.join(self.outdir, 'META-INF')
|
||||
|
@ -120,7 +120,6 @@ class I18nBuilder(Builder):
|
||||
"""
|
||||
name = 'i18n'
|
||||
versioning_method = 'text'
|
||||
versioning_compare: bool = None # be set by `gettext_uuid`
|
||||
use_message_catalog = False
|
||||
|
||||
def init(self) -> None:
|
||||
|
@ -442,7 +442,7 @@ class StandaloneHTMLBuilder(Builder):
|
||||
def get_asset_paths(self) -> List[str]:
|
||||
return self.config.html_extra_path + self.config.html_static_path
|
||||
|
||||
def render_partial(self, node: Node) -> Dict[str, str]:
|
||||
def render_partial(self, node: Optional[Node]) -> Dict[str, str]:
|
||||
"""Utility: Render a lone doctree node."""
|
||||
if node is None:
|
||||
return {'fragment': ''}
|
||||
|
@ -3,7 +3,7 @@
|
||||
import os
|
||||
import warnings
|
||||
from os import path
|
||||
from typing import Any, Dict, Iterable, List, Tuple, Union
|
||||
from typing import Any, Dict, Iterable, List, Optional, Tuple, Union
|
||||
|
||||
from docutils.frontend import OptionParser
|
||||
from docutils.nodes import Node
|
||||
@ -127,13 +127,13 @@ class LaTeXBuilder(Builder):
|
||||
def get_outdated_docs(self) -> Union[str, List[str]]:
|
||||
return 'all documents' # for now
|
||||
|
||||
def get_target_uri(self, docname: str, typ: str = None) -> str:
|
||||
def get_target_uri(self, docname: str, typ: Optional[str] = None) -> str:
|
||||
if docname not in self.docnames:
|
||||
raise NoUri(docname, typ)
|
||||
else:
|
||||
return '%' + docname
|
||||
|
||||
def get_relative_uri(self, from_: str, to: str, typ: str = None) -> str:
|
||||
def get_relative_uri(self, from_: str, to: str, typ: Optional[str] = None) -> str:
|
||||
# ignore source path
|
||||
return self.get_target_uri(to, typ)
|
||||
|
||||
@ -510,25 +510,25 @@ def setup(app: Sphinx) -> Dict[str, Any]:
|
||||
app.connect('config-inited', validate_latex_theme_options, priority=800)
|
||||
app.connect('builder-inited', install_packages_for_ja)
|
||||
|
||||
app.add_config_value('latex_engine', default_latex_engine, None,
|
||||
app.add_config_value('latex_engine', default_latex_engine, False,
|
||||
ENUM('pdflatex', 'xelatex', 'lualatex', 'platex', 'uplatex'))
|
||||
app.add_config_value('latex_documents', default_latex_documents, None)
|
||||
app.add_config_value('latex_logo', None, None, [str])
|
||||
app.add_config_value('latex_appendices', [], None)
|
||||
app.add_config_value('latex_use_latex_multicolumn', False, None)
|
||||
app.add_config_value('latex_use_xindy', default_latex_use_xindy, None, [bool])
|
||||
app.add_config_value('latex_toplevel_sectioning', None, None,
|
||||
app.add_config_value('latex_documents', default_latex_documents, False)
|
||||
app.add_config_value('latex_logo', None, False, [str])
|
||||
app.add_config_value('latex_appendices', [], False)
|
||||
app.add_config_value('latex_use_latex_multicolumn', False, False)
|
||||
app.add_config_value('latex_use_xindy', default_latex_use_xindy, False, [bool])
|
||||
app.add_config_value('latex_toplevel_sectioning', None, False,
|
||||
ENUM(None, 'part', 'chapter', 'section'))
|
||||
app.add_config_value('latex_domain_indices', True, None, [list])
|
||||
app.add_config_value('latex_show_urls', 'no', None)
|
||||
app.add_config_value('latex_show_pagerefs', False, None)
|
||||
app.add_config_value('latex_elements', {}, None)
|
||||
app.add_config_value('latex_additional_files', [], None)
|
||||
app.add_config_value('latex_theme', 'manual', None, [str])
|
||||
app.add_config_value('latex_theme_options', {}, None)
|
||||
app.add_config_value('latex_theme_path', [], None, [list])
|
||||
app.add_config_value('latex_domain_indices', True, False, [list])
|
||||
app.add_config_value('latex_show_urls', 'no', False)
|
||||
app.add_config_value('latex_show_pagerefs', False, False)
|
||||
app.add_config_value('latex_elements', {}, False)
|
||||
app.add_config_value('latex_additional_files', [], False)
|
||||
app.add_config_value('latex_theme', 'manual', False, [str])
|
||||
app.add_config_value('latex_theme_options', {}, False)
|
||||
app.add_config_value('latex_theme_path', [], False, [list])
|
||||
|
||||
app.add_config_value('latex_docclass', default_latex_docclass, None)
|
||||
app.add_config_value('latex_docclass', default_latex_docclass, False)
|
||||
|
||||
return {
|
||||
'version': 'builtin',
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
import configparser
|
||||
from os import path
|
||||
from typing import Dict
|
||||
from typing import Dict, Optional
|
||||
|
||||
from sphinx.application import Sphinx
|
||||
from sphinx.config import Config
|
||||
@ -113,14 +113,12 @@ class ThemeFactory:
|
||||
if name in self.themes:
|
||||
theme = self.themes[name]
|
||||
else:
|
||||
theme = self.find_user_theme(name)
|
||||
if not theme:
|
||||
theme = Theme(name)
|
||||
theme = self.find_user_theme(name) or Theme(name)
|
||||
|
||||
theme.update(self.config)
|
||||
return theme
|
||||
|
||||
def find_user_theme(self, name: str) -> Theme:
|
||||
def find_user_theme(self, name: str) -> Optional[Theme]:
|
||||
"""Find a theme named as *name* from latex_theme_path."""
|
||||
for theme_path in self.theme_paths:
|
||||
config_path = path.join(theme_path, name, 'theme.conf')
|
||||
|
@ -1,6 +1,6 @@
|
||||
"""Transforms for LaTeX builder."""
|
||||
|
||||
from typing import Any, Dict, List, Set, Tuple, cast
|
||||
from typing import Any, Dict, List, Optional, Set, Tuple, cast
|
||||
|
||||
from docutils import nodes
|
||||
from docutils.nodes import Element, Node
|
||||
@ -94,13 +94,17 @@ class ShowUrlsTransform(SphinxPostTransform):
|
||||
def get_docname_for_node(self, node: Node) -> str:
|
||||
while node:
|
||||
if isinstance(node, nodes.document):
|
||||
return self.env.path2doc(node['source'])
|
||||
return self.env.path2doc(node['source']) or ''
|
||||
elif isinstance(node, addnodes.start_of_file):
|
||||
return node['docname']
|
||||
else:
|
||||
node = node.parent
|
||||
|
||||
return None # never reached here. only for type hinting
|
||||
try:
|
||||
source = node['source'] # type: ignore[index]
|
||||
except TypeError:
|
||||
raise ValueError('Failed to get a docname!') from None
|
||||
raise ValueError(f'Failed to get a docname for source {source!r}!')
|
||||
|
||||
def create_footnote(self, uri: str, docname: str) -> Tuple[nodes.footnote, nodes.footnote_reference]: # NOQA
|
||||
reference = nodes.reference('', nodes.Text(uri), refuri=uri, nolinkurl=True)
|
||||
@ -355,7 +359,7 @@ class LaTeXFootnoteVisitor(nodes.NodeVisitor):
|
||||
self.footnotes: List[nodes.footnote] = footnotes
|
||||
self.pendings: List[nodes.footnote] = []
|
||||
self.table_footnotes: List[nodes.footnote] = []
|
||||
self.restricted: Element = None
|
||||
self.restricted: Optional[Element] = None
|
||||
super().__init__(document)
|
||||
|
||||
def unknown_visit(self, node: Node) -> None:
|
||||
@ -433,7 +437,7 @@ class LaTeXFootnoteVisitor(nodes.NodeVisitor):
|
||||
number = node.astext().strip()
|
||||
docname = node['docname']
|
||||
if (docname, number) in self.appeared:
|
||||
footnote = self.appeared.get((docname, number))
|
||||
footnote = self.appeared[(docname, number)]
|
||||
footnote["referred"] = True
|
||||
|
||||
mark = footnotemark('', number, refid=node['refid'])
|
||||
@ -458,7 +462,7 @@ class LaTeXFootnoteVisitor(nodes.NodeVisitor):
|
||||
if docname == footnote['docname'] and footnote['ids'][0] == node['refid']:
|
||||
return footnote
|
||||
|
||||
return None
|
||||
raise ValueError('No footnote not found for given reference node %r' % node)
|
||||
|
||||
|
||||
class BibliographyTransform(SphinxPostTransform):
|
||||
|
@ -502,32 +502,34 @@ class HyperlinkCollector(SphinxPostTransform):
|
||||
builder = cast(CheckExternalLinksBuilder, self.app.builder)
|
||||
hyperlinks = builder.hyperlinks
|
||||
|
||||
def add_uri(uri: str, node: nodes.Element) -> None:
|
||||
newuri = self.app.emit_firstresult('linkcheck-process-uri', uri)
|
||||
if newuri:
|
||||
uri = newuri
|
||||
|
||||
lineno = get_node_line(node)
|
||||
uri_info = Hyperlink(uri, self.env.docname, lineno)
|
||||
if uri not in hyperlinks:
|
||||
hyperlinks[uri] = uri_info
|
||||
|
||||
# reference nodes
|
||||
for refnode in self.document.findall(nodes.reference):
|
||||
if 'refuri' not in refnode:
|
||||
continue
|
||||
uri = refnode['refuri']
|
||||
newuri = self.app.emit_firstresult('linkcheck-process-uri', uri)
|
||||
if newuri:
|
||||
uri = newuri
|
||||
|
||||
lineno = get_node_line(refnode)
|
||||
uri_info = Hyperlink(uri, self.env.docname, lineno)
|
||||
if uri not in hyperlinks:
|
||||
hyperlinks[uri] = uri_info
|
||||
add_uri(uri, refnode)
|
||||
|
||||
# image nodes
|
||||
for imgnode in self.document.findall(nodes.image):
|
||||
uri = imgnode['candidates'].get('?')
|
||||
if uri and '://' in uri:
|
||||
newuri = self.app.emit_firstresult('linkcheck-process-uri', uri)
|
||||
if newuri:
|
||||
uri = newuri
|
||||
add_uri(uri, imgnode)
|
||||
|
||||
lineno = get_node_line(imgnode)
|
||||
uri_info = Hyperlink(uri, self.env.docname, lineno)
|
||||
if uri not in hyperlinks:
|
||||
hyperlinks[uri] = uri_info
|
||||
# raw nodes
|
||||
for rawnode in self.document.findall(nodes.raw):
|
||||
uri = rawnode.get('source')
|
||||
if uri and '://' in uri:
|
||||
add_uri(uri, rawnode)
|
||||
|
||||
|
||||
def rewrite_github_anchor(app: Sphinx, uri: str) -> Optional[str]:
|
||||
|
@ -9,7 +9,7 @@ import pdb
|
||||
import sys
|
||||
import traceback
|
||||
from os import path
|
||||
from typing import IO, Any, List
|
||||
from typing import IO, Any, List, Optional, TextIO
|
||||
|
||||
from docutils.utils import SystemMessage
|
||||
|
||||
@ -24,7 +24,9 @@ from sphinx.util.docutils import docutils_namespace, patch_docutils
|
||||
from sphinx.util.osutil import abspath, ensuredir
|
||||
|
||||
|
||||
def handle_exception(app: Sphinx, args: Any, exception: BaseException, stderr: IO = sys.stderr) -> None: # NOQA
|
||||
def handle_exception(
|
||||
app: Optional[Sphinx], args: Any, exception: BaseException, stderr: IO = sys.stderr
|
||||
) -> None:
|
||||
if isinstance(exception, bdb.BdbQuit):
|
||||
return
|
||||
|
||||
@ -222,8 +224,8 @@ def build_main(argv: List[str] = sys.argv[1:]) -> int:
|
||||
if args.color == 'no' or (args.color == 'auto' and not color_terminal()):
|
||||
nocolor()
|
||||
|
||||
status = sys.stdout
|
||||
warning = sys.stderr
|
||||
status: Optional[TextIO] = sys.stdout
|
||||
warning: Optional[TextIO] = sys.stderr
|
||||
error = sys.stderr
|
||||
|
||||
if args.quiet:
|
||||
|
@ -11,7 +11,7 @@ import os
|
||||
import subprocess
|
||||
import sys
|
||||
from os import path
|
||||
from typing import List
|
||||
from typing import List, Optional
|
||||
|
||||
import sphinx
|
||||
from sphinx.cmd.build import build_main
|
||||
@ -132,7 +132,7 @@ class Make:
|
||||
return 1
|
||||
return 0
|
||||
|
||||
def run_generic_build(self, builder: str, doctreedir: str = None) -> int:
|
||||
def run_generic_build(self, builder: str, doctreedir: Optional[str] = None) -> int:
|
||||
# compatibility with old Makefile
|
||||
papersize = os.getenv('PAPER', '')
|
||||
opts = self.opts
|
||||
|
@ -7,14 +7,14 @@ import sys
|
||||
import time
|
||||
from collections import OrderedDict
|
||||
from os import path
|
||||
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Union
|
||||
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Union
|
||||
|
||||
# try to import readline, unix specific enhancement
|
||||
try:
|
||||
import readline
|
||||
if TYPE_CHECKING and sys.platform == "win32": # always false, for type checking
|
||||
raise ImportError
|
||||
|
||||
READLINE_AVAILABLE = True
|
||||
if readline.__doc__ and 'libedit' in readline.__doc__:
|
||||
readline.parse_and_bind("bind ^I rl_complete")
|
||||
USE_LIBEDIT = True
|
||||
@ -22,7 +22,7 @@ try:
|
||||
readline.parse_and_bind("tab: complete")
|
||||
USE_LIBEDIT = False
|
||||
except ImportError:
|
||||
readline = None
|
||||
READLINE_AVAILABLE = False
|
||||
USE_LIBEDIT = False
|
||||
|
||||
from docutils.utils import column_width
|
||||
@ -130,7 +130,9 @@ def ok(x: str) -> str:
|
||||
return x
|
||||
|
||||
|
||||
def do_prompt(text: str, default: str = None, validator: Callable[[str], Any] = nonempty) -> Union[str, bool]: # NOQA
|
||||
def do_prompt(
|
||||
text: str, default: Optional[str] = None, validator: Callable[[str], Any] = nonempty
|
||||
) -> Union[str, bool]:
|
||||
while True:
|
||||
if default is not None:
|
||||
prompt = PROMPT_PREFIX + '%s [%s]: ' % (text, default)
|
||||
@ -141,7 +143,7 @@ def do_prompt(text: str, default: str = None, validator: Callable[[str], Any] =
|
||||
# sequence (see #5335). To avoid the problem, all prompts are not colored
|
||||
# on libedit.
|
||||
pass
|
||||
elif readline:
|
||||
elif READLINE_AVAILABLE:
|
||||
# pass input_mode=True if readline available
|
||||
prompt = colorize(COLOR_QUESTION, prompt, input_mode=True)
|
||||
else:
|
||||
@ -159,8 +161,8 @@ def do_prompt(text: str, default: str = None, validator: Callable[[str], Any] =
|
||||
|
||||
|
||||
class QuickstartRenderer(SphinxRenderer):
|
||||
def __init__(self, templatedir: str) -> None:
|
||||
self.templatedir = templatedir or ''
|
||||
def __init__(self, templatedir: str = '') -> None:
|
||||
self.templatedir = templatedir
|
||||
super().__init__()
|
||||
|
||||
def _has_custom_template(self, template_name: str) -> bool:
|
||||
@ -321,10 +323,11 @@ def ask_user(d: Dict[str, Any]) -> None:
|
||||
print()
|
||||
|
||||
|
||||
def generate(d: Dict, overwrite: bool = True, silent: bool = False, templatedir: str = None
|
||||
) -> None:
|
||||
def generate(
|
||||
d: Dict, overwrite: bool = True, silent: bool = False, templatedir: Optional[str] = None
|
||||
) -> None:
|
||||
"""Generate project based on values in *d*."""
|
||||
template = QuickstartRenderer(templatedir=templatedir)
|
||||
template = QuickstartRenderer(templatedir or '')
|
||||
|
||||
if 'mastertoctree' not in d:
|
||||
d['mastertoctree'] = ''
|
||||
@ -357,7 +360,7 @@ def generate(d: Dict, overwrite: bool = True, silent: bool = False, templatedir:
|
||||
ensuredir(path.join(srcdir, d['dot'] + 'templates'))
|
||||
ensuredir(path.join(srcdir, d['dot'] + 'static'))
|
||||
|
||||
def write_file(fpath: str, content: str, newline: str = None) -> None:
|
||||
def write_file(fpath: str, content: str, newline: Optional[str] = None) -> None:
|
||||
if overwrite or not path.isfile(fpath):
|
||||
if 'quiet' not in d:
|
||||
print(__('Creating file %s.') % fpath)
|
||||
|
@ -1,7 +1,7 @@
|
||||
"""Handlers for additional ReST directives."""
|
||||
|
||||
import re
|
||||
from typing import TYPE_CHECKING, Any, Dict, Generic, List, Tuple, TypeVar, cast
|
||||
from typing import TYPE_CHECKING, Any, Dict, Generic, List, Optional, Tuple, TypeVar, cast
|
||||
|
||||
from docutils import nodes
|
||||
from docutils.nodes import Node
|
||||
@ -55,9 +55,9 @@ class ObjectDescription(SphinxDirective, Generic[T]):
|
||||
|
||||
# types of doc fields that this directive handles, see sphinx.util.docfields
|
||||
doc_field_types: List[Field] = []
|
||||
domain: str = None
|
||||
objtype: str = None
|
||||
indexnode: addnodes.index = None
|
||||
domain: Optional[str] = None
|
||||
objtype: Optional[str] = None
|
||||
indexnode: Optional[addnodes.index] = None
|
||||
|
||||
# Warning: this might be removed in future version. Don't touch this from extensions.
|
||||
_doc_field_type_map: Dict[str, Tuple[Field, bool]] = {}
|
||||
|
@ -239,7 +239,7 @@ class LiteralIncludeReader:
|
||||
|
||||
def show_diff(self, location: Optional[Tuple[str, int]] = None) -> List[str]:
|
||||
new_lines = self.read_file(self.filename)
|
||||
old_filename = self.options.get('diff')
|
||||
old_filename = self.options['diff']
|
||||
old_lines = self.read_file(old_filename)
|
||||
diff = unified_diff(old_lines, new_lines, old_filename, self.filename)
|
||||
return list(diff)
|
||||
|
@ -663,7 +663,7 @@ class ASTTrailingTypeSpecName(ASTTrailingTypeSpec):
|
||||
|
||||
|
||||
class ASTFunctionParameter(ASTBase):
|
||||
def __init__(self, arg: "ASTTypeWithInit", ellipsis: bool = False) -> None:
|
||||
def __init__(self, arg: Optional["ASTTypeWithInit"], ellipsis: bool = False) -> None:
|
||||
self.arg = arg
|
||||
self.ellipsis = ellipsis
|
||||
|
||||
@ -1959,7 +1959,7 @@ class Symbol:
|
||||
if Symbol.debug_lookup:
|
||||
Symbol.debug_print(
|
||||
"no match, but fill an empty declaration, candSybmol is not None?:",
|
||||
candSymbol is not None) # NOQA
|
||||
candSymbol is not None)
|
||||
Symbol.debug_indent -= 2
|
||||
if candSymbol is not None:
|
||||
candSymbol.remove()
|
||||
@ -2614,7 +2614,7 @@ class DefinitionParser(BaseParser):
|
||||
nestedName = self._parse_nested_name()
|
||||
return ASTTrailingTypeSpecName(prefix, nestedName)
|
||||
|
||||
def _parse_parameters(self, paramMode: str) -> ASTParameters:
|
||||
def _parse_parameters(self, paramMode: str) -> Optional[ASTParameters]:
|
||||
self.skip_ws()
|
||||
if not self.skip_string('('):
|
||||
if paramMode == 'function':
|
||||
@ -2915,7 +2915,7 @@ class DefinitionParser(BaseParser):
|
||||
value = self._parse_expression_fallback(fallbackEnd, parser, allow=allowFallback)
|
||||
return ASTInitializer(value)
|
||||
|
||||
def _parse_type(self, named: Union[bool, str], outer: str = None) -> ASTType:
|
||||
def _parse_type(self, named: Union[bool, str], outer: Optional[str] = None) -> ASTType:
|
||||
"""
|
||||
named=False|'single'|True: 'single' is e.g., for function objects which
|
||||
doesn't need to name the arguments, but otherwise is a single name
|
||||
|
@ -3646,7 +3646,9 @@ class ASTTemplateParamTemplateType(ASTTemplateParam):
|
||||
def get_identifier(self) -> ASTIdentifier:
|
||||
return self.data.get_identifier()
|
||||
|
||||
def get_id(self, version: int, objectType: str = None, symbol: "Symbol" = None) -> str:
|
||||
def get_id(
|
||||
self, version: int, objectType: Optional[str] = None, symbol: Optional["Symbol"] = None
|
||||
) -> str:
|
||||
assert version >= 2
|
||||
# this is not part of the normal name mangling in C++
|
||||
if symbol:
|
||||
@ -4227,14 +4229,15 @@ class Symbol:
|
||||
else:
|
||||
return super().__setattr__(key, value)
|
||||
|
||||
def __init__(self, parent: "Symbol", identOrOp: Union[ASTIdentifier, ASTOperator],
|
||||
templateParams: Union[ASTTemplateParams, ASTTemplateIntroduction],
|
||||
templateArgs: Any, declaration: ASTDeclaration,
|
||||
docname: str, line: int) -> None:
|
||||
def __init__(self, parent: Optional["Symbol"],
|
||||
identOrOp: Union[ASTIdentifier, ASTOperator, None],
|
||||
templateParams: Union[ASTTemplateParams, ASTTemplateIntroduction, None],
|
||||
templateArgs: Any, declaration: Optional[ASTDeclaration],
|
||||
docname: Optional[str], line: Optional[int]) -> None:
|
||||
self.parent = parent
|
||||
# declarations in a single directive are linked together
|
||||
self.siblingAbove: Symbol = None
|
||||
self.siblingBelow: Symbol = None
|
||||
self.siblingAbove: Optional[Symbol] = None
|
||||
self.siblingBelow: Optional[Symbol] = None
|
||||
self.identOrOp = identOrOp
|
||||
# Ensure the same symbol for `A` is created for:
|
||||
#
|
||||
|
@ -757,12 +757,21 @@ class StandardDomain(Domain):
|
||||
if not sectname:
|
||||
continue
|
||||
else:
|
||||
toctree = next(node.findall(addnodes.toctree), None)
|
||||
if toctree and toctree.get('caption'):
|
||||
sectname = toctree.get('caption')
|
||||
if (isinstance(node, (nodes.definition_list,
|
||||
nodes.field_list)) and
|
||||
node.children):
|
||||
node = cast(nodes.Element, node.children[0])
|
||||
if isinstance(node, (nodes.field, nodes.definition_list_item)):
|
||||
node = cast(nodes.Element, node.children[0])
|
||||
if isinstance(node, (nodes.term, nodes.field_name)):
|
||||
sectname = clean_astext(node)
|
||||
else:
|
||||
# anonymous-only labels
|
||||
continue
|
||||
toctree = next(node.findall(addnodes.toctree), None)
|
||||
if toctree and toctree.get('caption'):
|
||||
sectname = toctree.get('caption')
|
||||
else:
|
||||
# anonymous-only labels
|
||||
continue
|
||||
self.labels[name] = docname, labelid, sectname
|
||||
|
||||
def add_program_option(self, program: str, name: str, docname: str, labelid: str) -> None:
|
||||
|
@ -57,7 +57,7 @@ if docutils.__version_info__[:2] <= (0, 17):
|
||||
|
||||
# This is increased every time an environment attribute is added
|
||||
# or changed to properly invalidate pickle files.
|
||||
ENV_VERSION = 56
|
||||
ENV_VERSION = 57
|
||||
|
||||
# config status
|
||||
CONFIG_OK = 1
|
||||
@ -321,7 +321,7 @@ class BuildEnvironment:
|
||||
"""
|
||||
return self.project.doc2path(docname, base)
|
||||
|
||||
def relfn2path(self, filename: str, docname: str = None) -> Tuple[str, str]:
|
||||
def relfn2path(self, filename: str, docname: Optional[str] = None) -> Tuple[str, str]:
|
||||
"""Return paths to a file referenced from a document, relative to
|
||||
documentation root and absolute.
|
||||
|
||||
@ -334,7 +334,7 @@ class BuildEnvironment:
|
||||
rel_fn = filename[1:]
|
||||
else:
|
||||
docdir = path.dirname(self.doc2path(docname or self.docname,
|
||||
base=None))
|
||||
base=False))
|
||||
rel_fn = path.join(docdir, filename)
|
||||
|
||||
return (canon_path(path.normpath(rel_fn)),
|
||||
@ -482,7 +482,9 @@ class BuildEnvironment:
|
||||
|
||||
*filename* should be absolute or relative to the source directory.
|
||||
"""
|
||||
self.included[self.docname].add(self.path2doc(filename))
|
||||
doc = self.path2doc(filename)
|
||||
if doc:
|
||||
self.included[self.docname].add(doc)
|
||||
|
||||
def note_reread(self) -> None:
|
||||
"""Add the current document to the list of documents that will
|
||||
@ -511,9 +513,14 @@ class BuildEnvironment:
|
||||
doctree.reporter = LoggingReporter(self.doc2path(docname))
|
||||
return doctree
|
||||
|
||||
def get_and_resolve_doctree(self, docname: str, builder: "Builder",
|
||||
doctree: nodes.document = None, prune_toctrees: bool = True,
|
||||
includehidden: bool = False) -> nodes.document:
|
||||
def get_and_resolve_doctree(
|
||||
self,
|
||||
docname: str,
|
||||
builder: "Builder",
|
||||
doctree: Optional[nodes.document] = None,
|
||||
prune_toctrees: bool = True,
|
||||
includehidden: bool = False
|
||||
) -> nodes.document:
|
||||
"""Read the doctree from the pickle, resolve cross-references and
|
||||
toctrees and return it.
|
||||
"""
|
||||
@ -537,7 +544,7 @@ class BuildEnvironment:
|
||||
|
||||
def resolve_toctree(self, docname: str, builder: "Builder", toctree: addnodes.toctree,
|
||||
prune: bool = True, maxdepth: int = 0, titles_only: bool = False,
|
||||
collapse: bool = False, includehidden: bool = False) -> Node:
|
||||
collapse: bool = False, includehidden: bool = False) -> Optional[Node]:
|
||||
"""Resolve a *toctree* node into individual bullet lists with titles
|
||||
as items, returning None (if no containing titles are found) or
|
||||
a new node.
|
||||
@ -577,7 +584,9 @@ class BuildEnvironment:
|
||||
def collect_relations(self) -> Dict[str, List[Optional[str]]]:
|
||||
traversed = set()
|
||||
|
||||
def traverse_toctree(parent: str, docname: str) -> Iterator[Tuple[str, str]]:
|
||||
def traverse_toctree(
|
||||
parent: Optional[str], docname: str
|
||||
) -> Iterator[Tuple[Optional[str], str]]:
|
||||
if parent == docname:
|
||||
logger.warning(__('self referenced toctree found. Ignored.'),
|
||||
location=docname, type='toc',
|
||||
|
@ -25,7 +25,7 @@ class IndexEntries:
|
||||
"""Create the real index from the collected index entries."""
|
||||
new: Dict[str, List] = {}
|
||||
|
||||
def add_entry(word: str, subword: str, main: str, link: bool = True,
|
||||
def add_entry(word: str, subword: str, main: Optional[str], link: bool = True,
|
||||
dic: Dict[str, List] = new, key: Optional[str] = None) -> None:
|
||||
# Force the word to be unicode if it's a ASCII bytestring.
|
||||
# This will solve problems with unicode normalization later.
|
||||
|
@ -1,6 +1,6 @@
|
||||
"""Toctree collector for sphinx.environment."""
|
||||
|
||||
from typing import Any, Dict, List, Set, Tuple, Type, TypeVar, cast
|
||||
from typing import Any, Dict, List, Optional, Set, Tuple, Type, TypeVar, cast
|
||||
|
||||
from docutils import nodes
|
||||
from docutils.nodes import Element, Node
|
||||
@ -66,7 +66,7 @@ class TocTreeCollector(EnvironmentCollector):
|
||||
result.extend(traverse_in_section(child, cls))
|
||||
return result
|
||||
|
||||
def build_toc(node: Element, depth: int = 1) -> nodes.bullet_list:
|
||||
def build_toc(node: Element, depth: int = 1) -> Optional[nodes.bullet_list]:
|
||||
entries: List[Element] = []
|
||||
for sectionnode in node:
|
||||
# find all toctree nodes in this section and add them
|
||||
@ -132,7 +132,9 @@ class TocTreeCollector(EnvironmentCollector):
|
||||
old_secnumbers = env.toc_secnumbers
|
||||
env.toc_secnumbers = {}
|
||||
|
||||
def _walk_toc(node: Element, secnums: Dict, depth: int, titlenode: nodes.title = None) -> None: # NOQA
|
||||
def _walk_toc(
|
||||
node: Element, secnums: Dict, depth: int, titlenode: Optional[nodes.title] = None
|
||||
) -> None:
|
||||
# titlenode is the title of the document, it will get assigned a
|
||||
# secnumber too, so that it shows up in next/prev/parent rellinks
|
||||
for subnode in node.children:
|
||||
@ -207,7 +209,7 @@ class TocTreeCollector(EnvironmentCollector):
|
||||
env.toc_fignumbers = {}
|
||||
fignum_counter: Dict[str, Dict[Tuple[int, ...], int]] = {}
|
||||
|
||||
def get_figtype(node: Node) -> str:
|
||||
def get_figtype(node: Node) -> Optional[str]:
|
||||
for domain in env.domains.values():
|
||||
figtype = domain.get_enumerable_node_type(node)
|
||||
if domain.name == 'std' and not domain.get_numfig_title(node): # type: ignore
|
||||
|
@ -1,4 +1,4 @@
|
||||
from typing import Any, Callable, Dict, List, Set, Type
|
||||
from typing import Any, Callable, Dict, List, Optional, Set, Type
|
||||
|
||||
from docutils import nodes
|
||||
from docutils.nodes import Element, Node
|
||||
@ -40,7 +40,7 @@ class DummyOptionSpec(dict):
|
||||
class DocumenterBridge:
|
||||
"""A parameters container for Documenters."""
|
||||
|
||||
def __init__(self, env: BuildEnvironment, reporter: Reporter, options: Options,
|
||||
def __init__(self, env: BuildEnvironment, reporter: Optional[Reporter], options: Options,
|
||||
lineno: int, state: Any) -> None:
|
||||
self.env = env
|
||||
self._reporter = reporter
|
||||
|
@ -27,7 +27,7 @@ class DefaultValue:
|
||||
return self.name
|
||||
|
||||
|
||||
def get_function_def(obj: Any) -> ast.FunctionDef:
|
||||
def get_function_def(obj: Any) -> Optional[ast.FunctionDef]:
|
||||
"""Get FunctionDef object from living object.
|
||||
This tries to parse original code for living object and returns
|
||||
AST node for given *obj*.
|
||||
|
@ -262,7 +262,9 @@ class Autosummary(SphinxDirective):
|
||||
|
||||
return nodes
|
||||
|
||||
def import_by_name(self, name: str, prefixes: List[str]) -> Tuple[str, Any, Any, str]:
|
||||
def import_by_name(
|
||||
self, name: str, prefixes: List[Optional[str]]
|
||||
) -> Tuple[str, Any, Any, str]:
|
||||
with mock(self.config.autosummary_mock_imports):
|
||||
try:
|
||||
return import_by_name(name, prefixes)
|
||||
@ -593,7 +595,7 @@ class ImportExceptionGroup(Exception):
|
||||
self.exceptions = list(exceptions)
|
||||
|
||||
|
||||
def get_import_prefixes_from_env(env: BuildEnvironment) -> List[str]:
|
||||
def get_import_prefixes_from_env(env: BuildEnvironment) -> List[Optional[str]]:
|
||||
"""
|
||||
Obtain current Python import prefixes (for `import_by_name`)
|
||||
from ``document.env``
|
||||
@ -614,8 +616,9 @@ def get_import_prefixes_from_env(env: BuildEnvironment) -> List[str]:
|
||||
return prefixes
|
||||
|
||||
|
||||
def import_by_name(name: str, prefixes: List[str] = [None], grouped_exception: bool = True
|
||||
) -> Tuple[str, Any, Any, str]:
|
||||
def import_by_name(
|
||||
name: str, prefixes: List[Optional[str]] = [None], grouped_exception: bool = True
|
||||
) -> Tuple[str, Any, Any, str]:
|
||||
"""Import a Python object that has the given *name*, under one of the
|
||||
*prefixes*. The first name that succeeds is used.
|
||||
"""
|
||||
@ -695,7 +698,7 @@ def _import_by_name(name: str, grouped_exception: bool = True) -> Tuple[Any, Any
|
||||
raise ImportError(*exc.args) from exc
|
||||
|
||||
|
||||
def import_ivar_by_name(name: str, prefixes: List[str] = [None],
|
||||
def import_ivar_by_name(name: str, prefixes: List[Optional[str]] = [None],
|
||||
grouped_exception: bool = True) -> Tuple[str, Any, Any, str]:
|
||||
"""Import an instance variable that has the given *name*, under one of the
|
||||
*prefixes*. The first name that succeeds is used.
|
||||
@ -746,14 +749,14 @@ class AutoLink(SphinxRole):
|
||||
return objects, errors
|
||||
|
||||
|
||||
def get_rst_suffix(app: Sphinx) -> str:
|
||||
def get_rst_suffix(app: Sphinx) -> Optional[str]:
|
||||
def get_supported_format(suffix: str) -> Tuple[str, ...]:
|
||||
parser_class = app.registry.get_source_parsers().get(suffix)
|
||||
if parser_class is None:
|
||||
return ('restructuredtext',)
|
||||
return parser_class.supported
|
||||
|
||||
suffix: str = None
|
||||
suffix = None
|
||||
for suffix in app.config.source_suffix:
|
||||
if 'restructuredtext' in get_supported_format(suffix):
|
||||
return suffix
|
||||
@ -766,7 +769,7 @@ def process_generate_options(app: Sphinx) -> None:
|
||||
|
||||
if genfiles is True:
|
||||
env = app.builder.env
|
||||
genfiles = [env.doc2path(x, base=None) for x in env.found_docs
|
||||
genfiles = [env.doc2path(x, base=False) for x in env.found_docs
|
||||
if os.path.isfile(env.doc2path(x))]
|
||||
elif genfiles is False:
|
||||
pass
|
||||
|
@ -22,7 +22,7 @@ import re
|
||||
import sys
|
||||
from gettext import NullTranslations
|
||||
from os import path
|
||||
from typing import Any, Dict, List, NamedTuple, Sequence, Set, Tuple, Type
|
||||
from typing import Any, Dict, List, NamedTuple, Optional, Sequence, Set, Tuple, Type
|
||||
|
||||
from jinja2 import TemplateNotFound
|
||||
from jinja2.sandbox import SandboxedEnvironment
|
||||
@ -212,7 +212,8 @@ def generate_autosummary_content(name: str, obj: Any, parent: Any,
|
||||
template: AutosummaryRenderer, template_name: str,
|
||||
imported_members: bool, app: Any,
|
||||
recursive: bool, context: Dict,
|
||||
modname: str = None, qualname: str = None) -> str:
|
||||
modname: Optional[str] = None,
|
||||
qualname: Optional[str] = None) -> str:
|
||||
doc = get_documenter(app, obj, parent)
|
||||
|
||||
def skip_member(obj: Any, name: str, objtype: str) -> bool:
|
||||
@ -351,8 +352,8 @@ def generate_autosummary_content(name: str, obj: Any, parent: Any,
|
||||
return template.render(doc.objtype, ns)
|
||||
|
||||
|
||||
def generate_autosummary_docs(sources: List[str], output_dir: str = None,
|
||||
suffix: str = '.rst', base_path: str = None,
|
||||
def generate_autosummary_docs(sources: List[str], output_dir: Optional[str] = None,
|
||||
suffix: str = '.rst', base_path: Optional[str] = None,
|
||||
imported_members: bool = False, app: Any = None,
|
||||
overwrite: bool = True, encoding: str = 'utf-8') -> None:
|
||||
showed_sources = sorted(sources)
|
||||
@ -456,7 +457,9 @@ def find_autosummary_in_files(filenames: List[str]) -> List[AutosummaryEntry]:
|
||||
return documented
|
||||
|
||||
|
||||
def find_autosummary_in_docstring(name: str, filename: str = None) -> List[AutosummaryEntry]:
|
||||
def find_autosummary_in_docstring(
|
||||
name: str, filename: Optional[str] = None
|
||||
) -> List[AutosummaryEntry]:
|
||||
"""Find out what items are documented in the given object's docstring.
|
||||
|
||||
See `find_autosummary_in_lines`.
|
||||
@ -476,8 +479,9 @@ def find_autosummary_in_docstring(name: str, filename: str = None) -> List[Autos
|
||||
return []
|
||||
|
||||
|
||||
def find_autosummary_in_lines(lines: List[str], module: str = None, filename: str = None
|
||||
) -> List[AutosummaryEntry]:
|
||||
def find_autosummary_in_lines(
|
||||
lines: List[str], module: Optional[str] = None, filename: Optional[str] = None
|
||||
) -> List[AutosummaryEntry]:
|
||||
"""Find out what items appear in autosummary:: directives in the
|
||||
given lines.
|
||||
|
||||
@ -501,7 +505,7 @@ def find_autosummary_in_lines(lines: List[str], module: str = None, filename: st
|
||||
documented: List[AutosummaryEntry] = []
|
||||
|
||||
recursive = False
|
||||
toctree: str = None
|
||||
toctree: Optional[str] = None
|
||||
template = None
|
||||
current_module = module
|
||||
in_autosummary = False
|
||||
|
@ -45,11 +45,11 @@ def is_allowed_version(spec: str, version: str) -> bool:
|
||||
|
||||
Some examples:
|
||||
|
||||
>>> is_allowed_version('3.3', '<=3.5')
|
||||
>>> is_allowed_version('<=3.5', '3.3')
|
||||
True
|
||||
>>> is_allowed_version('3.3', '<=3.2')
|
||||
>>> is_allowed_version('<=3.2', '3.3')
|
||||
False
|
||||
>>> is_allowed_version('3.3', '>3.2, <4.0')
|
||||
>>> is_allowed_version('>3.2, <4.0', '3.3')
|
||||
True
|
||||
"""
|
||||
return Version(version) in SpecifierSet(spec)
|
||||
|
@ -42,14 +42,14 @@ class ClickableMapDefinition:
|
||||
href_re = re.compile('href=".*?"')
|
||||
|
||||
def __init__(self, filename: str, content: str, dot: str = '') -> None:
|
||||
self.id: str = None
|
||||
self.id: Optional[str] = None
|
||||
self.filename = filename
|
||||
self.content = content.splitlines()
|
||||
self.clickable: List[str] = []
|
||||
|
||||
self.parse(dot=dot)
|
||||
|
||||
def parse(self, dot: str = None) -> None:
|
||||
def parse(self, dot: str) -> None:
|
||||
matched = self.maptag_re.match(self.content[0])
|
||||
if not matched:
|
||||
raise GraphvizError('Invalid clickable map file found: %s' % self.filename)
|
||||
@ -210,7 +210,8 @@ class GraphvizSimple(SphinxDirective):
|
||||
|
||||
|
||||
def render_dot(self: SphinxTranslator, code: str, options: Dict, format: str,
|
||||
prefix: str = 'graphviz', filename: Optional[str] = None) -> Tuple[str, str]:
|
||||
prefix: str = 'graphviz', filename: Optional[str] = None
|
||||
) -> Tuple[Optional[str], Optional[str]]:
|
||||
"""Render graphviz code into a PNG or PDF output file."""
|
||||
graphviz_dot = options.get('graphviz_dot', self.builder.config.graphviz_dot)
|
||||
hashkey = (code + str(options) + str(graphviz_dot) +
|
||||
@ -224,7 +225,7 @@ def render_dot(self: SphinxTranslator, code: str, options: Dict, format: str,
|
||||
return relfn, outfn
|
||||
|
||||
if (hasattr(self.builder, '_graphviz_warned_dot') and
|
||||
self.builder._graphviz_warned_dot.get(graphviz_dot)): # type: ignore # NOQA
|
||||
self.builder._graphviz_warned_dot.get(graphviz_dot)): # type: ignore[attr-defined]
|
||||
return None, None
|
||||
|
||||
ensuredir(path.dirname(outfn))
|
||||
@ -262,8 +263,9 @@ def render_dot(self: SphinxTranslator, code: str, options: Dict, format: str,
|
||||
|
||||
|
||||
def render_dot_html(self: HTMLTranslator, node: graphviz, code: str, options: Dict,
|
||||
prefix: str = 'graphviz', imgcls: str = None, alt: str = None,
|
||||
filename: str = None) -> Tuple[str, str]:
|
||||
prefix: str = 'graphviz', imgcls: Optional[str] = None,
|
||||
alt: Optional[str] = None, filename: Optional[str] = None
|
||||
) -> Tuple[str, str]:
|
||||
format = self.builder.config.graphviz_output_format
|
||||
try:
|
||||
if format not in ('png', 'svg'):
|
||||
@ -318,7 +320,7 @@ def html_visit_graphviz(self: HTMLTranslator, node: graphviz) -> None:
|
||||
|
||||
|
||||
def render_dot_latex(self: LaTeXTranslator, node: graphviz, code: str,
|
||||
options: Dict, prefix: str = 'graphviz', filename: str = None
|
||||
options: Dict, prefix: str = 'graphviz', filename: Optional[str] = None
|
||||
) -> None:
|
||||
try:
|
||||
fname, outfn = render_dot(self, code, options, 'pdf', prefix, filename)
|
||||
|
@ -154,7 +154,7 @@ def convert_dvi_to_image(command: List[str], name: str) -> Tuple[str, str]:
|
||||
raise MathExtError('%s exited with error' % name, exc.stderr, exc.stdout) from exc
|
||||
|
||||
|
||||
def convert_dvi_to_png(dvipath: str, builder: Builder) -> Tuple[str, int]:
|
||||
def convert_dvi_to_png(dvipath: str, builder: Builder) -> Tuple[str, Optional[int]]:
|
||||
"""Convert DVI file to PNG image."""
|
||||
tempdir = ensure_tempdir(builder)
|
||||
filename = path.join(tempdir, 'math.png')
|
||||
@ -180,7 +180,7 @@ def convert_dvi_to_png(dvipath: str, builder: Builder) -> Tuple[str, int]:
|
||||
return filename, depth
|
||||
|
||||
|
||||
def convert_dvi_to_svg(dvipath: str, builder: Builder) -> Tuple[str, int]:
|
||||
def convert_dvi_to_svg(dvipath: str, builder: Builder) -> Tuple[str, Optional[int]]:
|
||||
"""Convert DVI file to SVG image."""
|
||||
tempdir = ensure_tempdir(builder)
|
||||
filename = path.join(tempdir, 'math.svg')
|
||||
@ -204,7 +204,7 @@ def convert_dvi_to_svg(dvipath: str, builder: Builder) -> Tuple[str, int]:
|
||||
return filename, depth
|
||||
|
||||
|
||||
def render_math(self: HTMLTranslator, math: str) -> Tuple[str, int]:
|
||||
def render_math(self: HTMLTranslator, math: str) -> Tuple[Optional[str], Optional[int]]:
|
||||
"""Render the LaTeX math expression *math* using latex and dvipng or
|
||||
dvisvgm.
|
||||
|
||||
|
@ -55,7 +55,7 @@ class peek_iter:
|
||||
def __iter__(self) -> "peek_iter":
|
||||
return self
|
||||
|
||||
def __next__(self, n: int = None) -> Any:
|
||||
def __next__(self, n: Optional[int] = None) -> Any:
|
||||
return self.next(n)
|
||||
|
||||
def _fillcache(self, n: Optional[int]) -> None:
|
||||
@ -84,7 +84,7 @@ class peek_iter:
|
||||
"""
|
||||
return self.peek() != self.sentinel
|
||||
|
||||
def next(self, n: int = None) -> Any:
|
||||
def next(self, n: Optional[int] = None) -> Any:
|
||||
"""Get the next item or `n` items of the iterator.
|
||||
|
||||
Parameters
|
||||
|
@ -2,17 +2,15 @@
|
||||
|
||||
from functools import partial
|
||||
from importlib import import_module
|
||||
from typing import Any, Dict, Optional
|
||||
from typing import Any, Dict, Optional, Type, Union
|
||||
|
||||
from packaging import version
|
||||
from pygments import __version__ as pygmentsversion
|
||||
from pygments import highlight
|
||||
from pygments.filters import ErrorToken
|
||||
from pygments.formatter import Formatter
|
||||
from pygments.formatters import HtmlFormatter, LatexFormatter
|
||||
from pygments.lexer import Lexer
|
||||
from pygments.lexers import (CLexer, Python3Lexer, PythonConsoleLexer, PythonLexer, RstLexer,
|
||||
TextLexer, get_lexer_by_name, guess_lexer)
|
||||
from pygments.lexers import (CLexer, PythonConsoleLexer, PythonLexer, RstLexer, TextLexer,
|
||||
get_lexer_by_name, guess_lexer)
|
||||
from pygments.style import Style
|
||||
from pygments.styles import get_style_by_name
|
||||
from pygments.util import ClassNotFound
|
||||
@ -24,12 +22,10 @@ from sphinx.util import logging, texescape
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
lexers: Dict[str, Lexer] = {}
|
||||
lexer_classes: Dict[str, Lexer] = {
|
||||
lexer_classes: Dict[str, Union[Type[Lexer], 'partial[Lexer]']] = {
|
||||
'none': partial(TextLexer, stripnl=False),
|
||||
'python': partial(PythonLexer, stripnl=False),
|
||||
'python3': partial(Python3Lexer, stripnl=False),
|
||||
'pycon': partial(PythonConsoleLexer, stripnl=False),
|
||||
'pycon3': partial(PythonConsoleLexer, python3=True, stripnl=False),
|
||||
'rest': partial(RstLexer, stripnl=False),
|
||||
'c': partial(CLexer, stripnl=False),
|
||||
}
|
||||
@ -76,20 +72,6 @@ _LATEX_ADD_STYLES = r'''
|
||||
\protected\def\PYG#1#2{\PYG@reset\PYG@toks#1+\relax+{\PYG@do{#2}}}
|
||||
\makeatother
|
||||
'''
|
||||
# fix extra space between lines when Pygments highlighting uses \fcolorbox
|
||||
# add a {..} to limit \fboxsep scope, and force \fcolorbox use correct value
|
||||
# cf pygments #1708 which makes this unneeded for Pygments > 2.7.4
|
||||
_LATEX_ADD_STYLES_FIXPYG = r'''
|
||||
\makeatletter
|
||||
% fix for Pygments <= 2.7.4
|
||||
\let\spx@original@fcolorbox\fcolorbox
|
||||
\def\spx@fixpyg@fcolorbox{\fboxsep-\fboxrule\spx@original@fcolorbox}
|
||||
\protected\def\PYG#1#2{\PYG@reset\PYG@toks#1+\relax+%
|
||||
{\let\fcolorbox\spx@fixpyg@fcolorbox\PYG@do{#2}}}
|
||||
\makeatother
|
||||
'''
|
||||
if version.parse(pygmentsversion).release <= (2, 7, 4):
|
||||
_LATEX_ADD_STYLES += _LATEX_ADD_STYLES_FIXPYG
|
||||
|
||||
|
||||
class PygmentsBridge:
|
||||
@ -132,17 +114,12 @@ class PygmentsBridge:
|
||||
opts = {}
|
||||
|
||||
# find out which lexer to use
|
||||
if lang in ('py', 'python'):
|
||||
if lang in {'py', 'python', 'py3', 'python3', 'default'}:
|
||||
if source.startswith('>>>'):
|
||||
# interactive session
|
||||
lang = 'pycon'
|
||||
else:
|
||||
lang = 'python'
|
||||
elif lang in ('py3', 'python3', 'default'):
|
||||
if source.startswith('>>>'):
|
||||
lang = 'pycon3'
|
||||
else:
|
||||
lang = 'python3'
|
||||
|
||||
if lang in lexers:
|
||||
# just return custom lexers here (without installing raiseonerror filter)
|
||||
|
@ -140,7 +140,7 @@ def init(locale_dirs: List[Optional[str]], language: Optional[str],
|
||||
return translator, has_translation
|
||||
|
||||
|
||||
def setlocale(category: int, value: Union[str, Iterable[str]] = None) -> None:
|
||||
def setlocale(category: int, value: Union[str, Iterable[str], None] = None) -> None:
|
||||
"""Update locale settings.
|
||||
|
||||
This does not throw any exception even if update fails.
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Abdullah ahmed <Alhadab@hotmail.co.uk>, 2020\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n"
|
||||
@ -1884,7 +1884,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3100,58 +3100,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "مثال"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "أمثلة"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "ملاحظات"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "مراجع"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n"
|
||||
@ -1882,7 +1882,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3098,58 +3098,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2009\n"
|
||||
"Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "প্যারামিটার"
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2009\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Paràmetres"
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Julien Malard <julien.malard@mail.mcgill.ca>, 2019\n"
|
||||
"Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Jalajöj"
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "Tz'etb'äl"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Tz'etb'äl"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "Jalajöj chïk"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Vilibald W. <vilibald.wanca@gmail.com>, 2014-2015\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n"
|
||||
@ -1884,7 +1884,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parametry"
|
||||
|
||||
@ -3100,58 +3100,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Geraint Palmer <palmer.geraint@googlemail.com>, 2016\n"
|
||||
"Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n"
|
||||
@ -1884,7 +1884,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Paramedrau"
|
||||
|
||||
@ -3100,58 +3100,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2021\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n"
|
||||
@ -1886,7 +1886,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parametre"
|
||||
|
||||
@ -3102,58 +3102,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Nøgleordsargumenter"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Eksempler"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "Andre parametre"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "Referencer"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Jean-François B. <jfbu@free.fr>, 2018\n"
|
||||
"Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n"
|
||||
@ -1886,7 +1886,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parameter"
|
||||
|
||||
@ -3102,58 +3102,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2021\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n"
|
||||
@ -1885,7 +1885,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Παράμετροι"
|
||||
|
||||
@ -3101,58 +3101,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Ορίσματα λέξης-κλειδί"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "Παράδειγμα"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Παραδείγματα"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "Σημειώσεις"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "Άλλες παράμετροι"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "Αναφορές"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "Προειδοποιήσεις"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "Αποδόσεις"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n"
|
||||
@ -1882,7 +1882,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3098,58 +3098,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+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"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n"
|
||||
@ -1882,7 +1882,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3098,58 +3098,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Tatsuro YOKOTA <hidaruma@outlook.jp>, 2021\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n"
|
||||
@ -1884,7 +1884,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parametroj"
|
||||
|
||||
@ -3100,58 +3100,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "Avertoj"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2016,2021\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n"
|
||||
@ -1890,7 +1890,7 @@ msgid "%s (C %s)"
|
||||
msgstr "%s (C %s)"
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parámetros"
|
||||
|
||||
@ -3106,58 +3106,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr "documentar exactamente los miembros en module __all__ attribute. (por defecto: %(default)s)"
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumentos de palabras clave"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "Ejemplo"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Ejemplos"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "Otros parámetros"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr "Recibe"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "Avisos"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "Campos"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr "conjunto de valores no válidos (falta la llave de cierre): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr "conjunto de valor no válido (falta llave de apertura): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr "literal de cadena con formato incorrecto (falta la comilla de cierre): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr "literal de cadena con formato incorrecto (falta la comilla de apertura): %s"
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Ivar Smolin <okul@linux.ee>, 2013-2022\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n"
|
||||
@ -1886,7 +1886,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parameetrid"
|
||||
|
||||
@ -3102,58 +3102,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Võtmesõnadega argumendid"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "Näide"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Näited"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "Märkused"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2018\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n"
|
||||
@ -1884,7 +1884,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parametroak"
|
||||
|
||||
@ -3100,58 +3100,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Hadi F <h_adi_f@yahoo.com>, 2020-2021\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n"
|
||||
@ -1886,7 +1886,7 @@ msgid "%s (C %s)"
|
||||
msgstr "%s (C %s)"
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "پارامترها"
|
||||
|
||||
@ -3102,58 +3102,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "نشانوندهای کلیدی"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "مثال"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "نمونهها"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "یادداشتها"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "مؤلّفههای دیگر"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr "دریافتها"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "منابع"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "هشدارها"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "فرآورده"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr "مقدار نامعتبر تعیین شده (بدون کمانک انتهایی): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr "مقدار نامعتبر تعیین شده (بدون کمانک ابتدایی): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr "رشتهمتن ادبی ناقص (بدون علامت نقلقول انتهایی): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr "رشتهمتن ادبی ناقص (بدون علامت نقلقول ابتدایی): %s"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2009\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -34,7 +34,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Jean-François B. <jfbu@free.fr>, 2017-2019,2022\n"
|
||||
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n"
|
||||
@ -1909,7 +1909,7 @@ msgid "%s (C %s)"
|
||||
msgstr "%s (C %s)"
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Paramètres"
|
||||
|
||||
@ -3125,58 +3125,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr "documenter exactement les membres dans l'attribut __all__ du module. (par défaut : %(default)s)"
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Arguments de mots-clés"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "Exemple"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Exemples"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "Autres paramètres"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr "Reçoit"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "Références"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "Avertissements"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "Yields"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr "ensemble invalide de valeurs (accolade fermante manquante) : %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr "ensemble invalide de valeurs (accolade ouvrante manquante) :%s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr "chaîne littérale malformée (guillemet fermant manquant) : %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr "chaîne littérale malformée (guillemet ouvrant manquant) : %s"
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n"
|
||||
@ -1882,7 +1882,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3098,58 +3098,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2011\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "פרמטרים"
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Sumanjali Damarla <damarlasumanjali@gmail.com>, 2020\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n"
|
||||
@ -1886,7 +1886,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "मापदण्ड"
|
||||
|
||||
@ -3102,58 +3102,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "मुख्य शब्दों के चर-पद"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "उदाहरण"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "कुछ उदाहरण"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "टिप्पणियाँ"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "अन्य मापदण्ड"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "सन्दर्भ"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "चेतावनी देता है"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "मिलता है"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n"
|
||||
@ -1882,7 +1882,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3098,58 +3098,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Mario Šarić, 2015-2020\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parametri"
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumenti"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Primjeri"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+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"
|
||||
@ -1888,7 +1888,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Paraméterek"
|
||||
|
||||
@ -3104,58 +3104,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: oon arfiandwi <oon.arfiandwi@gmail.com>, 2019-2020\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n"
|
||||
@ -1887,7 +1887,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parameter"
|
||||
|
||||
@ -3103,58 +3103,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumen Kata Kunci"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "Contoh"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Contoh-contoh"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "Catatan"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "Parameter lainnya"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "Referensi"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "Peringatkan"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "Hasil"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Tryggvi Kalman <tkj3@hi.is>, 2021\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Antonari Palmio, 2022\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n"
|
||||
@ -1888,7 +1888,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parametri"
|
||||
|
||||
@ -3104,58 +3104,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argomenti parole chiave"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "Esempi"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -24,7 +24,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020-2022\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n"
|
||||
@ -1899,7 +1899,7 @@ msgid "%s (C %s)"
|
||||
msgstr "%s (C %s)"
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "パラメータ"
|
||||
|
||||
@ -3115,58 +3115,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr "モジュール __all__ 属性に含まれるメンバーのみを対象としたドキュメントを作成します。(デフォルト: %(default)s)"
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "キーワード引数"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "サンプル"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "サンプル"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "メモ"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "その他のパラメータ"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr "受け取る"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "参照"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "警告"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "列挙"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr "無効な値セット (終了括弧がありません): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr "無効な値セット (開始括弧がありません): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr "不正な文字列リテラル (終了引用符がありません): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr "不正な文字列リテラル (開始引用符がありません): %s"
|
||||
|
Binary file not shown.
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: YT H <dev@theYT.net>, 2019-2022\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n"
|
||||
@ -1884,7 +1884,7 @@ msgid "%s (C %s)"
|
||||
msgstr "%s (C %s)"
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "매개변수"
|
||||
|
||||
@ -3100,58 +3100,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr "모듈 __all__ 속성의 구성원만 정확히 문서화합니다. (기본값: %(default)s)"
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "키워드 매개변수"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr "예제"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr "예제"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr "참고"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr "기타 매개변수"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr "수신"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr "참조"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr "경고"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr "생성"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr "잘못된 값 세트 (닫는 중괄호 누락): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr "잘못된 값 세트 (여는 중괄호 누락): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr "잘못된 문자열 리터럴 (닫는 따옴표 누락): %s"
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr "잘못된 문자열 리터럴 (여는 따옴표 누락): %s"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-07-31 00:21+0000\n"
|
||||
"POT-Creation-Date: 2022-08-07 00:24+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: DALIUS DOBRAVOLSKAS <DALIUS@SANDBOX.LT>, 2010\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n"
|
||||
@ -1883,7 +1883,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7419
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:749
|
||||
#: sphinx/domains/python.py:435 sphinx/ext/napoleon/docstring.py:751
|
||||
msgid "Parameters"
|
||||
msgstr "Parametrai"
|
||||
|
||||
@ -3099,58 +3099,58 @@ msgid ""
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:716
|
||||
#: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:718
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:670
|
||||
#: sphinx/ext/napoleon/docstring.py:672
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:671
|
||||
#: sphinx/ext/napoleon/docstring.py:673
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:731
|
||||
#: sphinx/ext/napoleon/docstring.py:733
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:740
|
||||
#: sphinx/ext/napoleon/docstring.py:742
|
||||
msgid "Other Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:776
|
||||
#: sphinx/ext/napoleon/docstring.py:778
|
||||
msgid "Receives"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:780
|
||||
#: sphinx/ext/napoleon/docstring.py:782
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:812
|
||||
#: sphinx/ext/napoleon/docstring.py:814
|
||||
msgid "Warns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:816
|
||||
#: sphinx/ext/napoleon/docstring.py:818
|
||||
msgid "Yields"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:986
|
||||
#: sphinx/ext/napoleon/docstring.py:988
|
||||
#, python-format
|
||||
msgid "invalid value set (missing closing brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:993
|
||||
#: sphinx/ext/napoleon/docstring.py:995
|
||||
#, python-format
|
||||
msgid "invalid value set (missing opening brace): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1000
|
||||
#: sphinx/ext/napoleon/docstring.py:1002
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing closing quote): %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/docstring.py:1007
|
||||
#: sphinx/ext/napoleon/docstring.py:1009
|
||||
#, python-format
|
||||
msgid "malformed string literal (missing opening quote): %s"
|
||||
msgstr ""
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user