mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch '4.x'
This commit is contained in:
1
.github/workflows/transifex.yml
vendored
1
.github/workflows/transifex.yml
vendored
@@ -53,3 +53,4 @@ jobs:
|
||||
commit-message: 'Update message catalogs'
|
||||
branch: bot/pull-translations
|
||||
title: Update message catalogs
|
||||
labels: i18n
|
||||
|
20
CHANGES
20
CHANGES
@@ -41,19 +41,29 @@ Deprecated
|
||||
Features added
|
||||
--------------
|
||||
|
||||
* #9815: html theme: Wrap sidebar components in div to allow customizing their
|
||||
layout via CSS
|
||||
* #9831: Autosummary now documents only the members specified in a module's
|
||||
``__all__`` attribute if :confval:`autosummary_ignore_module_all` is set to
|
||||
``False``. The default behaviour is unchanged. Autogen also now supports
|
||||
this behavior with the ``--respect-module-all`` switch.
|
||||
* #9800: extlinks: Emit warning if a hardcoded link is replaceable
|
||||
by an extlink, suggesting a replacement.
|
||||
* #9815: html theme: Wrap sidebar components in div to allow customizing their
|
||||
layout via CSS
|
||||
* #9899: py domain: Allows to specify cross-reference specifier (``.`` and
|
||||
``~``) as ``:type:`` option
|
||||
* #9894: linkcheck: add option ``linkcheck_exclude_documents`` to disable link
|
||||
checking in matched documents.
|
||||
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
* #9866: autodoc: doccoment for the imported class was ignored
|
||||
* #9866: autodoc: doccomment for the imported class was ignored
|
||||
* #9883: autodoc: doccomment for the alias to mocked object was ignored
|
||||
* #9908: autodoc: debug message is shown on building document using NewTypes
|
||||
with Python 3.10
|
||||
* #9878: mathjax: MathJax configuration is placed after loading MathJax itself
|
||||
* #9857: Generated RFC links use outdated base url
|
||||
* #9909: HTML, prevent line-wrapping in literal text.
|
||||
|
||||
Testing
|
||||
--------
|
||||
@@ -94,7 +104,7 @@ Bugs fixed
|
||||
* #9838: autodoc: AttributeError is raised on building document for functions
|
||||
decorated by functools.lru_cache
|
||||
* #9879: autodoc: AttributeError is raised on building document for an object
|
||||
having invalid __doc__ atribute
|
||||
having invalid __doc__ attribute
|
||||
* #9844: autodoc: Failed to process a function wrapped with functools.partial if
|
||||
:confval:`autodoc_preserve_defaults` enabled
|
||||
* #9872: html: Class namespace collision between autodoc signatures and
|
||||
@@ -179,7 +189,7 @@ Bugs fixed
|
||||
* #9752: autodoc: Failed to detect type annotation for slots attribute
|
||||
* #9756: autodoc: Crashed if classmethod does not have __func__ attribute
|
||||
* #9757: autodoc: :confval:`autodoc_inherit_docstrings` does not effect to
|
||||
overriden classmethods
|
||||
overridden classmethods
|
||||
* #9781: autodoc: :confval:`autodoc_preserve_defaults` does not support
|
||||
hexadecimal numeric
|
||||
* #9630: autosummary: Failed to build summary table if :confval:`primary_domain`
|
||||
|
2
EXAMPLES
2
EXAMPLES
@@ -454,7 +454,7 @@ Books produced using Sphinx
|
||||
* `"Theoretical Physics Reference" <https://www.theoretical-physics.net/>`__
|
||||
* `"The Varnish Book" <https://info.varnish-software.com/the-varnish-book>`__
|
||||
|
||||
Theses produced using Sphinx
|
||||
These produced using Sphinx
|
||||
----------------------------
|
||||
|
||||
* `"A Web-Based System for Comparative Analysis of OpenStreetMap Data by the Use
|
||||
|
@@ -109,6 +109,7 @@ texinfo_documents = [
|
||||
intersphinx_mapping = {
|
||||
'python': ('https://docs.python.org/3/', None),
|
||||
'requests': ('https://requests.readthedocs.io/en/master', None),
|
||||
'readthedocs': ('https://docs.readthedocs.io/en/stable', None),
|
||||
}
|
||||
|
||||
# Sphinx document translation with sphinx gettext feature uses these settings:
|
||||
|
@@ -9,7 +9,7 @@ from sphinx.ext.autodoc import ClassDocumenter, bool_option
|
||||
|
||||
class IntEnumDocumenter(ClassDocumenter):
|
||||
objtype = 'intenum'
|
||||
directivetype = 'class'
|
||||
directivetype = ClassDocumenter.objtype
|
||||
priority = 10 + ClassDocumenter.priority
|
||||
option_spec = dict(ClassDocumenter.option_spec)
|
||||
option_spec['hex'] = bool_option
|
||||
@@ -18,7 +18,10 @@ class IntEnumDocumenter(ClassDocumenter):
|
||||
def can_document_member(cls,
|
||||
member: Any, membername: str,
|
||||
isattr: bool, parent: Any) -> bool:
|
||||
return isinstance(member, IntEnum)
|
||||
try:
|
||||
return issubclass(member, IntEnum)
|
||||
except TypeError:
|
||||
return False
|
||||
|
||||
def add_directive_header(self, sig: str) -> None:
|
||||
super().add_directive_header(sig)
|
||||
@@ -36,14 +39,13 @@ class IntEnumDocumenter(ClassDocumenter):
|
||||
use_hex = self.options.hex
|
||||
self.add_line('', source_name)
|
||||
|
||||
for enum_value in enum_object:
|
||||
the_value_name = enum_value.name
|
||||
the_value_value = enum_value.value
|
||||
for the_member_name, enum_member in enum_object.__members__.items():
|
||||
the_member_value = enum_member.value
|
||||
if use_hex:
|
||||
the_value_value = hex(the_value_value)
|
||||
the_member_value = hex(the_member_value)
|
||||
|
||||
self.add_line(
|
||||
f"**{the_value_name}**: {the_value_value}", source_name)
|
||||
f"**{the_member_name}**: {the_member_value}", source_name)
|
||||
self.add_line('', source_name)
|
||||
|
||||
|
||||
|
279
doc/tutorial/deploying.rst
Normal file
279
doc/tutorial/deploying.rst
Normal file
@@ -0,0 +1,279 @@
|
||||
Appendix: Deploying a Sphinx project online
|
||||
===========================================
|
||||
|
||||
When you are ready to show your documentation project to the world, there are
|
||||
many options available to do so. Since the HTML generated by Sphinx is static,
|
||||
you can decouple the process of building your HTML documentation from hosting
|
||||
such files in the platform of your choice. You will not need a sophisticated
|
||||
server running Python: virtually every web hosting service will suffice.
|
||||
|
||||
Therefore, the challenge is less how or where to serve the static HTML, but
|
||||
rather how to pick a workflow that automatically updates the deployed
|
||||
documentation every time there is a change in the source files.
|
||||
|
||||
The following sections describe some of the available options to deploy
|
||||
your online documentation, and give some background information. If you want
|
||||
to go directly to the practical part, you can skip to :ref:`publishing-sources`.
|
||||
|
||||
Sphinx-friendly deployment options
|
||||
----------------------------------
|
||||
|
||||
There are several possible options you have to host your Sphinx documentation.
|
||||
Some of them are:
|
||||
|
||||
**Read the Docs**
|
||||
`Read the Docs`_ is an online service specialized in hosting technical
|
||||
documentation written in Sphinx, as well as MkDocs. They have a
|
||||
number of extra features, such as versioned documentation, traffic and
|
||||
search analytics, custom domains, user-defined redirects, and more.
|
||||
|
||||
**GitHub Pages**
|
||||
`GitHub Pages`_ is a simple static web hosting tightly integrated with
|
||||
`GitHub`_: static HTML is served from one of the branches of a project,
|
||||
and usually sources are stored in another branch so that the output
|
||||
can be updated every time the sources change (for example using `GitHub
|
||||
Actions`_). It is free to use and supports custom domains.
|
||||
|
||||
**GitLab Pages**
|
||||
`GitLab Pages`_ is a similar concept to GitHub Pages, integrated with
|
||||
`GitLab`_ and usually automated with `GitLab CI`_ instead.
|
||||
|
||||
**Netlify**
|
||||
`Netlify`_ is a sophisticated hosting for static sites enhanced by
|
||||
client-side web technologies like JavaScript (so-called `"Jamstack"`_).
|
||||
They offer support for headless content management systems and
|
||||
serverless computing.
|
||||
|
||||
**Your own server**
|
||||
You can always use your own web server to host Sphinx HTML documentation.
|
||||
It is the option that gives more flexibility, but also more complexity.
|
||||
|
||||
All these options have zero cost, with the option of paying for extra features.
|
||||
|
||||
.. _Read the Docs: https://readthedocs.org/
|
||||
.. _GitHub Pages: https://pages.github.com/
|
||||
.. _GitHub: https://github.com/
|
||||
.. _GitHub Actions: https://github.com/features/actions
|
||||
.. _GitLab Pages: https://about.gitlab.com/stages-devops-lifecycle/pages/
|
||||
.. _GitLab: https://gitlab.com/
|
||||
.. _GitLab CI: https://about.gitlab.com/stages-devops-lifecycle/continuous-integration/
|
||||
.. _Netlify: https://www.netlify.com/
|
||||
.. _"Jamstack": https://jamstack.org/
|
||||
|
||||
Embracing the "Docs as Code" philosophy
|
||||
---------------------------------------
|
||||
|
||||
The free offerings of most of the options listed above require your
|
||||
documentation sources to be publicly available. Moreover, these services
|
||||
expect you to use a `Version Control System`_, a technology that tracks the
|
||||
evolution of a collection of files as a series of snapshots ("commits").
|
||||
The practice of writing documentation in plain text files with the same tools
|
||||
as the ones used for software development is commonly known as `"Docs as Code"`_.
|
||||
|
||||
The most popular Version Control System nowadays is Git_, a free and open
|
||||
source tool that is the backbone of services like GitHub and GitLab.
|
||||
Since both Read the Docs and Netlify have integrations with GitHub and GitLab,
|
||||
and both GitHub and GitLab have an integrated Pages product, the most effective
|
||||
way of automatically build your documentation online is to upload your sources
|
||||
to either of these Git hosting services.
|
||||
|
||||
.. _Version Control System: https://en.wikipedia.org/wiki/Version_control
|
||||
.. _"Docs as Code": https://www.writethedocs.org/guide/docs-as-code/
|
||||
.. _Git: https://git-scm.com/
|
||||
|
||||
.. _publishing-sources:
|
||||
|
||||
Publishing your documentation sources
|
||||
-------------------------------------
|
||||
|
||||
GitHub
|
||||
~~~~~~
|
||||
|
||||
The quickest way to upload an existing project to GitHub is to:
|
||||
|
||||
1. `Sign up for a GitHub account <https://github.com/signup>`_.
|
||||
2. `Create a new repository <https://github.com/new>`_.
|
||||
3. Open `the "Upload files" page`_ of your new repository.
|
||||
4. Select the files on your operating system file browser (in your case
|
||||
``README.rst``, ``lumache.py``, the makefiles under the ``docs`` directory,
|
||||
and everything under ``docs/source``) and drag them to the GitHub interface
|
||||
to upload them all.
|
||||
5. Click on the :guilabel:`Commit changes` button.
|
||||
|
||||
.. _the "Upload files" page: https://docs.github.com/en/repositories/working-with-files/managing-files/adding-a-file-to-a-repository
|
||||
|
||||
.. note::
|
||||
|
||||
Make sure you don't upload the ``docs/build`` directory, as it contains the
|
||||
output generated by Sphinx and it will change every time you change the
|
||||
sources, complicating your workflow.
|
||||
|
||||
These steps do not require access to the command line or installing any
|
||||
additional software. To learn more, you can:
|
||||
|
||||
- Follow `this interactive GitHub course`_ to learn more about how the GitHub
|
||||
interface works.
|
||||
- Read `this quickstart tutorial`_ to install extra software on your machine
|
||||
and have more flexibility. You can either use the Git command line, or the
|
||||
GitHub Desktop application.
|
||||
|
||||
.. _this interactive GitHub course: https://lab.github.com/githubtraining/introduction-to-github
|
||||
.. _this quickstart tutorial: https://docs.github.com/en/get-started/quickstart
|
||||
|
||||
GitLab
|
||||
~~~~~~
|
||||
|
||||
Similarly to GitHub, the fastest way to upload your project to GitLab is
|
||||
using the web interface:
|
||||
|
||||
1. `Sign up for a GitLab account <https://gitlab.com/users/sign_up>`_.
|
||||
2. `Create a new blank project <https://gitlab.com/projects/new>`_.
|
||||
3. Upload the project files (in your case ``README.rst``, ``lumache.py``, the
|
||||
makefiles under the ``docs`` directory, and everything under
|
||||
``docs/source``) one by one using the :guilabel:`Upload File` button [#f1]_.
|
||||
|
||||
Again, these steps do not require additional software on your computer. To
|
||||
learn more, you can:
|
||||
|
||||
- Follow `this tutorial`_ to install Git on your machine.
|
||||
- Browse the `GitLab User documentation`_ to understand the possibilities of
|
||||
the platform.
|
||||
|
||||
.. _this tutorial: https://docs.gitlab.com/ee/gitlab-basics/start-using-git.html
|
||||
.. _GitLab User documentation: https://docs.gitlab.com/ee/user/index.html
|
||||
|
||||
.. note::
|
||||
|
||||
Make sure you don't upload the ``docs/build`` directory, as it contains the
|
||||
output generated by Sphinx and it will change every time you change the
|
||||
sources, complicating your workflow.
|
||||
|
||||
.. [#f1] At the time of writing, `uploading whole directories to GitLab using
|
||||
only the web
|
||||
interface <https://gitlab.com/gitlab-org/gitlab/-/issues/228490>`_ is
|
||||
not yet implemented.
|
||||
|
||||
Publishing your HTML documentation
|
||||
----------------------------------
|
||||
|
||||
Read the Docs
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
`Read the Docs`_ offers integration with both GitHub and GitLab. The quickest
|
||||
way of getting started is to follow :doc:`the RTD
|
||||
tutorial <readthedocs:tutorial/index>`, which is loosely based on this one.
|
||||
You can publish your sources on GitHub as explained :ref:`in the previous
|
||||
section <publishing-sources>`, then skip directly to
|
||||
:ref:`readthedocs:tutorial/index:Sign up for Read the Docs`.
|
||||
If you choose GitLab instead, the process is similar.
|
||||
|
||||
GitHub Pages
|
||||
~~~~~~~~~~~~
|
||||
|
||||
`GitHub Pages`_ requires you to :ref:`publish your
|
||||
sources <publishing-sources>` on `GitHub`_. After that, you will need an
|
||||
automated process that performs the ``make html`` step every time the sources
|
||||
change. That can be achieved using `GitHub Actions`_.
|
||||
|
||||
After you have published your sources on GitHub, create a file named
|
||||
``.github/workflows/sphinx.yml`` in your repository with the following
|
||||
contents:
|
||||
|
||||
.. code-block:: yaml
|
||||
:caption: .github/workflows/
|
||||
|
||||
name: Sphinx build
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build HTML
|
||||
uses: ammaraskar/sphinx-action@0.4
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: html-docs
|
||||
path: docs/build/html/
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
if: github.ref == 'refs/heads/main'
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: docs/build/html
|
||||
|
||||
This contains a GitHub Actions workflow with a single job of four steps:
|
||||
|
||||
1. Checkout the code.
|
||||
2. Build the HTML documentation using Sphinx.
|
||||
3. Attach the HTML output the artifacts to the GitHub Actions job, for easier
|
||||
inspection.
|
||||
4. If the change happens on the default branch, take the contents of
|
||||
``docs/build/html`` and push it to the ``gh-pages`` branch.
|
||||
|
||||
Next, you need to specify the dependencies for the ``make html`` step to be
|
||||
successful. For that, create a file ``docs/requirements.txt`` and add the
|
||||
following contents:
|
||||
|
||||
.. code-block::
|
||||
:caption: docs/requirements.txt
|
||||
|
||||
furo==2021.11.16
|
||||
|
||||
And finally, you are ready to `enable GitHub Pages on your repository`_. For
|
||||
that, go to :guilabel:`Settings`, then :guilabel:`Pages` on the left sidebar,
|
||||
select the ``gh-pages`` branch in the "Source" dropdown menu, and click
|
||||
:guilabel:`Save`. After a few minutes, you should be able to see your HTML at
|
||||
the designated URL.
|
||||
|
||||
.. _enable GitHub Pages on your repository: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site
|
||||
|
||||
GitLab Pages
|
||||
~~~~~~~~~~~~
|
||||
|
||||
`GitLab Pages`_, on the other hand, requires you to :ref:`publish your
|
||||
sources <publishing-sources>` on `GitLab`_. When you are ready, you can
|
||||
automate the process of running ``make html`` using `GitLab CI`_.
|
||||
|
||||
After you have published your sources on GitLab, create a file named
|
||||
``.gitlab-ci.yml`` in your repository with these contents:
|
||||
|
||||
.. code-block:: yaml
|
||||
:caption: .gitlab-ci.yml
|
||||
|
||||
stages:
|
||||
- deploy
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
image: python:3.9-slim
|
||||
before_script:
|
||||
- apt-get update && apt-get install make --no-install-recommends -y
|
||||
- python -m pip install sphinx furo
|
||||
script:
|
||||
- cd docs && make html
|
||||
after_script:
|
||||
- mv docs/build/html/ ./public/
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
rules:
|
||||
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|
||||
|
||||
This contains a GitLab CI workflow with one job of several steps:
|
||||
|
||||
1. Install the necessary dependencies.
|
||||
2. Build the HTML documentation using Sphinx.
|
||||
3. Move the output to a known artifacts location.
|
||||
|
||||
.. note::
|
||||
You will need to `validate your account`_ by entering a payment method
|
||||
(you will be charged a small amount that will then be reimbursed).
|
||||
|
||||
.. _validate your account: https://about.gitlab.com/blog/2021/05/17/prevent-crypto-mining-abuse/#validating-an-account
|
||||
|
||||
After that, if the pipeline is successful, you should be able to see your HTML
|
||||
at the designated URL.
|
@@ -35,4 +35,5 @@ project.
|
||||
narrative-documentation
|
||||
describing-code
|
||||
automatic-doc-generation
|
||||
deploying
|
||||
end
|
||||
|
@@ -91,9 +91,7 @@ you created earlier.
|
||||
|
||||
Alternatively, you can also add a cross-reference to an arbitrary part of the
|
||||
project. For that, you need to use the :rst:role:`ref` role, and add an
|
||||
explicit *label* that acts as `a target`__.
|
||||
|
||||
__ https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#hyperlink-targets
|
||||
explicit *label* that acts as :duref:`a target <hyperlink-targets>`.
|
||||
|
||||
For example, to reference the "Installation" subsection, add a label right
|
||||
before the heading, as follows:
|
||||
|
@@ -2683,6 +2683,19 @@ Options for the linkcheck builder
|
||||
|
||||
.. versionadded:: 3.4
|
||||
|
||||
.. confval:: linkcheck_exclude_documents
|
||||
|
||||
A list of regular expressions that match documents in which Sphinx should
|
||||
not check the validity of links. This can be used for permitting link decay
|
||||
in legacy or historical sections of the documentation.
|
||||
|
||||
Example::
|
||||
|
||||
# ignore all links in documents located in a subfolder named 'legacy'
|
||||
linkcheck_exclude_documents = [r'.*/legacy/.*']
|
||||
|
||||
.. versionadded:: 4.4
|
||||
|
||||
|
||||
Options for the XML builder
|
||||
---------------------------
|
||||
|
@@ -248,6 +248,8 @@ class HyperlinkAvailabilityCheckWorker(Thread):
|
||||
|
||||
self.anchors_ignore = [re.compile(x)
|
||||
for x in self.config.linkcheck_anchors_ignore]
|
||||
self.documents_exclude = [re.compile(doc)
|
||||
for doc in self.config.linkcheck_exclude_documents]
|
||||
self.auth = [(re.compile(pattern), auth_info) for pattern, auth_info
|
||||
in self.config.linkcheck_auth]
|
||||
|
||||
@@ -378,6 +380,15 @@ class HyperlinkAvailabilityCheckWorker(Thread):
|
||||
|
||||
def check(docname: str) -> Tuple[str, str, int]:
|
||||
# check for various conditions without bothering the network
|
||||
|
||||
for doc_matcher in self.documents_exclude:
|
||||
if doc_matcher.match(docname):
|
||||
info = (
|
||||
f'{docname} matched {doc_matcher.pattern} from '
|
||||
'linkcheck_exclude_documents'
|
||||
)
|
||||
return 'ignored', info, 0
|
||||
|
||||
if len(uri) == 0 or uri.startswith(('#', 'mailto:', 'tel:')):
|
||||
return 'unchecked', '', 0
|
||||
elif not uri.startswith(('http:', 'https:')):
|
||||
@@ -544,6 +555,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
|
||||
app.add_post_transform(HyperlinkCollector)
|
||||
|
||||
app.add_config_value('linkcheck_ignore', [], None)
|
||||
app.add_config_value('linkcheck_exclude_documents', [], None)
|
||||
app.add_config_value('linkcheck_allowed_redirects', {}, None)
|
||||
app.add_config_value('linkcheck_auth', [], None)
|
||||
app.add_config_value('linkcheck_request_headers', {}, None)
|
||||
|
@@ -6541,7 +6541,7 @@ class DefinitionParser(BaseParser):
|
||||
|
||||
# ==========================================================================
|
||||
|
||||
def _parse_template_paramter(self) -> ASTTemplateParam:
|
||||
def _parse_template_parameter(self) -> ASTTemplateParam:
|
||||
self.skip_ws()
|
||||
if self.skip_word('template'):
|
||||
# declare a tenplate template parameter
|
||||
@@ -6613,7 +6613,7 @@ class DefinitionParser(BaseParser):
|
||||
pos = self.pos
|
||||
err = None
|
||||
try:
|
||||
param = self._parse_template_paramter()
|
||||
param = self._parse_template_parameter()
|
||||
templateParams.append(param)
|
||||
except DefinitionError as eParam:
|
||||
self.pos = pos
|
||||
|
@@ -80,9 +80,9 @@ class ModuleEntry(NamedTuple):
|
||||
deprecated: bool
|
||||
|
||||
|
||||
def type_to_xref(text: str, env: BuildEnvironment = None) -> addnodes.pending_xref:
|
||||
def type_to_xref(target: str, env: BuildEnvironment = None) -> addnodes.pending_xref:
|
||||
"""Convert a type string to a cross reference node."""
|
||||
if text == 'None':
|
||||
if target == 'None':
|
||||
reftype = 'obj'
|
||||
else:
|
||||
reftype = 'class'
|
||||
@@ -93,6 +93,17 @@ def type_to_xref(text: str, env: BuildEnvironment = None) -> addnodes.pending_xr
|
||||
else:
|
||||
kwargs = {}
|
||||
|
||||
refspecific = False
|
||||
if target.startswith('.'):
|
||||
target = target[1:]
|
||||
text = target
|
||||
refspecific = True
|
||||
elif target.startswith('~'):
|
||||
target = target[1:]
|
||||
text = target.split('.')[-1]
|
||||
else:
|
||||
text = target
|
||||
|
||||
if env.config.python_use_unqualified_type_names:
|
||||
# Note: It would be better to use qualname to describe the object to support support
|
||||
# nested classes. But python domain can't access the real python object because this
|
||||
@@ -104,7 +115,8 @@ def type_to_xref(text: str, env: BuildEnvironment = None) -> addnodes.pending_xr
|
||||
contnodes = [nodes.Text(text)]
|
||||
|
||||
return pending_xref('', *contnodes,
|
||||
refdomain='py', reftype=reftype, reftarget=text, **kwargs)
|
||||
refdomain='py', reftype=reftype, reftarget=target,
|
||||
refspecific=refspecific, **kwargs)
|
||||
|
||||
|
||||
def _parse_annotation(annotation: str, env: BuildEnvironment = None) -> List[Node]:
|
||||
|
@@ -751,7 +751,7 @@ class Documenter:
|
||||
isprivate = membername.startswith('_')
|
||||
|
||||
keep = False
|
||||
if ismock(member):
|
||||
if ismock(member) and (namespace, membername) not in attr_docs:
|
||||
# mocked module or object
|
||||
pass
|
||||
elif self.options.exclude_members and membername in self.options.exclude_members:
|
||||
@@ -2009,7 +2009,8 @@ class DataDocumenter(GenericAliasMixin, NewTypeMixin, TypeVarMixin,
|
||||
self.add_line(' :type: ' + objrepr, sourcename)
|
||||
|
||||
try:
|
||||
if self.options.no_value or self.should_suppress_value_header():
|
||||
if (self.options.no_value or self.should_suppress_value_header() or
|
||||
ismock(self.object)):
|
||||
pass
|
||||
else:
|
||||
objrepr = object_description(self.object)
|
||||
@@ -2528,11 +2529,11 @@ class AttributeDocumenter(GenericAliasMixin, NewTypeMixin, SlotsMixin, # type:
|
||||
@classmethod
|
||||
def can_document_member(cls, member: Any, membername: str, isattr: bool, parent: Any
|
||||
) -> bool:
|
||||
if inspect.isattributedescriptor(member):
|
||||
if isinstance(parent, ModuleDocumenter):
|
||||
return False
|
||||
elif inspect.isattributedescriptor(member):
|
||||
return True
|
||||
elif (not isinstance(parent, ModuleDocumenter) and
|
||||
not inspect.isroutine(member) and
|
||||
not isinstance(member, type)):
|
||||
elif not inspect.isroutine(member) and not isinstance(member, type):
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
@@ -2625,7 +2626,8 @@ class AttributeDocumenter(GenericAliasMixin, NewTypeMixin, SlotsMixin, # type:
|
||||
self.add_line(' :type: ' + objrepr, sourcename)
|
||||
|
||||
try:
|
||||
if self.options.no_value or self.should_suppress_value_header():
|
||||
if (self.options.no_value or self.should_suppress_value_header() or
|
||||
ismock(self.object)):
|
||||
pass
|
||||
else:
|
||||
objrepr = object_description(self.object)
|
||||
|
@@ -170,7 +170,8 @@ def ismock(subject: Any) -> bool:
|
||||
try:
|
||||
# check the object is mocked object
|
||||
__mro__ = safe_getattr(type(subject), '__mro__', [])
|
||||
if len(__mro__) > 2 and __mro__[1] is _MockObject:
|
||||
if len(__mro__) > 2 and __mro__[-2] is _MockObject:
|
||||
# A mocked object has a MRO that ends with (..., _MockObject, object).
|
||||
return True
|
||||
except AttributeError:
|
||||
pass
|
||||
|
@@ -25,6 +25,7 @@
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
from typing import Any, Dict, List, Tuple
|
||||
|
||||
from docutils import nodes, utils
|
||||
@@ -34,6 +35,7 @@ from docutils.parsers.rst.states import Inliner
|
||||
import sphinx
|
||||
from sphinx.application import Sphinx
|
||||
from sphinx.locale import __
|
||||
from sphinx.transforms.post_transforms import SphinxPostTransform
|
||||
from sphinx.util import logging
|
||||
from sphinx.util.nodes import split_explicit_title
|
||||
from sphinx.util.typing import RoleFunction
|
||||
@@ -41,6 +43,40 @@ from sphinx.util.typing import RoleFunction
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ExternalLinksChecker(SphinxPostTransform):
|
||||
"""
|
||||
For each external link, check if it can be replaced by an extlink.
|
||||
|
||||
We treat each ``reference`` node without ``internal`` attribute as an external link.
|
||||
"""
|
||||
|
||||
default_priority = 500
|
||||
|
||||
def run(self, **kwargs: Any) -> None:
|
||||
for refnode in self.document.traverse(nodes.reference):
|
||||
self.check_uri(refnode)
|
||||
|
||||
def check_uri(self, refnode: nodes.reference) -> None:
|
||||
"""
|
||||
If the URI in ``refnode`` has a replacement in ``extlinks``,
|
||||
emit a warning with a replacement suggestion.
|
||||
"""
|
||||
if 'internal' in refnode or 'refuri' not in refnode:
|
||||
return
|
||||
|
||||
uri = refnode['refuri']
|
||||
|
||||
for alias, (base_uri, caption) in self.app.config.extlinks.items():
|
||||
uri_pattern = re.compile(base_uri.replace('%s', '(?P<value>.+)'))
|
||||
match = uri_pattern.match(uri)
|
||||
if match and match.groupdict().get('value'):
|
||||
# build a replacement suggestion
|
||||
msg = __('hardcoded link %r could be replaced by an extlink '
|
||||
'(try using %r instead)')
|
||||
replacement = f":{alias}:`{match.groupdict().get('value')}`"
|
||||
logger.warning(msg, uri, replacement, location=refnode)
|
||||
|
||||
|
||||
def make_link_role(name: str, base_url: str, caption: str) -> RoleFunction:
|
||||
# Check whether we have base_url and caption strings have an '%s' for
|
||||
# expansion. If not, fall back the the old behaviour and use the string as
|
||||
@@ -87,4 +123,5 @@ def setup_link_roles(app: Sphinx) -> None:
|
||||
def setup(app: Sphinx) -> Dict[str, Any]:
|
||||
app.add_config_value('extlinks', {}, 'env')
|
||||
app.connect('builder-inited', setup_link_roles)
|
||||
app.add_post_transform(ExternalLinksChecker)
|
||||
return {'version': sphinx.__display_version__, 'parallel_read_safe': True}
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2901,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr "অন্যান্য পরিবর্তন"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "এই শিরোনামের পার্মালিঙ্ক"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "এই সংজ্ঞার পার্মালিঙ্ক"
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr "Altres canvis"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link permanent a aquest títol"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link permanent a aquesta definició"
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -1879,7 +1879,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
|
||||
#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736
|
||||
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
|
||||
msgid "Parameters"
|
||||
msgstr "Parametry"
|
||||
|
||||
@@ -1888,12 +1888,12 @@ msgid "Return values"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
|
||||
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432
|
||||
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
|
||||
msgid "Returns"
|
||||
msgstr "Vrací"
|
||||
|
||||
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
|
||||
#: sphinx/domains/python.py:434
|
||||
#: sphinx/domains/python.py:446
|
||||
msgid "Return type"
|
||||
msgstr "Typ návratové hodnoty"
|
||||
|
||||
@@ -1906,7 +1906,7 @@ msgid "variable"
|
||||
msgstr "proměnná"
|
||||
|
||||
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
|
||||
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178
|
||||
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
|
||||
msgid "function"
|
||||
msgstr "funkce"
|
||||
|
||||
@@ -1984,7 +1984,7 @@ msgid "Throws"
|
||||
msgstr "Vyvolá"
|
||||
|
||||
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
|
||||
#: sphinx/domains/python.py:1180
|
||||
#: sphinx/domains/python.py:1192
|
||||
msgid "class"
|
||||
msgstr "třída"
|
||||
|
||||
@@ -2001,7 +2001,7 @@ msgstr ""
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr "%s() (vestavěná funkce)"
|
||||
|
||||
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817
|
||||
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (metoda %s)"
|
||||
@@ -2016,7 +2016,7 @@ msgstr "%s() (třída)"
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr "%s (globální proměnná nebo konstanta)"
|
||||
|
||||
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902
|
||||
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (atribut %s)"
|
||||
@@ -2030,20 +2030,20 @@ msgstr "Argumenty"
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (modul)"
|
||||
|
||||
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182
|
||||
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
|
||||
msgid "method"
|
||||
msgstr "metoda"
|
||||
|
||||
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179
|
||||
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
|
||||
msgid "data"
|
||||
msgstr "data"
|
||||
|
||||
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185
|
||||
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
|
||||
msgid "attribute"
|
||||
msgstr "atribut"
|
||||
|
||||
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
|
||||
#: sphinx/domains/python.py:1187
|
||||
#: sphinx/domains/python.py:1199
|
||||
msgid "module"
|
||||
msgstr "modul"
|
||||
|
||||
@@ -2074,7 +2074,7 @@ msgstr "operátor"
|
||||
msgid "object"
|
||||
msgstr "objekt"
|
||||
|
||||
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181
|
||||
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
|
||||
msgid "exception"
|
||||
msgstr "výjimka"
|
||||
|
||||
@@ -2086,92 +2086,92 @@ msgstr "příkaz"
|
||||
msgid "built-in function"
|
||||
msgstr "vestavěná funkce"
|
||||
|
||||
#: sphinx/domains/python.py:425
|
||||
#: sphinx/domains/python.py:437
|
||||
msgid "Variables"
|
||||
msgstr "Proměnné"
|
||||
|
||||
#: sphinx/domains/python.py:429
|
||||
#: sphinx/domains/python.py:441
|
||||
msgid "Raises"
|
||||
msgstr "Vyvolá"
|
||||
|
||||
#: sphinx/domains/python.py:662 sphinx/domains/python.py:806
|
||||
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (v modulu %s)"
|
||||
|
||||
#: sphinx/domains/python.py:722 sphinx/domains/python.py:898
|
||||
#: sphinx/domains/python.py:949
|
||||
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
|
||||
#: sphinx/domains/python.py:961
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (v modulu %s)"
|
||||
|
||||
#: sphinx/domains/python.py:724
|
||||
#: sphinx/domains/python.py:736
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr "%s (vestavěná proměnná)"
|
||||
|
||||
#: sphinx/domains/python.py:749
|
||||
#: sphinx/domains/python.py:761
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (vestavěná třída)"
|
||||
|
||||
#: sphinx/domains/python.py:750
|
||||
#: sphinx/domains/python.py:762
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (třída v %s)"
|
||||
|
||||
#: sphinx/domains/python.py:811
|
||||
#: sphinx/domains/python.py:823
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (třídní metoda %s)"
|
||||
|
||||
#: sphinx/domains/python.py:813 sphinx/domains/python.py:953
|
||||
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
|
||||
#, python-format
|
||||
msgid "%s (%s property)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:815
|
||||
#: sphinx/domains/python.py:827
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (statická metoda %s)"
|
||||
|
||||
#: sphinx/domains/python.py:1107
|
||||
#: sphinx/domains/python.py:1119
|
||||
msgid "Python Module Index"
|
||||
msgstr "Rejstřík modulů Pythonu"
|
||||
|
||||
#: sphinx/domains/python.py:1108
|
||||
#: sphinx/domains/python.py:1120
|
||||
msgid "modules"
|
||||
msgstr "moduly"
|
||||
|
||||
#: sphinx/domains/python.py:1157
|
||||
#: sphinx/domains/python.py:1169
|
||||
msgid "Deprecated"
|
||||
msgstr "Zastaralé"
|
||||
|
||||
#: sphinx/domains/python.py:1183
|
||||
#: sphinx/domains/python.py:1195
|
||||
msgid "class method"
|
||||
msgstr "třídní metoda"
|
||||
|
||||
#: sphinx/domains/python.py:1184
|
||||
#: sphinx/domains/python.py:1196
|
||||
msgid "static method"
|
||||
msgstr "statická metoda"
|
||||
|
||||
#: sphinx/domains/python.py:1186
|
||||
#: sphinx/domains/python.py:1198
|
||||
msgid "property"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1244
|
||||
#: sphinx/domains/python.py:1256
|
||||
#, python-format
|
||||
msgid ""
|
||||
"duplicate object description of %s, other instance in %s, use :noindex: for "
|
||||
"one of them"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1364
|
||||
#: sphinx/domains/python.py:1376
|
||||
#, python-format
|
||||
msgid "more than one target found for cross-reference %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1418
|
||||
#: sphinx/domains/python.py:1430
|
||||
msgid " (deprecated)"
|
||||
msgstr " (zastaralé)"
|
||||
|
||||
@@ -2613,6 +2613,12 @@ msgid ""
|
||||
"====================== slowest reading durations ======================="
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/extlinks.py:76
|
||||
#, python-format
|
||||
msgid ""
|
||||
"hardcoded link %r could be replaced by an extlink (try using %r instead)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:132
|
||||
msgid "Graphviz directive cannot have both content and a filename argument"
|
||||
msgstr ""
|
||||
@@ -2886,7 +2892,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2753
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2907,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2357
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2796
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2991,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3029,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3384,14 @@ msgid "Other changes"
|
||||
msgstr "Ostatní změny"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Trvalý odkaz na tento nadpis"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Trvalý odkaz na tuto definici"
|
||||
|
||||
@@ -3546,37 +3559,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permalink k této tabulce"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permalink k tomuto kódu"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permalink k tomuto obrázku"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2901,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr "Newidiadau arall"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Permalink i'r pennawd hwn"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Permalink i'r diffiniad hwn"
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permalink i'r tabl hwn"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permalink i'r cod hwn"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permalink i'r ddelwedd hon"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Permalink i'r toctree hwn"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1204,7 +1204,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2888,7 +2888,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2903,28 +2903,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2987,30 +2987,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3025,29 +3025,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Nøgleordsargumenter"
|
||||
@@ -3373,14 +3380,14 @@ msgid "Other changes"
|
||||
msgstr "Andre ændringer"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Permalink til denne overskrift"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Permalink til denne definition"
|
||||
|
||||
@@ -3548,37 +3555,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permahenvisning til denne tabel"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permahenvisning til denne kode"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permahenvisning til dette billede"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Permahenvisning til dette toctree"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1204,7 +1204,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2888,7 +2888,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2903,28 +2903,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2987,30 +2987,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3025,29 +3025,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3373,14 +3380,14 @@ msgid "Other changes"
|
||||
msgstr "Andere Änderungen"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link zu dieser Überschrift"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link zu dieser Definition"
|
||||
|
||||
@@ -3548,37 +3555,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Link zu dieser Tabelle"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Link zu diesem Quellcode"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Link zu diesem Bild"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Permanenter Link zu diesem Inhaltsverzeichnis"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1203,7 +1203,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2887,7 +2887,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2902,28 +2902,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "Βάσεις: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2986,30 +2986,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "Το autosummary δημιουργεί αρχεία .rst εσωτερικά. Αλλά το δικό σας source_suffix δεν περιλαμβάνει .rst. Θα παραλειφθεί."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] δημιουργία autosummary για: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[αυτόματη περίληψη] εγγραφή στο %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3024,29 +3024,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nΔημιουργία ReStrucuredText χρησιμοποιώντας τις οδηγίες autosummary.\n\nΤο sphinx-autogen αποτελεί ένα πρόσθιο εργαλείο για το sphinx.ext.autosummary.generate. Δημιουργεί \nτα αρχεία reStructuredText από τις οδηγίες autosummary οι οποίες περιλαμβάνονται στα \nπαραδοθέντα αρχεία εισόδου.\n\nΗ μορφή της οδηγίας autosummary τεκμηρειώνεται στο \nδομοστοιχείο ``sphinx.ext.autosummary`` της Python και μπορεί να αναγνωστεί χρησιμοποιώντας το :: \n\npydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "αρχεία πηγής για να δημιουργηθούν τα αρχεία reST"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "ο κατάλογος που θα τοποθετεί όλο το αποτέλεσμα εξόδου"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "προεπιλεγμένη επέκταση για αρχεία (προεπιλογή: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "προσαρμοσμένος κατάλογος προτύπου (προεπιλογή: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "μέλη εισαγμένα στο έγγραφο (προεπιλογή: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Ορίσματα λέξης-κλειδί"
|
||||
@@ -3372,14 +3379,14 @@ msgid "Other changes"
|
||||
msgstr "Άλλες αλλαγές"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Μόνιμος σύνδεσμος σε αυτήν την κεφαλίδα"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό"
|
||||
|
||||
@@ -3547,37 +3554,37 @@ msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έ
|
||||
msgid "default role %s not found"
|
||||
msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "δεν έχει καθοριστεί numfig_format για το %s"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "Κανένα ID δεν έχει ανατεθεί στο κόμβο %s"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Απευθείας σύνδεσμος σε αυτόν τον κώδικα"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Απευθείας σύνδεσμος σε αυτήν την εικόνα"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα περιεχομένων"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "Δεν ήταν δυνατή η λήψη του μεγέθους της εικόνας. Η επιλογή :scale: θα αγνοηθεί."
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2901,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -14,8 +14,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1207,7 +1207,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "número de trabajo debe ser un número positivo"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2891,7 +2891,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2906,28 +2906,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "Bases: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2990,30 +2990,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "autosummary genera archivos .rst internamente. Pero su source_suffix no contiene archivo .rst. Saltado."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autosummary: no se pudo determinar %r que se documentará, se produjo la siguiente excepción:\n%s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] generar autosummary para: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[autosummary] escribiendo a %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr "[autosummary] fallo al importar %r: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3028,29 +3028,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nGenere ReStructuredText usando directivas de resumen automático \"autosummary\".\n\nsphinx-autogen es una interfaz para sphinx.ext.autosummary.generate. Genera\nlos archivos reStructuredText de las directivas autosummary contenidas en el\nlos archivos de entrada dados.\n\nEl formato de la directiva autosummary está documentado en el módulo Python\n``sphinx.ext.autosummary`` y se puede leer usando el siguiente comando::\n\n pydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "archivos fuente para generar archivos rST para"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "directorio para colocar toda la salida en"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "sufijo predeterminado para archivos (predeterminado: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "directorio de plantillas personalizadas (predeterminado: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "documento importados miembros (predeterminado: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumentos de palabras clave"
|
||||
@@ -3376,14 +3383,14 @@ msgid "Other changes"
|
||||
msgstr "Otros cambios"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Enlazar permanentemente con este título"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Enlazar permanentemente con esta definición"
|
||||
|
||||
@@ -3551,37 +3558,37 @@ msgstr "excepción al evaluar solamente la expresión directiva: %s"
|
||||
msgid "default role %s not found"
|
||||
msgstr "rol por defecto %s no encontrado"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "numfig_format no está definido para %s"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "Cualquier ID no asignado para el nodo %s"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Enlace permanente a esta tabla"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Enlace permanente a este código fuente"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Enlace permanente a esta imagen"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Enlace permanente a la tabla de contenidos"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "No se pudo obtener el tamaño de la imagen. La opción :scale: se ignora."
|
||||
|
||||
|
Binary file not shown.
@@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1204,7 +1204,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2888,7 +2888,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2903,28 +2903,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "Põlvnemine: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2987,30 +2987,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] automaatkokkuvõtte genereerimine failile: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[autosummary] kirjutamine kataloogi %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3025,29 +3025,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "lähtefailid, mille kohta rST-faile genereerida"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "väljundfailide kataloog"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "failide vaikimisi järelliide (vaikimisi: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "kohandatud mallide kataloog (vaikimisi: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "imporditud liikmete dokumenteerimine (vaikimisi: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Võtmesõnadega argumendid"
|
||||
@@ -3373,14 +3380,14 @@ msgid "Other changes"
|
||||
msgstr "Ülejäänud muutused"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Püsiviit sellele pealkirjale"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Püsiviit sellele definitsioonile"
|
||||
|
||||
@@ -3548,37 +3555,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Püsiviit sellele tabelile"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Püsiviit sellele programmikoodile"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Püsiviit sellele pildile"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Püsiviit sellele sisukorrapuule"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2901,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr "Beste aldaketak"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Goiburu honetarako esteka iraunkorra"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Definizio honetarako esteka iraunkorra"
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1204,7 +1204,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "شمارهی کار باید یک عدد مثبت باشد"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr "برای اطّلاعات بیشتر به <https://www.sphinx-doc.org/> بروید."
|
||||
|
||||
@@ -2888,7 +2888,7 @@ msgid ""
|
||||
msgstr "ویژگی نایاب در گزینهی :members: قید شده: پیمانهی:%s، ویژگی %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s"
|
||||
@@ -2903,28 +2903,28 @@ msgstr "شکست در دریافت امضای سازندهی شیئ برای
|
||||
msgid "Bases: %s"
|
||||
msgstr "پایه ها:%s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "نام جانشین %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "نام جانشین نوع متغیر(%s)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2987,30 +2987,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "خلاصهی خودکار به طور داخلی پروندههای rst را ایجاد میکند. ولی پسوند منبع شما شامل rst نیست. نادیده گرفته میشود."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "خلاصهی خودکار: شکست در تشخیص %r برای مستندسازی، این ایراد به وجود آمد:\n%s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[خلاصهی خودکار] تولید خلاصهی خودکار برای: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[خلاصهی خودکار] نوشتن در %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr "[خلاصهی خودکار]: فراخوان %r: %s شکست خورد"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3025,29 +3025,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nتولید ReStructuredText با استفاده از دستورالعملهای خلاصهی خودکار.\n\nخودکارساز اسفینکس رابط کابر پسندی برای sphinx.ext.autosummary.generate (پیمانهی افزونهی خلاصهساز اسفنیکس) است.\nاین افزونه پرونده های متن reStructuredText را از دستورالعملهای خلاصهی خودکاری تولید میکند که در پروندههای درونداد مشخّص شده قرار دارد.\n\nقالب دستورالعمل خلاصهی خودکار درپیمانهی افزونهی خلاصهی خودکار اسفنیکس (sphinx.ext.autosummary) مستند سازی شده می توان آن را با دستور زیر خواند::\n\n pydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "پروندههای منبع برای تولید پروندههای rST"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "پوشهای برای قرار دادن همهی برون دادها در آن"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "پسوند پیش فرض برای پروندهها (پیشفرض: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "شاخهی سفارشی قالب (پیشگزیده: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "اجزای فراخوان شدهی سند (پیشگزیده: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "نشانوندهای کلیدی"
|
||||
@@ -3373,14 +3380,14 @@ msgid "Other changes"
|
||||
msgstr "دگر تغییرات"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "پیوند ثابت به این سر مقاله"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "پیوند ثابت به این تعریف"
|
||||
|
||||
@@ -3548,37 +3555,37 @@ msgstr "ایراد در هنگام ارزیابی تنها عبارت دستور
|
||||
msgid "default role %s not found"
|
||||
msgstr "نقش پیشفرض %s یافت نشد"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "قالب عدد شکل برای %s تعریف نشده"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "هر کدام از شناسههایی که به بست %s اختصاص داده نشده"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr "پیوند ثابت به این اصطلاح"
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "پیوند ثابت به این جدول"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "پیوند ثابت به این کد"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "پیوند ثابت به این تصویر"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "پیوند ثابت به این فهرست عنوان ها"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "امکان دست یابی به اندازهی عکس نبود. گزینهی تغییر اندازه :scale: نادیده گرفته میشود."
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -34,9 +34,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 01:11+0000\n"
|
||||
"Last-Translator: David Georges\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -1227,7 +1227,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "Le numéro du job doit être strictement positif"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr "Pour plus d'informations, visitez le site <https://www.sphinx-doc.org/>."
|
||||
|
||||
@@ -2911,7 +2911,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "Échec pour obtenir la signature de la fonction pour %s : %s"
|
||||
@@ -2926,28 +2926,28 @@ msgstr "Échec pour obtenir la signature du constructeur pour %s : %s"
|
||||
msgid "Bases: %s"
|
||||
msgstr "Bases : %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "alias de %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "alias de TypeVar(%s)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "Échec pour obtenir la signature de la méthode pour %s : %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -3010,30 +3010,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "autosummary engendre les fichiers .rst de manière interne. Mais votre source_suffix ne contient pas .rst. Ignoré."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autosummary : impossible de déterminer si %r est documenté; l'exception suivante a été levée :\n%s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] engendrement d’un auto-sommaire pour : %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[autosummary] écriture dans %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr "[autosummary] échec de l'import de %r : %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3048,29 +3048,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nEngendre du ReStructuredText par les directives autosummary.\n\nsphinx-autogen est une interface à sphinx.ext.autosummary.generate. Il\nengendre les fichiers reStructuredText à partir des directives autosummary\ncontenues dans les fichiers donnés en entrée.\n\nLe format de la directive autosummary est documentée dans le module\nPython \"sphinx.ext.autosummary\" et peut être lu via : ::\n\npydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "fichiers sources pour lesquels il faut produire des fichiers rST"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "répertoire où placer toutes les sorties"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "extension par défaut pour les fichiers (par défaut : %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "répertoire des templates spécifiques (par défaut : %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "membres importés du document (défaut : %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Arguments de mots-clés"
|
||||
@@ -3396,14 +3403,14 @@ msgid "Other changes"
|
||||
msgstr "Autres modifications"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Lien permanent vers ce titre"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Lien permanent vers cette définition"
|
||||
|
||||
@@ -3571,37 +3578,37 @@ msgstr "exception pendant l’évaluation de l'expression de la directive only :
|
||||
msgid "default role %s not found"
|
||||
msgstr "rôle par défaut %s introuvable"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "numfig_format n'est pas défini %s"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "Aucun ID assigné au node %s"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr "Lien permanent vers ce terme"
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Lien permanent vers ce tableau"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Lien permanent vers ce code"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Lien permanent vers cette image"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Lien permanent vers cette table des matières"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "impossible d'obtenir la taille de l'image. L'option :scale: est ignorée."
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -1877,7 +1877,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
|
||||
#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736
|
||||
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
@@ -1886,12 +1886,12 @@ msgid "Return values"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
|
||||
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432
|
||||
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
|
||||
msgid "Returns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
|
||||
#: sphinx/domains/python.py:434
|
||||
#: sphinx/domains/python.py:446
|
||||
msgid "Return type"
|
||||
msgstr ""
|
||||
|
||||
@@ -1904,7 +1904,7 @@ msgid "variable"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
|
||||
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178
|
||||
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
|
||||
msgid "function"
|
||||
msgstr ""
|
||||
|
||||
@@ -1982,7 +1982,7 @@ msgid "Throws"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
|
||||
#: sphinx/domains/python.py:1180
|
||||
#: sphinx/domains/python.py:1192
|
||||
msgid "class"
|
||||
msgstr ""
|
||||
|
||||
@@ -1999,7 +1999,7 @@ msgstr ""
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817
|
||||
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr ""
|
||||
@@ -2014,7 +2014,7 @@ msgstr ""
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902
|
||||
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr ""
|
||||
@@ -2028,20 +2028,20 @@ msgstr ""
|
||||
msgid "%s (module)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182
|
||||
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
|
||||
msgid "method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179
|
||||
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185
|
||||
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
|
||||
msgid "attribute"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
|
||||
#: sphinx/domains/python.py:1187
|
||||
#: sphinx/domains/python.py:1199
|
||||
msgid "module"
|
||||
msgstr ""
|
||||
|
||||
@@ -2072,7 +2072,7 @@ msgstr ""
|
||||
msgid "object"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181
|
||||
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
|
||||
msgid "exception"
|
||||
msgstr ""
|
||||
|
||||
@@ -2084,92 +2084,92 @@ msgstr ""
|
||||
msgid "built-in function"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:425
|
||||
#: sphinx/domains/python.py:437
|
||||
msgid "Variables"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:429
|
||||
#: sphinx/domains/python.py:441
|
||||
msgid "Raises"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:662 sphinx/domains/python.py:806
|
||||
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:722 sphinx/domains/python.py:898
|
||||
#: sphinx/domains/python.py:949
|
||||
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
|
||||
#: sphinx/domains/python.py:961
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:724
|
||||
#: sphinx/domains/python.py:736
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:749
|
||||
#: sphinx/domains/python.py:761
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:750
|
||||
#: sphinx/domains/python.py:762
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:811
|
||||
#: sphinx/domains/python.py:823
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:813 sphinx/domains/python.py:953
|
||||
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
|
||||
#, python-format
|
||||
msgid "%s (%s property)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:815
|
||||
#: sphinx/domains/python.py:827
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1107
|
||||
#: sphinx/domains/python.py:1119
|
||||
msgid "Python Module Index"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1108
|
||||
#: sphinx/domains/python.py:1120
|
||||
msgid "modules"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1157
|
||||
#: sphinx/domains/python.py:1169
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1183
|
||||
#: sphinx/domains/python.py:1195
|
||||
msgid "class method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1184
|
||||
#: sphinx/domains/python.py:1196
|
||||
msgid "static method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1186
|
||||
#: sphinx/domains/python.py:1198
|
||||
msgid "property"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1244
|
||||
#: sphinx/domains/python.py:1256
|
||||
#, python-format
|
||||
msgid ""
|
||||
"duplicate object description of %s, other instance in %s, use :noindex: for "
|
||||
"one of them"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1364
|
||||
#: sphinx/domains/python.py:1376
|
||||
#, python-format
|
||||
msgid "more than one target found for cross-reference %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1418
|
||||
#: sphinx/domains/python.py:1430
|
||||
msgid " (deprecated)"
|
||||
msgstr ""
|
||||
|
||||
@@ -2611,6 +2611,12 @@ msgid ""
|
||||
"====================== slowest reading durations ======================="
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/extlinks.py:76
|
||||
#, python-format
|
||||
msgid ""
|
||||
"hardcoded link %r could be replaced by an extlink (try using %r instead)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:132
|
||||
msgid "Graphviz directive cannot have both content and a filename argument"
|
||||
msgstr ""
|
||||
@@ -2884,7 +2890,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2753
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2905,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2357
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2796
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2989,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3027,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3382,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3544,37 +3557,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr "שינויים אחרים"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "קישור קבוע לכותרת זו"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "קישור קבוע להגדרה זו"
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1204,7 +1204,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "कार्य संख्या एक धनात्मक संख्या होनी चाहिए"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2888,7 +2888,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2903,28 +2903,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "आधार: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2987,30 +2987,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "ऑटोसमरी आतंरिक रूप से आर.एस.टी. फाइलें बनाता है. आपके सोर्स_सफिक्स में आर.एस.टी. सम्मिलित नहीं है. छोड़ा गया."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[ऑटोसमरी] अब इसका स्वतःसारांश बना रहा है: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[ऑटोसमरी] %s पर लिख रहा है"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3025,29 +3025,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nस्वतः सारांश #autosummary# निर्देश का प्रयोग करते हुए पुर्नसरंचितपाठ बनाता है.\n\nस्फिंक्स-ऑटोजेन स्फिंक्स.एक्स्ट.ऑटोसमरी.जेनेरेट का मुखड़ा है.\nयह प्रदत्त फाइलों में सम्मिलित ऑटो समरी निर्देशों के अनुसार पुर्नसरंचितपाठ बनाता है\n\nस्वतः सारांश #autosummary# निर्देश का प्रारूप स्फिंक्स.एक्स्ट.ऑटोसमरी \nपाइथन प्रभाग में निबंधित है और इसे आप निम्नलिखित माध्यम से पढ़ सकते हैं:\n\n pydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "आर.एस.टी. फाइलें बनाने के लिए स्रोत फाइलें"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "सभी परिणाम रखने के लिए निर्देशिका"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "फाइलों के लिए मानक प्रत्यय (मानक: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "पारंपरिक प्रारूप निर्देशिका (मानक: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "लेखपत्र आयातित सदस्य (मानक: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "मुख्य शब्दों के चर-पद"
|
||||
@@ -3373,14 +3380,14 @@ msgid "Other changes"
|
||||
msgstr "अन्य परिवर्तन"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "इस शीर्ष-पंक्ति की स्थायी कड़ी"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "इस परिभाषा की स्थायी कड़ी"
|
||||
|
||||
@@ -3548,37 +3555,37 @@ msgstr "केवल निर्देशक भाव का मूल्य
|
||||
msgid "default role %s not found"
|
||||
msgstr "मानक भूमिका '%s' नहीं मिली"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "%s के लिए नमफिग_फॉर्मेट नहीं बताया गया है"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "%s बिंदु के लिए कोई पहचान-चिन्ह नहीं दिया गया"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "इस सारणी की स्थायी कड़ी"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "इस निर्देश की स्थायी कड़ी"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "इस चित्र की स्थायी कड़ी"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "इस विषय-सूची-संरचना की स्थायी कड़ी"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "चित्र का आकार नहीं मिल सका. :scale: विकल्प की उपेक्षा की जा रही है."
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "Osnovice: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumenti"
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr "Ostale promjene"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link na taj naslov"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link na tu definiciju"
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permalink na ovu tablicu"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permalink na ovaj kod"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permalink na ovu sliku"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Permalink na ovaj sadržaj"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -13,8 +13,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1206,7 +1206,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2890,7 +2890,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2905,28 +2905,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2989,30 +2989,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3027,29 +3027,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3375,14 +3382,14 @@ msgid "Other changes"
|
||||
msgstr "Egyéb változások"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Hivatkozás erre a fejezetcímre"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Hivatkozás erre a definícióra"
|
||||
|
||||
@@ -3550,37 +3557,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permalink erre a táblázatra"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permalink erre a kódrészletre"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permalink erre a képre"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -12,8 +12,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1205,7 +1205,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "job number seharusnya sebuah bilangan positif"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2889,7 +2889,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2904,28 +2904,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "Basis: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2988,30 +2988,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "autosummary menghasilkan file .rst secara internal. Tapi source_suffix Anda tidak mengandung .rst. Dilewati."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] menghasilkan autosummary untuk: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[autosummary] menulis ke %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3026,29 +3026,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nHasilkan ReStructuredText menggunakan pengarahan autosummary.\n\nsphinx-autogen adalah tampilan depan ke sphinx.ext.autosummary.generate. Ini menghasilkan \nfile reStructuredText dari pengarahan autosummary yang terkandung dalam \nfile input yang diberikan.\n\nFormat pengarahan autosummary didokumentasikan dalam \nmodul ``sphinx.ext.autosummary`` dan dapat dibaca menggunakan::\n\n pydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "berkas sumber untuk menghasilkan file rST untuk"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "direktori untuk menempatkan semua keluaran dalam"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "akhiran bawaan untuk berkas (bawaan: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "direktori templat ubahsuai (bawaan: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "mendokumentasikan anggota yang diimpor (bawaan: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumen Kata Kunci"
|
||||
@@ -3374,14 +3381,14 @@ msgid "Other changes"
|
||||
msgstr "Perubahan lain"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link permanen untuk headline ini"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link permanen untuk definisi ini"
|
||||
|
||||
@@ -3549,37 +3556,37 @@ msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s"
|
||||
msgid "default role %s not found"
|
||||
msgstr "peran bawaan %s tidak ditemukan"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "numfig_format tidak didefinisikan untuk %s"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "Tidak ada ID apa pun yang ditugaskan untuk simpul %s"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Link permanen untuk table ini"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Link permanen untuk kode ini"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Link permanen untuk gambar ini"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Tautan ke daftar isi ini"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "Tidak dapat memperoleh ukuran gambar. :scale: option diabaikan."
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Varanlegur hlekkur á þennan titil"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Varanlegur hlekkur á þessa skilgreiningu"
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr "Varanlegur hlekkur á þetta hugtak"
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Varanlegur hlekkur á þessa töflu"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Varanlegur hlekkur á þennan kóða"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Varanlegur hlekkur á þessa mynd"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -12,8 +12,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1205,7 +1205,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2889,7 +2889,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2904,28 +2904,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr " Basi: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2988,30 +2988,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3026,29 +3026,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argomenti parole chiave"
|
||||
@@ -3374,14 +3381,14 @@ msgid "Other changes"
|
||||
msgstr "Altre modifiche"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link a questa intestazione"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link a questa definizione"
|
||||
|
||||
@@ -3549,37 +3556,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Link a questa tabella"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Link a questo codice"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Link a questa immagine"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Link a questo indice"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -23,8 +23,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1216,7 +1216,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "ジョブ番号は正数でなければなりません"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2900,7 +2900,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2915,28 +2915,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "ベースクラス: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2999,30 +2999,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "autosummary は内部的に rst ファイルを生成します。しかしあなたの source_suffix は rst ファイルに含まれていませんでした。スキップします。"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autosummary: ドキュメント化する %r の決定に失敗しました。次の例外が発生しました:\n%s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] %s の autosummary を生成中"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[autosummary] %s に書き込み中"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr "[autosummary] %rのインポートに失敗しました: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3037,29 +3037,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nautosummary ディレクティブを使って ReStructuredText を生成します。\n\nsphinx-autogen は sphinx.ext.autosummary.generate のフロントエンドです。\n入力されたファイルを含む autosummary ディレクティブから reStructuredText ファイルを\n生成します。\n\nautosummary ディレクティブのフォーマットは\n``sphinx.ext.autosummary`` に記載されています。Pythonモジュールと :: を使って読むことができます。\n\npydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "rST ファイルを生成するためのソースファイル"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "すべての生成データを配置するディレクトリ"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "ファイルのデフォルト拡張子 (デフォルト: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "カスタムテンプレートディレクトリ (デフォルト: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "インポートしたメンバーのドキュメント (デフォルト: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "キーワード引数"
|
||||
@@ -3385,14 +3392,14 @@ msgid "Other changes"
|
||||
msgstr "その他の変更"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "このヘッドラインへのパーマリンク"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "この定義へのパーマリンク"
|
||||
|
||||
@@ -3560,37 +3567,37 @@ msgstr "only ディレクティブの条件式の評価中に例外が発生し
|
||||
msgid "default role %s not found"
|
||||
msgstr "デフォルトのロール %s が見つかりません"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "%s に numfig_format は定義されていません"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "いくつかの ID が %s ノードに割り当てられていません"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "このテーブルへのパーマリンク"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "このコードへのパーマリンク"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "この画像へのパーマリンク"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "この目次へのパーマリンク"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "画像サイズを取得できませんでした。:scale: オプションは無視されます。"
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-15 01:41+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 10:26+0000\n"
|
||||
"Last-Translator: YT H <dev@theYT.net>\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "작업 숫자는 양수여야 합니다"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr "자세한 내용은 <https://www.sphinx-doc.org/>를 참조하십시오."
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s"
|
||||
@@ -2901,28 +2901,28 @@ msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s"
|
||||
msgid "Bases: %s"
|
||||
msgstr "기반 클래스: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "%s의 별칭"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "TypeVar(%s)의 별칭"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "autosummary는 내부적으로 .rst 파일을 생성합니다. 하지만 source_suffix에 .rst가 포함되어 있지 않습니다. 건너뜁니다."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autosummary: 문서화 할 %r을(를) 결정하지 못했으며, 다음 예외가 발생했습니다:\n%s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] 자동 요약 생성: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[autosummary] %s에 기록"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr "[autosummary] %r을(를) import 하지 못했습니다: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nautosummary 지시문을 사용하여 ReStructuredText를 생성합니다.\n\nsphinx-autogen은 sphinx.ext.autosummary.generate의 프런트엔드입니다.\n주어진 입력 파일에 포함된 autosummary 지시문에서 reStructuredText 파일을 생성합니다.\n\nautosummary 지시문의 형식은 ``sphinx.ext.autosummary`` Python 모듈에 문서화되어 있으며 다음 명령을 사용하여 읽을 수 있습니다.\n\n pydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "rST 파일을 생성할 원본 파일"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "모든 출력을 저장할 디렉토리"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "파일의 기본 확장자 (기본값: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "사용자 정의 템플릿 디렉토리 (기본값: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "가져온 멤버 문서화 (기본값: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr "모듈 __all__ 속성의 구성원만 정확히 문서화합니다. (기본값: %(default)s)"
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "키워드 매개변수"
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr "다른 변경 사항"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "이 표제에 대한 퍼머링크"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "이 정의에 대한 퍼머링크"
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s"
|
||||
msgid "default role %s not found"
|
||||
msgstr "기본 역할 %s을(를) 찾을 수 없음"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "numfig_format이 %s에 대해 정의되지 않음"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "%s 노드에 할당되지 않은 ID"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr "이 용어에 대한 퍼머링크"
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "이 표에 대한 퍼머링크"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "이 코드에 대한 퍼머링크"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "이 이미지에 대한 퍼머링크"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "이 목차에 대한 퍼머링크"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "이미지 크기를 얻어올 수 없습니다. :scale: 옵션을 무시합니다."
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr "Kiti pakeitimai"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Nuoroda į šią antraštę"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Nuoroda į šį apibrėžimą"
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr "Citas izmaiņas"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Pastāvīga norāde šo virsrakstu"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Pastāvīga norāde uz šo definīciju"
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1201,7 +1201,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2885,7 +2885,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2900,28 +2900,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2984,30 +2984,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3022,29 +3022,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3370,14 +3377,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3545,37 +3552,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr "Andre endringer"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Permalink til denne oversikten"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Permalink til denne definisjonen"
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2901,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr "अरु परिवर्तनहरु "
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "यो शिर्षकको लागि पर्मालिन्क । "
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "यो अर्थको लागि पर्मालिन्क"
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
@@ -39,7 +39,7 @@ Documentation.addTranslations({
|
||||
"Search": "Zoeken",
|
||||
"Search Page": "Zoekpagina",
|
||||
"Search Results": "Zoekresultaten",
|
||||
"Search finished, found %s page(s) matching the search query.": "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm.",
|
||||
"Search finished, found %s page(s) matching the search query.": "Zoekopdracht voltooid, %s pagina(s) gevonden die overeenkomen met de zoekterm.",
|
||||
"Search within %(docstitle)s": "Zoeken in %(docstitle)s",
|
||||
"Searching": "Bezig met zoeken",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
|
Binary file not shown.
@@ -9,12 +9,13 @@
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2008
|
||||
# Gert van Dijk <gertvdijk@gmail.com>, 2019
|
||||
# Jesse Tan, 2017
|
||||
# Komiya Takeshi <i.tkomiya@gmail.com>, 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1206,7 +1207,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -1883,7 +1884,7 @@ msgid "%s (C %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
|
||||
#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736
|
||||
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
|
||||
msgid "Parameters"
|
||||
msgstr "Parameters"
|
||||
|
||||
@@ -1892,12 +1893,12 @@ msgid "Return values"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
|
||||
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432
|
||||
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
|
||||
msgid "Returns"
|
||||
msgstr "Returns"
|
||||
|
||||
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
|
||||
#: sphinx/domains/python.py:434
|
||||
#: sphinx/domains/python.py:446
|
||||
msgid "Return type"
|
||||
msgstr "Return type"
|
||||
|
||||
@@ -1910,7 +1911,7 @@ msgid "variable"
|
||||
msgstr "variabele"
|
||||
|
||||
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
|
||||
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178
|
||||
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
|
||||
msgid "function"
|
||||
msgstr "functie"
|
||||
|
||||
@@ -1988,7 +1989,7 @@ msgid "Throws"
|
||||
msgstr "Werpt"
|
||||
|
||||
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
|
||||
#: sphinx/domains/python.py:1180
|
||||
#: sphinx/domains/python.py:1192
|
||||
msgid "class"
|
||||
msgstr "klasse"
|
||||
|
||||
@@ -2005,7 +2006,7 @@ msgstr ""
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr "%s() (ingebouwde functie)"
|
||||
|
||||
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817
|
||||
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (%s methode)"
|
||||
@@ -2020,7 +2021,7 @@ msgstr "%s() (klasse)"
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr "%s (globale variabele of constante)"
|
||||
|
||||
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902
|
||||
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (%s attribuut)"
|
||||
@@ -2034,20 +2035,20 @@ msgstr "Argumenten"
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (module)"
|
||||
|
||||
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182
|
||||
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
|
||||
msgid "method"
|
||||
msgstr "methode"
|
||||
|
||||
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179
|
||||
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
|
||||
msgid "data"
|
||||
msgstr "data"
|
||||
|
||||
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185
|
||||
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
|
||||
msgid "attribute"
|
||||
msgstr "attribuut"
|
||||
|
||||
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
|
||||
#: sphinx/domains/python.py:1187
|
||||
#: sphinx/domains/python.py:1199
|
||||
msgid "module"
|
||||
msgstr "module"
|
||||
|
||||
@@ -2078,7 +2079,7 @@ msgstr "operator"
|
||||
msgid "object"
|
||||
msgstr "object"
|
||||
|
||||
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181
|
||||
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
|
||||
msgid "exception"
|
||||
msgstr "exceptie"
|
||||
|
||||
@@ -2090,92 +2091,92 @@ msgstr "statement"
|
||||
msgid "built-in function"
|
||||
msgstr "ingebouwde functie"
|
||||
|
||||
#: sphinx/domains/python.py:425
|
||||
#: sphinx/domains/python.py:437
|
||||
msgid "Variables"
|
||||
msgstr "Variabelen"
|
||||
|
||||
#: sphinx/domains/python.py:429
|
||||
#: sphinx/domains/python.py:441
|
||||
msgid "Raises"
|
||||
msgstr "Veroorzaakt"
|
||||
|
||||
#: sphinx/domains/python.py:662 sphinx/domains/python.py:806
|
||||
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (in module %s)"
|
||||
|
||||
#: sphinx/domains/python.py:722 sphinx/domains/python.py:898
|
||||
#: sphinx/domains/python.py:949
|
||||
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
|
||||
#: sphinx/domains/python.py:961
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (in module %s)"
|
||||
|
||||
#: sphinx/domains/python.py:724
|
||||
#: sphinx/domains/python.py:736
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr "%s (geïntegreerde variabele)"
|
||||
|
||||
#: sphinx/domains/python.py:749
|
||||
#: sphinx/domains/python.py:761
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (geïntegreerde klasse)"
|
||||
|
||||
#: sphinx/domains/python.py:750
|
||||
#: sphinx/domains/python.py:762
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (klasse in %s)"
|
||||
|
||||
#: sphinx/domains/python.py:811
|
||||
#: sphinx/domains/python.py:823
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (%s klassemethode)"
|
||||
|
||||
#: sphinx/domains/python.py:813 sphinx/domains/python.py:953
|
||||
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
|
||||
#, python-format
|
||||
msgid "%s (%s property)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:815
|
||||
#: sphinx/domains/python.py:827
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (statische methode van %s)"
|
||||
|
||||
#: sphinx/domains/python.py:1107
|
||||
#: sphinx/domains/python.py:1119
|
||||
msgid "Python Module Index"
|
||||
msgstr "Python-moduleïndex"
|
||||
|
||||
#: sphinx/domains/python.py:1108
|
||||
#: sphinx/domains/python.py:1120
|
||||
msgid "modules"
|
||||
msgstr "modules"
|
||||
|
||||
#: sphinx/domains/python.py:1157
|
||||
#: sphinx/domains/python.py:1169
|
||||
msgid "Deprecated"
|
||||
msgstr "Verouderd"
|
||||
|
||||
#: sphinx/domains/python.py:1183
|
||||
#: sphinx/domains/python.py:1195
|
||||
msgid "class method"
|
||||
msgstr "klassemethode"
|
||||
|
||||
#: sphinx/domains/python.py:1184
|
||||
#: sphinx/domains/python.py:1196
|
||||
msgid "static method"
|
||||
msgstr "statische methode"
|
||||
|
||||
#: sphinx/domains/python.py:1186
|
||||
#: sphinx/domains/python.py:1198
|
||||
msgid "property"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1244
|
||||
#: sphinx/domains/python.py:1256
|
||||
#, python-format
|
||||
msgid ""
|
||||
"duplicate object description of %s, other instance in %s, use :noindex: for "
|
||||
"one of them"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1364
|
||||
#: sphinx/domains/python.py:1376
|
||||
#, python-format
|
||||
msgid "more than one target found for cross-reference %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:1418
|
||||
#: sphinx/domains/python.py:1430
|
||||
msgid " (deprecated)"
|
||||
msgstr " (verouderd)"
|
||||
|
||||
@@ -2617,6 +2618,12 @@ msgid ""
|
||||
"====================== slowest reading durations ======================="
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/extlinks.py:76
|
||||
#, python-format
|
||||
msgid ""
|
||||
"hardcoded link %r could be replaced by an extlink (try using %r instead)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:132
|
||||
msgid "Graphviz directive cannot have both content and a filename argument"
|
||||
msgstr "Graphviz directive mag niet zowel inhoud als een bestandsnaam argument hebben"
|
||||
@@ -2890,7 +2897,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2753
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2905,28 +2912,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "Basisklassen: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2357
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2796
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2989,30 +2996,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3027,29 +3034,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Sleutelwoordargumenten"
|
||||
@@ -3375,14 +3389,14 @@ msgid "Other changes"
|
||||
msgstr "Andere veranderingen"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Permalink naar deze titel"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Permalink naar deze definitie"
|
||||
|
||||
@@ -3401,7 +3415,7 @@ msgstr "Zoeken aan het voorbereiden..."
|
||||
#: sphinx/themes/basic/static/searchtools.js:310
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm."
|
||||
msgstr "Zoekopdracht voltooid, %s pagina(s) gevonden die overeenkomen met de zoekterm."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js:365
|
||||
msgid ", in "
|
||||
@@ -3550,37 +3564,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permalink naar deze tabel"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permalink naar deze broncode"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permallink naar deze afbeelding"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Permalink naar deze toctree"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1204,7 +1204,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2888,7 +2888,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2903,28 +2903,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr "Klasy bazowe: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2987,30 +2987,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3025,29 +3025,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "domyślny sufiks dla plików (domyślnie: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumenty Nazwane"
|
||||
@@ -3373,14 +3380,14 @@ msgid "Other changes"
|
||||
msgstr "Inne zmiany"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Stały odnośnik do tego nagłówka"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Stały odnośnik do tej definicji"
|
||||
|
||||
@@ -3548,37 +3555,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Stały odnośnik do tej tabeli"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Stały odnośnik do tego bloku kodu"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Stały odnośnik do tego obrazu"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Stały odnośnik do tego spisu treści"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1200,7 +1200,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2884,7 +2884,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2899,28 +2899,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2983,30 +2983,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3021,29 +3021,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3369,14 +3376,14 @@ msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr ""
|
||||
|
||||
@@ -3544,37 +3551,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -13,8 +13,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 06:33+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 15:44+0000\n"
|
||||
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1206,7 +1206,7 @@ msgid "job number should be a positive number"
|
||||
msgstr "número de tarefas deve ser um número positivo"
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr "Para mais informações, visite <https://www.sphinx-doc.org/>."
|
||||
|
||||
@@ -2890,7 +2890,7 @@ msgid ""
|
||||
msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "Falha ao obter uma assinatura de função para %s: %s"
|
||||
@@ -2905,28 +2905,28 @@ msgstr "Falha ao obter uma assinatura de construtor para %s: %s"
|
||||
msgid "Bases: %s"
|
||||
msgstr "Base: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr "apelido de %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr "apelido de TypeVar(%s)"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "Falha ao obter uma assinatura de método para %s: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "__slots__ inválido encontrado em %s. Ignorado."
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2989,30 +2989,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr "autosummary gera arquivos .rst internamente. Mas seu source_suffix não contém .rst. Ignorado."
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr "autosummary: falhou em determinar %r a ser documentado, a seguinte exceção foi levantada:\n%s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr "[autosummary] gerando autosummary para: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr "[autosummary] escrevendo em %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr "[autosummary] falha ao importar %r: %s"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3027,29 +3027,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr "\nGera ReStructuredText usando diretivas de resumo automático.\n\nsphinx-autogen é um frontend para sphinx.ext.autosummary.generate.\nEle gera os arquivos reStructuredText a partir de diretivas autosummary\ncontidas nos arquivos de entrada fornecidos.\n\nO formato da diretiva autosummary está documentado no módulo Python\n``sphinx.ext.autosummary`` e pode ser lido usando:\n\n pydoc sphinx.ext.autosummary\n"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr "arquivos-fonte para gerar arquivos rST"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr "diretório para colocar toda a saída"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr "sufixo padrão para arquivos (padrão: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr "diretório de modelos personalizado (padrão: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr "documenta membros importados (padrão: %(default)s)"
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr "documenta exatamente os membros no módulo atributo __all__. (padrão: %(default)s)"
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr "Argumentos de Palavras-chave"
|
||||
@@ -3375,14 +3382,14 @@ msgid "Other changes"
|
||||
msgstr "Outras alterações"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link permanente para este título"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link permanente para esta definição"
|
||||
|
||||
@@ -3550,37 +3557,37 @@ msgstr "exceção ao avaliar apenas a expressão da diretiva: %s"
|
||||
msgid "default role %s not found"
|
||||
msgstr "papel padrão %s não encontrado"
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr "numfig_format não está definido para %s"
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr "Quaisquer IDs não atribuídos ao nó %s"
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr "Link permanente para este termo"
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Link Permanente para essa tabela"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Link Permanente para esse código"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Link Permanente para essa imagem"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Link permanente para esse \"toctree\""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr "Não foi possível obter o tamanho da imagem. A opção :scale: foi ignorada."
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2901,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr "Outras alterações"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link permanente para este título"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link permanente para esta definição"
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2021-11-21 00:10+0000\n"
|
||||
"PO-Revision-Date: 2021-11-14 00:10+0000\n"
|
||||
"POT-Creation-Date: 2021-11-28 00:11+0000\n"
|
||||
"PO-Revision-Date: 2021-11-28 00:11+0000\n"
|
||||
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1202,7 +1202,7 @@ msgid "job number should be a positive number"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598
|
||||
#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614
|
||||
msgid "For more information, visit <https://www.sphinx-doc.org/>."
|
||||
msgstr ""
|
||||
|
||||
@@ -2886,7 +2886,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
|
||||
#: sphinx/ext/autodoc/__init__.py:2743
|
||||
#: sphinx/ext/autodoc/__init__.py:2751
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr ""
|
||||
@@ -2901,28 +2901,28 @@ msgstr ""
|
||||
msgid "Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829
|
||||
#: sphinx/ext/autodoc/__init__.py:1848
|
||||
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
|
||||
#: sphinx/ext/autodoc/__init__.py:1856
|
||||
#, python-format
|
||||
msgid "alias of %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1890
|
||||
#: sphinx/ext/autodoc/__init__.py:1898
|
||||
#, python-format
|
||||
msgid "alias of TypeVar(%s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217
|
||||
#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2348
|
||||
#: sphinx/ext/autodoc/__init__.py:2356
|
||||
#, python-format
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2786
|
||||
#: sphinx/ext/autodoc/__init__.py:2794
|
||||
msgid ""
|
||||
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
|
||||
" Please update your setting."
|
||||
@@ -2985,30 +2985,30 @@ msgid ""
|
||||
"contain .rst. Skipped."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:188
|
||||
#: sphinx/ext/autosummary/generate.py:237
|
||||
#: sphinx/ext/autosummary/generate.py:189
|
||||
#: sphinx/ext/autosummary/generate.py:253
|
||||
#, python-format
|
||||
msgid ""
|
||||
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:384
|
||||
#: sphinx/ext/autosummary/generate.py:400
|
||||
#, python-format
|
||||
msgid "[autosummary] generating autosummary for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:388
|
||||
#: sphinx/ext/autosummary/generate.py:404
|
||||
#, python-format
|
||||
msgid "[autosummary] writing to %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:425
|
||||
#: sphinx/ext/autosummary/generate.py:441
|
||||
#, python-format
|
||||
msgid "[autosummary] failed to import %r: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:599
|
||||
#: sphinx/ext/autosummary/generate.py:615
|
||||
msgid ""
|
||||
"\n"
|
||||
"Generate ReStructuredText using autosummary directives.\n"
|
||||
@@ -3023,29 +3023,36 @@ msgid ""
|
||||
" pydoc sphinx.ext.autosummary\n"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:616
|
||||
#: sphinx/ext/autosummary/generate.py:632
|
||||
msgid "source files to generate rST files for"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:620
|
||||
#: sphinx/ext/autosummary/generate.py:636
|
||||
msgid "directory to place all output in"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:623
|
||||
#: sphinx/ext/autosummary/generate.py:639
|
||||
#, python-format
|
||||
msgid "default suffix for files (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:627
|
||||
#: sphinx/ext/autosummary/generate.py:643
|
||||
#, python-format
|
||||
msgid "custom template directory (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:631
|
||||
#: sphinx/ext/autosummary/generate.py:647
|
||||
#, python-format
|
||||
msgid "document imported members (default: %(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autosummary/generate.py:651
|
||||
#, python-format
|
||||
msgid ""
|
||||
"document exactly the members in module __all__ attribute. (default: "
|
||||
"%(default)s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703
|
||||
msgid "Keyword Arguments"
|
||||
msgstr ""
|
||||
@@ -3371,14 +3378,14 @@ msgid "Other changes"
|
||||
msgstr "Alte schimbări"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388
|
||||
#: sphinx/writers/html5.py:393
|
||||
#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392
|
||||
#: sphinx/writers/html5.py:397
|
||||
msgid "Permalink to this headline"
|
||||
msgstr "Link permanent la acest titlu"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103
|
||||
#: sphinx/writers/html5.py:112
|
||||
#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107
|
||||
#: sphinx/writers/html5.py:116
|
||||
msgid "Permalink to this definition"
|
||||
msgstr "Link permanent la această definiție"
|
||||
|
||||
@@ -3546,37 +3553,37 @@ msgstr ""
|
||||
msgid "default role %s not found"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301
|
||||
#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305
|
||||
#, python-format
|
||||
msgid "numfig_format is not defined for %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311
|
||||
#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315
|
||||
#, python-format
|
||||
msgid "Any IDs not assigned for %s node"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365
|
||||
#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369
|
||||
msgid "Permalink to this term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397
|
||||
#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Link permanent la acest tabel"
|
||||
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440
|
||||
#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Link permanent la acest cod"
|
||||
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442
|
||||
#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Link permanent la această imagine"
|
||||
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444
|
||||
#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr "Link permanent la acest cuprins"
|
||||
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565
|
||||
#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569
|
||||
msgid "Could not obtain image size. :scale: option is ignored."
|
||||
msgstr ""
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user