mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
6e93ba6db8
@ -1,5 +1,8 @@
|
|||||||
language: python
|
language: python
|
||||||
sudo: false
|
sudo: false
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.cache/pip
|
||||||
python:
|
python:
|
||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
@ -11,6 +14,7 @@ env:
|
|||||||
- DOCUTILS=0.11
|
- DOCUTILS=0.11
|
||||||
- DOCUTILS=0.12
|
- DOCUTILS=0.12
|
||||||
install:
|
install:
|
||||||
|
- pip install -U pip
|
||||||
- pip install docutils==$DOCUTILS
|
- pip install docutils==$DOCUTILS
|
||||||
- pip install -r test-reqs.txt
|
- pip install -r test-reqs.txt
|
||||||
before_script: flake8
|
before_script: flake8
|
||||||
|
107
CHANGES
107
CHANGES
@ -1,5 +1,39 @@
|
|||||||
Release 1.4 (in development)
|
Release 1.4 alpha2 (in development)
|
||||||
============================
|
===================================
|
||||||
|
|
||||||
|
Incompatible changes
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Features added
|
||||||
|
--------------
|
||||||
|
* #2308: Define ``\tablecontinued`` macro to redefine the style of continued label for
|
||||||
|
longtables.
|
||||||
|
* Select an image by similarity if multiple images are globbed by ``.. image:: filename.*``
|
||||||
|
* #1921: Support figure substitutions by :confval:`language` and :confval:`figure_language_filename`
|
||||||
|
* #2245: Add ``latex_elements["passoptionstopackages"]`` option to call PassOptionsToPackages
|
||||||
|
in early stage of preambles.
|
||||||
|
* #2340: Math extension: support alignment of multiple equations for MathJAX.
|
||||||
|
* #2338: Define ``\titlereference`` macro to redefine the style of ``title-reference`` roles.
|
||||||
|
* Define ``\menuselection`` and ``\accelerator`` macros to redefine the style of `menuselection` roles.
|
||||||
|
* Define ``\internalreference`` macro to redefine the style of references
|
||||||
|
|
||||||
|
Bugs fixed
|
||||||
|
----------
|
||||||
|
* Remove ``image/gif`` from supported_image_types of LaTeX writer (#2272)
|
||||||
|
* Fix ValueError is raised if LANGUAGE is empty string
|
||||||
|
* Fix unpack warning is shown when the directives generated from ``Sphinx.add_crossref_type`` is used
|
||||||
|
* The default highlight language is now ``default``. This means that source code
|
||||||
|
is highlighted as Python 3 (which is mostly a superset of Python 2) if possible.
|
||||||
|
To get the old behavior back, add ``highlight_language = "python"`` to conf.py.
|
||||||
|
* #2329: Refresh environment forcely if source directory has changed.
|
||||||
|
* #2331: Fix code-blocks are filled by block in dvi; remove ``xcdraw`` option from xcolor package
|
||||||
|
* Fix the confval type checker emits warnings if unicode is given to confvals which expects string value
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Release 1.4 alpha1 (released Feb 14, 2016)
|
||||||
|
==========================================
|
||||||
|
|
||||||
Incompatible changes
|
Incompatible changes
|
||||||
--------------------
|
--------------------
|
||||||
@ -19,6 +53,22 @@ Incompatible changes
|
|||||||
of ``sphinx.addnodes.literal_emphasis`` node.
|
of ``sphinx.addnodes.literal_emphasis`` node.
|
||||||
* #2022: :confval:`html_extra_path` also copies dotfiles in the extra directory, and
|
* #2022: :confval:`html_extra_path` also copies dotfiles in the extra directory, and
|
||||||
refers to :confval:`exclude_patterns` to exclude extra files and directories.
|
refers to :confval:`exclude_patterns` to exclude extra files and directories.
|
||||||
|
* #2300: enhance autoclass:: to use the docstring of __new__ if __init__ method's is missing
|
||||||
|
of empty
|
||||||
|
* #2251: Previously, under glossary directives, multiple terms for one definition are
|
||||||
|
converted into single ``term`` node and the each terms in the term node are separated
|
||||||
|
by ``termsep`` node. In new implementation, each terms are converted into individual
|
||||||
|
``term`` nodes and ``termsep`` node is removed.
|
||||||
|
By this change, output layout of every builders are changed a bit.
|
||||||
|
* The default highlight language is now Python 3. This means that source code
|
||||||
|
is highlighted as Python 3 (which is mostly a superset of Python 2), and no
|
||||||
|
parsing is attempted to distinguish valid code. To get the old behavior back,
|
||||||
|
add ``highlight_language = "python"`` to conf.py.
|
||||||
|
* `Locale Date Markup Language
|
||||||
|
<http://unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns>`_ like
|
||||||
|
``"MMMM dd, YYYY"`` is default format for `today_fmt` and `html_last_updated_fmt`.
|
||||||
|
However strftime format like ``"%B %d, %Y"`` is also supported for backward
|
||||||
|
compatibility until Sphinx-1.5. Later format will be disabled from Sphinx-1.5.
|
||||||
|
|
||||||
Features added
|
Features added
|
||||||
--------------
|
--------------
|
||||||
@ -52,7 +102,19 @@ Features added
|
|||||||
* #2282: Add "language" attribute to html tag in the "basic" theme
|
* #2282: Add "language" attribute to html tag in the "basic" theme
|
||||||
* #1779: Add EPUB 3 builder
|
* #1779: Add EPUB 3 builder
|
||||||
* #1751: Add :confval:`todo_link_only` to avoid file path and line indication on
|
* #1751: Add :confval:`todo_link_only` to avoid file path and line indication on
|
||||||
:rst:dir:`todolist`.
|
:rst:dir:`todolist`. Thanks to Francesco Montesano.
|
||||||
|
* #2199: Use ``imagesize`` package to obtain size of images.
|
||||||
|
* #1099: Add configurable retries to the linkcheck builder. Thanks to Alex Gaynor.
|
||||||
|
Also don't check anchors starting with ``!``.
|
||||||
|
* #2300: enhance autoclass:: to use the docstring of __new__ if __init__ method's is missing
|
||||||
|
of empty
|
||||||
|
* #1858: Add Sphinx.add_enumerable_node() to add enumerable nodes for numfig feature
|
||||||
|
* #1286, #2099: Add ``sphinx.ext.autosectionlabel`` extension to allow reference
|
||||||
|
sections using its title. Thanks to Tadhg O'Higgins.
|
||||||
|
* #1854: Allow to choose Janome for Japanese splitter.
|
||||||
|
* #1853: support custom text splitter on html search with ``language='ja'``.
|
||||||
|
* #2320: classifier of glossary terms can be used for index entries grouping key.
|
||||||
|
The classifier also be used for translation. See also :ref:`glossary-directive`.
|
||||||
|
|
||||||
Bugs fixed
|
Bugs fixed
|
||||||
----------
|
----------
|
||||||
@ -73,6 +135,12 @@ Bugs fixed
|
|||||||
* #2165, #2218: Remove faulty and non-need conditional from sphinx.sty.
|
* #2165, #2218: Remove faulty and non-need conditional from sphinx.sty.
|
||||||
* Fix broken LaTeX code is generated if unknown language is given
|
* Fix broken LaTeX code is generated if unknown language is given
|
||||||
* #1944: Fix rst_prolog breaks file-wide metadata
|
* #1944: Fix rst_prolog breaks file-wide metadata
|
||||||
|
* #2074: make gettext should use canonical relative paths for .pot. Thanks to
|
||||||
|
anatoly techtonik.
|
||||||
|
* #2311: Fix sphinx.ext.inheritance_diagram raises AttributeError
|
||||||
|
* #2251: Line breaks in .rst files are transferred to .pot files in a wrong way.
|
||||||
|
* #794: Fix date formatting in latex output is not localized
|
||||||
|
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
@ -80,13 +148,39 @@ Documentation
|
|||||||
* #1757: Fix for usage of :confval:`html_last_updated_fmt`. Thanks to Ralf Hemmecke.
|
* #1757: Fix for usage of :confval:`html_last_updated_fmt`. Thanks to Ralf Hemmecke.
|
||||||
|
|
||||||
|
|
||||||
Release 1.3.6 (in development)
|
Release 1.3.7 (in development)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
Bugs fixed
|
Bugs fixed
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
|
||||||
|
Release 1.3.6 (released Feb 29, 2016)
|
||||||
|
=====================================
|
||||||
|
|
||||||
|
Features added
|
||||||
|
--------------
|
||||||
|
|
||||||
|
* #1873, #1876, #2278: Add ``page_source_suffix`` html context variable. This should be
|
||||||
|
introduced with :confval:`source_parsers` feature. Thanks for Eric Holscher.
|
||||||
|
|
||||||
|
|
||||||
|
Bugs fixed
|
||||||
|
----------
|
||||||
|
|
||||||
|
* #2265: Fix babel is used in spite of disabling it on ``latex_elements``
|
||||||
|
* #2295: Avoid mutating dictionary errors while enumerating members in autodoc
|
||||||
|
with Python 3
|
||||||
|
* #2291: Fix pdflatex "Counter too large" error from footnotes inside tables of contents
|
||||||
|
* #2292: Fix some footnotes disappear from LaTeX output
|
||||||
|
* #2287: ``sphinx.transforms.Locale`` always uses rst parser. Sphinx i18n feature should
|
||||||
|
support parsers that specified source_parsers.
|
||||||
|
* #2290: Fix ``sphinx.ext.mathbase`` use of amsfonts may break user choice of math fonts
|
||||||
|
* #2324: Print a hint how to increase the recursion limit when it is hit.
|
||||||
|
* #1565, #2229: Revert new warning; the new warning will be triggered from version 1.4 on.
|
||||||
|
* #2329: Refresh environment forcely if source directory has changed.
|
||||||
|
* #2019: Fix the domain objects in search result are not escaped
|
||||||
|
|
||||||
Release 1.3.5 (released Jan 24, 2016)
|
Release 1.3.5 (released Jan 24, 2016)
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
@ -101,7 +195,8 @@ Bugs fixed
|
|||||||
* #2243: Ignore strange docstring types for classes, do not crash
|
* #2243: Ignore strange docstring types for classes, do not crash
|
||||||
* #2247: Fix #2205 breaks make html for definition list with classifiers
|
* #2247: Fix #2205 breaks make html for definition list with classifiers
|
||||||
that contains regular-expression like string
|
that contains regular-expression like string
|
||||||
* #1565: Show warning if Pygments throws an ErrorToken
|
* #1565: Sphinx will now emit a warning that highlighting was skipped if the syntax
|
||||||
|
is incorrect for `code-block`, `literalinclude` and so on.
|
||||||
* #2211: Fix paragraphs in table cell doesn't work in Latex output
|
* #2211: Fix paragraphs in table cell doesn't work in Latex output
|
||||||
* #2253: ``:pyobject:`` option of ``literalinclude`` directive can't detect indented
|
* #2253: ``:pyobject:`` option of ``literalinclude`` directive can't detect indented
|
||||||
body block when the block starts with blank or comment lines.
|
body block when the block starts with blank or comment lines.
|
||||||
@ -329,7 +424,7 @@ Incompatible changes
|
|||||||
* Dependency requirement updates: docutils 0.11, Pygments 2.0
|
* Dependency requirement updates: docutils 0.11, Pygments 2.0
|
||||||
* The ``gettext_enables`` config value has been renamed to
|
* The ``gettext_enables`` config value has been renamed to
|
||||||
`gettext_additional_targets`.
|
`gettext_additional_targets`.
|
||||||
* #1735: Use https://doc.python.org/ instead of ``http`` protocol.
|
* #1735: Use https://docs.python.org/ instead of ``http`` protocol.
|
||||||
It was used for `sphinx.ext.intersphinx` and some documentation.
|
It was used for `sphinx.ext.intersphinx` and some documentation.
|
||||||
|
|
||||||
Features added
|
Features added
|
||||||
|
62
EXAMPLES
62
EXAMPLES
@ -4,7 +4,7 @@ Projects using Sphinx
|
|||||||
This is an (incomplete) alphabetic list of projects that use Sphinx or
|
This is an (incomplete) alphabetic list of projects that use Sphinx or
|
||||||
are experimenting with using it for their documentation. If you like to
|
are experimenting with using it for their documentation. If you like to
|
||||||
be included, please mail to `the Google group
|
be included, please mail to `the Google group
|
||||||
<https://groups.google.com/group/sphinx-users>`_.
|
<https://groups.google.com/forum/#!forum/sphinx-users>`_.
|
||||||
|
|
||||||
I've grouped the list into sections to make it easier to find
|
I've grouped the list into sections to make it easier to find
|
||||||
interesting examples.
|
interesting examples.
|
||||||
@ -15,11 +15,11 @@ Documentation using the default theme
|
|||||||
* APSW: http://apidoc.apsw.googlecode.com/hg/index.html
|
* APSW: http://apidoc.apsw.googlecode.com/hg/index.html
|
||||||
* ASE: https://wiki.fysik.dtu.dk/ase/
|
* ASE: https://wiki.fysik.dtu.dk/ase/
|
||||||
* Calibre: http://manual.calibre-ebook.com/
|
* Calibre: http://manual.calibre-ebook.com/
|
||||||
* CodePy: http://documen.tician.de/codepy/
|
* CodePy: https://documen.tician.de/codepy/
|
||||||
* Cython: http://docs.cython.org/
|
* Cython: http://docs.cython.org/
|
||||||
* Cormoran: http://cormoran.nhopkg.org/docs/
|
* Cormoran: http://cormoran.nhopkg.org/docs/
|
||||||
* Director: http://pythonhosted.org/director/
|
* Director: http://pythonhosted.org/director/
|
||||||
* Dirigible: http://www.projectdirigible.com/documentation/
|
* Dirigible: http://www.projectdirigible.com/
|
||||||
* F2py: http://f2py.sourceforge.net/docs/
|
* F2py: http://f2py.sourceforge.net/docs/
|
||||||
* GeoDjango: https://docs.djangoproject.com/en/dev/ref/contrib/gis/
|
* GeoDjango: https://docs.djangoproject.com/en/dev/ref/contrib/gis/
|
||||||
* Genomedata:
|
* Genomedata:
|
||||||
@ -31,10 +31,10 @@ Documentation using the default theme
|
|||||||
* Heapkeeper: http://heapkeeper.org/
|
* Heapkeeper: http://heapkeeper.org/
|
||||||
* Hands-on Python Tutorial:
|
* Hands-on Python Tutorial:
|
||||||
http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/
|
http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/
|
||||||
* Hedge: http://documen.tician.de/hedge/
|
* Hedge: https://documen.tician.de/hedge/
|
||||||
* Leo: http://leoeditor.com/
|
* Leo: http://leoeditor.com/
|
||||||
* Lino: http://lino.saffre-rumma.net/
|
* Lino: http://www.lino-framework.org/
|
||||||
* MeshPy: http://documen.tician.de/meshpy/
|
* MeshPy: https://documen.tician.de/meshpy/
|
||||||
* mpmath: http://mpmath.googlecode.com/svn/trunk/doc/build/index.html
|
* mpmath: http://mpmath.googlecode.com/svn/trunk/doc/build/index.html
|
||||||
* OpenEXR: http://excamera.com/articles/26/doc/index.html
|
* OpenEXR: http://excamera.com/articles/26/doc/index.html
|
||||||
* OpenGDA: http://www.opengda.org/gdadoc/html/
|
* OpenGDA: http://www.opengda.org/gdadoc/html/
|
||||||
@ -42,17 +42,17 @@ Documentation using the default theme
|
|||||||
* Paste: http://pythonpaste.org/script/
|
* Paste: http://pythonpaste.org/script/
|
||||||
* Paver: http://paver.github.io/paver/
|
* Paver: http://paver.github.io/paver/
|
||||||
* Pioneers and Prominent Men of Utah: http://pioneers.rstebbing.com/
|
* Pioneers and Prominent Men of Utah: http://pioneers.rstebbing.com/
|
||||||
* PyCantonese: http://pycantonese.github.io/
|
* PyCantonese: http://pycantonese.org/
|
||||||
* Pyccuracy: https://github.com/heynemann/pyccuracy/wiki/
|
* Pyccuracy: https://github.com/heynemann/pyccuracy/wiki/
|
||||||
* PyCuda: http://documen.tician.de/pycuda/
|
* PyCuda: https://documen.tician.de/pycuda/
|
||||||
* Pyevolve: http://pyevolve.sourceforge.net/
|
* Pyevolve: http://pyevolve.sourceforge.net/
|
||||||
* Pylo: http://documen.tician.de/pylo/
|
* Pylo: https://documen.tician.de/pylo/
|
||||||
* PyMQI: http://pythonhosted.org/pymqi/
|
* PyMQI: http://pythonhosted.org/pymqi/
|
||||||
* PyPubSub: http://pubsub.sourceforge.net/
|
* PyPubSub: http://pubsub.sourceforge.net/
|
||||||
* pySPACE: http://pyspace.github.io/pyspace/
|
* pySPACE: http://pyspace.github.io/pyspace/
|
||||||
* Python: https://docs.python.org/
|
* Python: https://docs.python.org/3/
|
||||||
* python-apt: http://apt.alioth.debian.org/python-apt-doc/
|
* python-apt: http://apt.alioth.debian.org/python-apt-doc/
|
||||||
* PyUblas: http://documen.tician.de/pyublas/
|
* PyUblas: https://documen.tician.de/pyublas/
|
||||||
* Quex: http://quex.sourceforge.net/doc/html/main.html
|
* Quex: http://quex.sourceforge.net/doc/html/main.html
|
||||||
* Scapy: http://www.secdev.org/projects/scapy/doc/
|
* Scapy: http://www.secdev.org/projects/scapy/doc/
|
||||||
* Segway: http://noble.gs.washington.edu/proj/segway/doc/1.1.0/segway.html
|
* Segway: http://noble.gs.washington.edu/proj/segway/doc/1.1.0/segway.html
|
||||||
@ -78,7 +78,6 @@ Documentation using a customized version of the default theme
|
|||||||
https://or-tools.googlecode.com/svn/trunk/documentation/user_manual/index.html
|
https://or-tools.googlecode.com/svn/trunk/documentation/user_manual/index.html
|
||||||
* GPAW: https://wiki.fysik.dtu.dk/gpaw/
|
* GPAW: https://wiki.fysik.dtu.dk/gpaw/
|
||||||
* Grok: http://grok.zope.org/doc/current/
|
* Grok: http://grok.zope.org/doc/current/
|
||||||
* IFM: http://fluffybunny.memebot.com/ifm-docs/index.html
|
|
||||||
* Kaa: http://api.freevo.org/kaa-base/
|
* Kaa: http://api.freevo.org/kaa-base/
|
||||||
* LEPL: http://www.acooke.org/lepl/
|
* LEPL: http://www.acooke.org/lepl/
|
||||||
* Mayavi: http://docs.enthought.com/mayavi/mayavi/
|
* Mayavi: http://docs.enthought.com/mayavi/mayavi/
|
||||||
@ -87,11 +86,11 @@ Documentation using a customized version of the default theme
|
|||||||
* NumPy: http://docs.scipy.org/doc/numpy/reference/
|
* NumPy: http://docs.scipy.org/doc/numpy/reference/
|
||||||
* OpenCV: http://docs.opencv.org/
|
* OpenCV: http://docs.opencv.org/
|
||||||
* Peach^3: http://peach3.nl/doc/latest/userdoc/
|
* Peach^3: http://peach3.nl/doc/latest/userdoc/
|
||||||
* Sage: http://sagemath.org/doc/
|
* Sage: http://www.sagemath.org/doc/
|
||||||
* SciPy: http://docs.scipy.org/doc/scipy/reference/
|
* SciPy: http://docs.scipy.org/doc/scipy/reference/
|
||||||
* simuPOP: http://simupop.sourceforge.net/manual_release/build/userGuide.html
|
* simuPOP: http://simupop.sourceforge.net/manual_release/build/userGuide.html
|
||||||
* Sprox: http://sprox.org/
|
* Sprox: http://sprox.org/
|
||||||
* TurboGears: http://turbogears.org/2.0/docs/
|
* TurboGears: http://turbogears.readthedocs.org/en/latest/
|
||||||
* Varnish: https://www.varnish-cache.org/docs/
|
* Varnish: https://www.varnish-cache.org/docs/
|
||||||
* Zentyal: http://doc.zentyal.org/
|
* Zentyal: http://doc.zentyal.org/
|
||||||
* Zope: http://docs.zope.org/zope2/index.html
|
* Zope: http://docs.zope.org/zope2/index.html
|
||||||
@ -114,9 +113,8 @@ Documentation using the sphinxdoc theme
|
|||||||
* Python Wild Magic: http://vmlaker.github.io/pythonwildmagic/
|
* Python Wild Magic: http://vmlaker.github.io/pythonwildmagic/
|
||||||
* Reteisi: http://www.reteisi.org/contents.html
|
* Reteisi: http://www.reteisi.org/contents.html
|
||||||
* Sqlkit: http://sqlkit.argolinux.org/
|
* Sqlkit: http://sqlkit.argolinux.org/
|
||||||
* Tau: http://www.tango-controls.org/static/tau/latest/doc/html/index.html
|
|
||||||
* Turbulenz: http://docs.turbulenz.com/
|
* Turbulenz: http://docs.turbulenz.com/
|
||||||
* WebFaction: http://docs.webfaction.com/
|
* WebFaction: https://docs.webfaction.com/
|
||||||
|
|
||||||
|
|
||||||
Documentation using another builtin theme
|
Documentation using another builtin theme
|
||||||
@ -145,12 +143,12 @@ Documentation using another builtin theme
|
|||||||
Documentation using a custom theme/integrated in a site
|
Documentation using a custom theme/integrated in a site
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
|
||||||
* Blender: http://www.blender.org/documentation/250PythonDoc/
|
* Blender: https://www.blender.org/api/250PythonDoc/
|
||||||
* Blinker: http://discorporate.us/projects/Blinker/docs/
|
* Blinker: http://discorporate.us/projects/Blinker/docs/
|
||||||
* Ceph: http://ceph.com/docs/master/
|
* Ceph: http://docs.ceph.com/docs/master/
|
||||||
* Classy: http://www.pocoo.org/projects/classy/
|
* Classy: http://www.pocoo.org/projects/classy/
|
||||||
* DEAP: http://deap.gel.ulaval.ca/doc/0.8/index.html
|
* DEAP: http://deap.gel.ulaval.ca/doc/0.8/index.html
|
||||||
* Django: http://docs.djangoproject.com/
|
* Django: https://docs.djangoproject.com/
|
||||||
* Elemental: http://libelemental.org/documentation/dev/index.html
|
* Elemental: http://libelemental.org/documentation/dev/index.html
|
||||||
* Enterprise Toolkit for Acrobat products:
|
* Enterprise Toolkit for Acrobat products:
|
||||||
http://www.adobe.com/devnet-docs/acrobatetk/
|
http://www.adobe.com/devnet-docs/acrobatetk/
|
||||||
@ -160,33 +158,31 @@ Documentation using a custom theme/integrated in a site
|
|||||||
* Gameduino: http://excamera.com/sphinx/gameduino/
|
* Gameduino: http://excamera.com/sphinx/gameduino/
|
||||||
* GeoServer: http://docs.geoserver.org/
|
* GeoServer: http://docs.geoserver.org/
|
||||||
* Glashammer: http://glashammer.org/
|
* Glashammer: http://glashammer.org/
|
||||||
* Istihza (Turkish Python documentation project):
|
* Istihza (Turkish Python documentation project): http://belgeler.istihza.com/py2/
|
||||||
http://www.istihza.com/py2/icindekiler_python.html
|
|
||||||
* Lasso: http://lassoguide.com/
|
* Lasso: http://lassoguide.com/
|
||||||
* Manage documentation such as source code (fr): http://redaction-technique.org/
|
* Manage documentation such as source code (fr): http://redaction-technique.org/
|
||||||
* MathJax: http://docs.mathjax.org/en/latest/
|
* MathJax: http://docs.mathjax.org/en/latest/
|
||||||
* MirrorBrain: http://mirrorbrain.org/docs/
|
* MirrorBrain: http://mirrorbrain.org/docs/
|
||||||
* MyHDL: http://docs.myhdl.org/en/latest/
|
* MyHDL: http://docs.myhdl.org/en/latest/
|
||||||
* nose: http://nose.readthedocs.org/en/latest/
|
* nose: http://nose.readthedocs.org/en/latest/
|
||||||
* NoTex: https://notex.ch/overview/
|
* NoTex: https://www.notex.ch/overview/
|
||||||
* ObjectListView: http://objectlistview.sourceforge.net/python/
|
* ObjectListView: http://objectlistview.sourceforge.net/python/
|
||||||
* Open ERP: http://doc.openerp.com/
|
* Open ERP: https://doc.odoo.com/
|
||||||
* OpenCV: http://docs.opencv.org/
|
* OpenCV: http://docs.opencv.org/
|
||||||
* Open Dylan: http://opendylan.org/documentation/ and also provides a
|
* Open Dylan: http://opendylan.org/documentation/
|
||||||
`dylan domain <https://github.com/dylan-lang/sphinx-extensions/blob/master/dylandomain/reference.rst>`__
|
|
||||||
* OpenLayers: http://docs.openlayers.org/
|
* OpenLayers: http://docs.openlayers.org/
|
||||||
* PyEphem: http://rhodesmill.org/pyephem/
|
* PyEphem: http://rhodesmill.org/pyephem/
|
||||||
* German Plone user manual: http://www.hasecke.com/plone-benutzerhandbuch/
|
* German Plone user manual: http://www.hasecke.com/plone-benutzerhandbuch/
|
||||||
* PSI4: http://sirius.chem.vt.edu/psi4manual/latest/index.html
|
* PSI4: http://www.psicode.org/psi4manual/master/index.html
|
||||||
* Pylons: http://docs.pylonsproject.org/projects/pylons-webframework/en/latest/
|
* Pylons: http://docs.pylonsproject.org/projects/pylons-webframework/en/latest/
|
||||||
* PyMOTW: http://pymotw.com/2/
|
* PyMOTW: https://pymotw.com/2/
|
||||||
* python-aspectlib: http://python-aspectlib.readthedocs.org/en/latest/
|
* python-aspectlib: http://python-aspectlib.readthedocs.org/en/latest/
|
||||||
(`sphinx-py3doc-enhanced-theme`_)
|
(`sphinx-py3doc-enhanced-theme`_)
|
||||||
* QGIS: http://qgis.org/en/docs/index.html
|
* QGIS: http://qgis.org/en/docs/index.html
|
||||||
* qooxdoo: http://manual.qooxdoo.org/current/
|
* qooxdoo: http://manual.qooxdoo.org/current/
|
||||||
* Roundup: http://www.roundup-tracker.org/
|
* Roundup: http://www.roundup-tracker.org/
|
||||||
* Selenium: http://docs.seleniumhq.org/docs/
|
* Selenium: http://docs.seleniumhq.org/docs/
|
||||||
* Self: http://selflanguage.org/
|
* Self: http://www.selflanguage.org/
|
||||||
* Substance D: http://docs.pylonsproject.org/projects/substanced/en/latest/
|
* Substance D: http://docs.pylonsproject.org/projects/substanced/en/latest/
|
||||||
* Tablib: http://tablib.org/
|
* Tablib: http://tablib.org/
|
||||||
* SQLAlchemy: http://www.sqlalchemy.org/docs/
|
* SQLAlchemy: http://www.sqlalchemy.org/docs/
|
||||||
@ -201,14 +197,12 @@ Documentation using a custom theme/integrated in a site
|
|||||||
Homepages and other non-documentation sites
|
Homepages and other non-documentation sites
|
||||||
-------------------------------------------
|
-------------------------------------------
|
||||||
|
|
||||||
* Applied Mathematics at the Stellenbosch University: http://dip.sun.ac.za/
|
|
||||||
* A personal page: http://www.dehlia.in/
|
* A personal page: http://www.dehlia.in/
|
||||||
* Benoit Boissinot: http://bboissin.appspot.com/
|
* Benoit Boissinot: http://bboissin.appspot.com/
|
||||||
* lunarsite: http://lunaryorn.de/
|
* lunarsite: http://lunaryorn.de/
|
||||||
* Red Hot Chili Python: http://redhotchilipython.com/
|
|
||||||
* The Wine Cellar Book: http://www.thewinecellarbook.com/doc/en/
|
* The Wine Cellar Book: http://www.thewinecellarbook.com/doc/en/
|
||||||
* UC Berkeley Advanced Control Systems course:
|
* UC Berkeley Advanced Control Systems course:
|
||||||
http://www.me.berkeley.edu/ME233/sp14/
|
http://msc.berkeley.edu/tomizuka/me233spring13/
|
||||||
* VOR: http://www.vor-cycling.be/
|
* VOR: http://www.vor-cycling.be/
|
||||||
|
|
||||||
|
|
||||||
@ -217,11 +211,11 @@ Books produced using Sphinx
|
|||||||
|
|
||||||
* "The ``repoze.bfg`` Web Application Framework":
|
* "The ``repoze.bfg`` Web Application Framework":
|
||||||
http://www.amazon.com/repoze-bfg-Web-Application-Framework-Version/dp/0615345379
|
http://www.amazon.com/repoze-bfg-Web-Application-Framework-Version/dp/0615345379
|
||||||
* A Theoretical Physics Reference book: http://theoretical-physics.net/
|
* A Theoretical Physics Reference book: http://www.theoretical-physics.net/
|
||||||
* "Simple and Steady Way of Learning for Software Engineering" (in Japanese):
|
* "Simple and Steady Way of Learning for Software Engineering" (in Japanese):
|
||||||
http://www.amazon.co.jp/dp/477414259X/
|
http://www.amazon.co.jp/dp/477414259X/
|
||||||
* "Expert Python Programming":
|
* "Expert Python Programming":
|
||||||
http://www.packtpub.com/expert-python-programming/book
|
https://www.packtpub.com/application-development/expert-python-programming
|
||||||
* "Expert Python Programming" (Japanese translation):
|
* "Expert Python Programming" (Japanese translation):
|
||||||
http://www.amazon.co.jp/dp/4048686291/
|
http://www.amazon.co.jp/dp/4048686291/
|
||||||
* "Pomodoro Technique Illustrated" (Japanese translation):
|
* "Pomodoro Technique Illustrated" (Japanese translation):
|
||||||
@ -231,7 +225,7 @@ Books produced using Sphinx
|
|||||||
* "Die Wahrheit des Sehens. Der DEKALOG von Krzysztof Kieślowski":
|
* "Die Wahrheit des Sehens. Der DEKALOG von Krzysztof Kieślowski":
|
||||||
http://www.hasecke.eu/Dekalog/
|
http://www.hasecke.eu/Dekalog/
|
||||||
* The "Varnish Book":
|
* The "Varnish Book":
|
||||||
https://www.varnish-software.com/static/book/
|
http://book.varnish-software.com/4.0/
|
||||||
* "Learning Sphinx" (in Japanese):
|
* "Learning Sphinx" (in Japanese):
|
||||||
http://www.oreilly.co.jp/books/9784873116488/
|
http://www.oreilly.co.jp/books/9784873116488/
|
||||||
* "LassoGuide":
|
* "LassoGuide":
|
||||||
|
4
doc/_templates/index.html
vendored
4
doc/_templates/index.html
vendored
@ -39,10 +39,10 @@
|
|||||||
in a second repository; most of them installable from PyPI{%endtrans%}</li>
|
in a second repository; most of them installable from PyPI{%endtrans%}</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>{%trans%}
|
<p>{%trans%}
|
||||||
Sphinx uses <a href="http://docutils.sf.net/rst.html">reStructuredText</a>
|
Sphinx uses <a href="http://docutils.sourceforge.net/rst.html">reStructuredText</a>
|
||||||
as its markup language, and many of its strengths come from the power and
|
as its markup language, and many of its strengths come from the power and
|
||||||
straightforwardness of reStructuredText and its parsing and translating
|
straightforwardness of reStructuredText and its parsing and translating
|
||||||
suite, the <a href="http://docutils.sf.net/">Docutils</a>.{%endtrans%}
|
suite, the <a href="http://docutils.sourceforge.net/">Docutils</a>.{%endtrans%}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2 style="margin-bottom: 0">{%trans%}Documentation{%endtrans%}</h2>
|
<h2 style="margin-bottom: 0">{%trans%}Documentation{%endtrans%}</h2>
|
||||||
|
@ -84,7 +84,7 @@ The builder's "name" must be given to the **-b** command-line option of
|
|||||||
|
|
||||||
.. autoattribute:: supported_image_types
|
.. autoattribute:: supported_image_types
|
||||||
|
|
||||||
.. _Qt help: http://qt-project.org/doc/qt-4.8/qthelp-framework.html
|
.. _Qt help: http://doc.qt.io/qt-4.8/qthelp-framework.html
|
||||||
|
|
||||||
.. module:: sphinx.builders.applehelp
|
.. module:: sphinx.builders.applehelp
|
||||||
.. class:: AppleHelpBuilder
|
.. class:: AppleHelpBuilder
|
||||||
@ -131,7 +131,7 @@ The builder's "name" must be given to the **-b** command-line option of
|
|||||||
This builder produces the same output as the standalone HTML builder, but
|
This builder produces the same output as the standalone HTML builder, but
|
||||||
also generates an *epub* file for ebook readers. See :ref:`epub-faq` for
|
also generates an *epub* file for ebook readers. See :ref:`epub-faq` for
|
||||||
details about it. For definition of the epub format, have a look at
|
details about it. For definition of the epub format, have a look at
|
||||||
`<http://idpf.org/epub>`_ or `<http://en.wikipedia.org/wiki/EPUB>`_.
|
`<http://idpf.org/epub>`_ or `<https://en.wikipedia.org/wiki/EPUB>`_.
|
||||||
The builder creates *EPUB 2* files.
|
The builder creates *EPUB 2* files.
|
||||||
|
|
||||||
.. autoattribute:: name
|
.. autoattribute:: name
|
||||||
@ -146,7 +146,7 @@ The builder's "name" must be given to the **-b** command-line option of
|
|||||||
This builder produces the same output as the standalone HTML builder, but
|
This builder produces the same output as the standalone HTML builder, but
|
||||||
also generates an *epub* file for ebook readers. See :ref:`epub-faq` for
|
also generates an *epub* file for ebook readers. See :ref:`epub-faq` for
|
||||||
details about it. For definition of the epub format, have a look at
|
details about it. For definition of the epub format, have a look at
|
||||||
`<http://idpf.org/epub>`_ or `<http://en.wikipedia.org/wiki/EPUB>`_.
|
`<http://idpf.org/epub>`_ or `<https://en.wikipedia.org/wiki/EPUB>`_.
|
||||||
The builder creates *EPUB 3* files.
|
The builder creates *EPUB 3* files.
|
||||||
|
|
||||||
This builder is still *experimental* because it can't generate valid EPUB 3
|
This builder is still *experimental* because it can't generate valid EPUB 3
|
||||||
@ -186,7 +186,7 @@ The builder's "name" must be given to the **-b** command-line option of
|
|||||||
.. autoattribute:: supported_image_types
|
.. autoattribute:: supported_image_types
|
||||||
|
|
||||||
Note that a direct PDF builder using ReportLab is available in `rst2pdf
|
Note that a direct PDF builder using ReportLab is available in `rst2pdf
|
||||||
<http://rst2pdf.googlecode.com>`_ version 0.12 or greater. You need to add
|
<https://github.com/rst2pdf/rst2pdf>`_ version 0.12 or greater. You need to add
|
||||||
``'rst2pdf.pdfbuilder'`` to your :confval:`extensions` to enable it, its name is
|
``'rst2pdf.pdfbuilder'`` to your :confval:`extensions` to enable it, its name is
|
||||||
``pdf``. Refer to the `rst2pdf manual <http://ralsina.me/static/manual.pdf>`_
|
``pdf``. Refer to the `rst2pdf manual <http://ralsina.me/static/manual.pdf>`_
|
||||||
for details.
|
for details.
|
||||||
|
133
doc/config.rst
133
doc/config.rst
@ -310,21 +310,35 @@ Project information
|
|||||||
replacement for ``|today|``.
|
replacement for ``|today|``.
|
||||||
|
|
||||||
* If you set :confval:`today` to a non-empty value, it is used.
|
* If you set :confval:`today` to a non-empty value, it is used.
|
||||||
* Otherwise, the current time is formatted using :func:`time.strftime` and
|
* Otherwise, the current time is formatted using `Locale Data Markup Language
|
||||||
the format given in :confval:`today_fmt`.
|
<http://unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns>`_
|
||||||
|
and the format given in :confval:`today_fmt`.
|
||||||
|
|
||||||
The default is no :confval:`today` and a :confval:`today_fmt` of ``'%B %d,
|
The default is no :confval:`today` and a :confval:`today_fmt` of ``'MMMM dd,
|
||||||
%Y'`` (or, if translation is enabled with :confval:`language`, an equivalent
|
YYYY'`` (or, if translation is enabled with :confval:`language`, an
|
||||||
%format for the selected locale).
|
equivalent %format for the selected locale).
|
||||||
|
|
||||||
|
.. versionchanged:: 1.4
|
||||||
|
|
||||||
|
Format specification was changed from strftime to Locale Data Markup
|
||||||
|
Language. strftime format is also supported for backward compatibility
|
||||||
|
until Sphinx-1.5.
|
||||||
|
|
||||||
.. confval:: highlight_language
|
.. confval:: highlight_language
|
||||||
|
|
||||||
The default language to highlight source code in. The default is
|
The default language to highlight source code in. The default is
|
||||||
``'python'``. The value should be a valid Pygments lexer name, see
|
``'python3'``. The value should be a valid Pygments lexer name, see
|
||||||
:ref:`code-examples` for more details.
|
:ref:`code-examples` for more details.
|
||||||
|
|
||||||
.. versionadded:: 0.5
|
.. versionadded:: 0.5
|
||||||
|
|
||||||
|
.. versionchanged:: 1.4
|
||||||
|
The default is now ``'default'``. It is similar to ``'python3'``;
|
||||||
|
it is mostly a superset of ``'python'``. but it fallbacks to
|
||||||
|
``'none'`` without warning if failed. ``'python3'`` and other
|
||||||
|
languages will emit warning if failed. If you prefer Python 2
|
||||||
|
only highlighting, you can set it back to ``'python'``.
|
||||||
|
|
||||||
.. confval:: highlight_options
|
.. confval:: highlight_options
|
||||||
|
|
||||||
A dictionary of options that modify how the lexer specified by
|
A dictionary of options that modify how the lexer specified by
|
||||||
@ -403,12 +417,18 @@ documentation on :ref:`intl` for details.
|
|||||||
The code for the language the docs are written in. Any text automatically
|
The code for the language the docs are written in. Any text automatically
|
||||||
generated by Sphinx will be in that language. Also, Sphinx will try to
|
generated by Sphinx will be in that language. Also, Sphinx will try to
|
||||||
substitute individual paragraphs from your documents with the translation
|
substitute individual paragraphs from your documents with the translation
|
||||||
sets obtained from :confval:`locale_dirs`. In the LaTeX builder, a suitable
|
sets obtained from :confval:`locale_dirs`. Sphinx will search
|
||||||
language will be selected as an option for the *Babel* package. Default is
|
language-specific figures named by `figure_language_filename` and substitute
|
||||||
``None``, which means that no translation will be done.
|
them for original figures. In the LaTeX builder, a suitable language will
|
||||||
|
be selected as an option for the *Babel* package. Default is ``None``,
|
||||||
|
which means that no translation will be done.
|
||||||
|
|
||||||
.. versionadded:: 0.5
|
.. versionadded:: 0.5
|
||||||
|
|
||||||
|
.. versionchanged:: 1.4
|
||||||
|
|
||||||
|
Support figure substitution
|
||||||
|
|
||||||
Currently supported languages by Sphinx are:
|
Currently supported languages by Sphinx are:
|
||||||
|
|
||||||
* ``bn`` -- Bengali
|
* ``bn`` -- Bengali
|
||||||
@ -527,6 +547,14 @@ documentation on :ref:`intl` for details.
|
|||||||
|
|
||||||
.. versionadded:: 1.3
|
.. versionadded:: 1.3
|
||||||
|
|
||||||
|
.. confval:: figure_language_filename
|
||||||
|
|
||||||
|
The filename format for language-specific figures. The default value is
|
||||||
|
``{root}.{language}{ext}``. It will be expanded to
|
||||||
|
``dirname/filename.en.png`` from ``.. image:: dirname/filename.png``.
|
||||||
|
|
||||||
|
.. versionadded:: 1.4
|
||||||
|
|
||||||
.. _html-options:
|
.. _html-options:
|
||||||
|
|
||||||
Options for HTML output
|
Options for HTML output
|
||||||
@ -648,10 +676,17 @@ that use Sphinx's HTMLWriter class.
|
|||||||
.. confval:: html_last_updated_fmt
|
.. confval:: html_last_updated_fmt
|
||||||
|
|
||||||
If this is not None, a 'Last updated on:' timestamp is inserted
|
If this is not None, a 'Last updated on:' timestamp is inserted
|
||||||
at every page bottom, using the given :func:`strftime` format.
|
at every page bottom, using the given `Locale Data Markup Language
|
||||||
The empty string is equivalent to ``'%b %d, %Y'`` (or a
|
<http://unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns>`_
|
||||||
|
format. The empty string is equivalent to ``'MMM dd, YYYY'`` (or a
|
||||||
locale-dependent equivalent).
|
locale-dependent equivalent).
|
||||||
|
|
||||||
|
.. versionchanged:: 1.4
|
||||||
|
|
||||||
|
Format specification was changed from strftime to Locale Data Markup
|
||||||
|
Language. strftime format is also supported for backward compatibility
|
||||||
|
until Sphinx-1.5.
|
||||||
|
|
||||||
.. confval:: html_use_smartypants
|
.. confval:: html_use_smartypants
|
||||||
|
|
||||||
If true, `SmartyPants <http://daringfireball.net/projects/smartypants/>`_
|
If true, `SmartyPants <http://daringfireball.net/projects/smartypants/>`_
|
||||||
@ -791,7 +826,7 @@ that use Sphinx's HTMLWriter class.
|
|||||||
|
|
||||||
.. confval:: html_use_opensearch
|
.. confval:: html_use_opensearch
|
||||||
|
|
||||||
If nonempty, an `OpenSearch <http://opensearch.org>`_ description file will be
|
If nonempty, an `OpenSearch <http://www.opensearch.org/Home>`_ description file will be
|
||||||
output, and all pages will contain a ``<link>`` tag referring to it. Since
|
output, and all pages will contain a ``<link>`` tag referring to it. Since
|
||||||
OpenSearch doesn't support relative URLs for its search page location, the
|
OpenSearch doesn't support relative URLs for its search page location, the
|
||||||
value of this option must be the base URL from which these documents are
|
value of this option must be the base URL from which these documents are
|
||||||
@ -910,15 +945,59 @@ that use Sphinx's HTMLWriter class.
|
|||||||
|
|
||||||
The Japanese support has these options:
|
The Japanese support has these options:
|
||||||
|
|
||||||
* ``type`` -- ``'mecab'`` or ``'default'`` (selects either MeCab or
|
:type:
|
||||||
TinySegmenter word splitter algorithm)
|
_`type` is dotted module path string to specify Splitter implementation which
|
||||||
* ``dic_enc`` -- the encoding for the MeCab algorithm
|
should be derived from :class:`sphinx.search.ja.BaseSplitter`.
|
||||||
* ``dict`` -- the dictionary to use for the MeCab algorithm
|
If not specified or None is specified, ``'sphinx.search.ja.DefaultSplitter'`` will
|
||||||
* ``lib`` -- the library name for finding the MeCab library via ctypes if the
|
be used.
|
||||||
Python binding is not installed
|
|
||||||
|
You can choose from these modules:
|
||||||
|
|
||||||
|
:'sphinx.search.ja.DefaultSplitter':
|
||||||
|
TinySegmenter algorithm. This is default splitter.
|
||||||
|
:'sphinx.search.ja.MeCabSplitter':
|
||||||
|
MeCab binding. To use this splitter, 'mecab' python binding or dynamic link
|
||||||
|
library ('libmecab.so' for linux, 'libmecab.dll' for windows) is required.
|
||||||
|
:'sphinx.search.ja.JanomeSplitter':
|
||||||
|
Janome binding. To use this splitter,
|
||||||
|
`Janome <https://pypi.python.org/pypi/Janome>`_ is required.
|
||||||
|
|
||||||
|
To keep compatibility, ``'mecab'``, ``'janome'`` and ``'default'`` are also
|
||||||
|
acceptable. However it will be deprecated in Sphinx-1.6.
|
||||||
|
|
||||||
|
|
||||||
|
Other option values depend on splitter value which you choose.
|
||||||
|
|
||||||
|
Options for ``'mecab'``:
|
||||||
|
:dic_enc:
|
||||||
|
_`dic_enc option` is the encoding for the MeCab algorithm.
|
||||||
|
:dict:
|
||||||
|
_`dict option` is the dictionary to use for the MeCab algorithm.
|
||||||
|
:lib:
|
||||||
|
_`lib option` is the library name for finding the MeCab library via ctypes if
|
||||||
|
the Python binding is not installed.
|
||||||
|
|
||||||
|
For example::
|
||||||
|
|
||||||
|
html_search_options = {
|
||||||
|
'type': 'mecab',
|
||||||
|
'dic_enc': 'utf-8',
|
||||||
|
'dict': '/path/to/mecab.dic',
|
||||||
|
'lib': '/path/to/libmecab.so',
|
||||||
|
}
|
||||||
|
|
||||||
|
Options for ``'janome'``:
|
||||||
|
:user_dic: _`user_dic option` is the user dictionary file path for Janome.
|
||||||
|
:user_dic_enc:
|
||||||
|
_`user_dic_enc option` is the encoding for the user dictionary file specified by
|
||||||
|
``user_dic`` option. Default is 'utf8'.
|
||||||
|
|
||||||
.. versionadded:: 1.1
|
.. versionadded:: 1.1
|
||||||
|
|
||||||
|
.. versionchanged:: 1.4
|
||||||
|
html_search_options for Japanese is re-organized and any custom splitter can be
|
||||||
|
used by `type`_ settings.
|
||||||
|
|
||||||
|
|
||||||
The Chinese support has these options:
|
The Chinese support has these options:
|
||||||
|
|
||||||
@ -1322,8 +1401,11 @@ the `Dublin Core metadata <http://dublincore.org/>`_.
|
|||||||
.. confval:: epub3_page_progression_direction
|
.. confval:: epub3_page_progression_direction
|
||||||
|
|
||||||
The global direction in which the content flows.
|
The global direction in which the content flows.
|
||||||
Allowed values are ltr (left-to-right), rtl (right-to-left) and default.
|
Allowed values are ``'ltr'`` (left-to-right), ``'rtl'`` (right-to-left) and
|
||||||
The default value is ``'ltr'``.
|
``'default'``. The default value is ``'ltr'``.
|
||||||
|
|
||||||
|
When the ``'default'`` value is specified, the Author is expressing no
|
||||||
|
preference and the Reading System may chose the rendering direction.
|
||||||
|
|
||||||
.. versionadded:: 1.4
|
.. versionadded:: 1.4
|
||||||
|
|
||||||
@ -1463,6 +1545,10 @@ These options influence LaTeX output.
|
|||||||
the "Bjarne" style uses numbers spelled out in English). Other
|
the "Bjarne" style uses numbers spelled out in English). Other
|
||||||
"fncychap" styles you can try include "Lenny", "Glenn", "Conny" and
|
"fncychap" styles you can try include "Lenny", "Glenn", "Conny" and
|
||||||
"Rejne". You can also set this to ``''`` to disable fncychap.
|
"Rejne". You can also set this to ``''`` to disable fncychap.
|
||||||
|
``'passoptionstopackages'``
|
||||||
|
"PassOptionsToPackage" call, default empty.
|
||||||
|
|
||||||
|
.. versionadded:: 1.4
|
||||||
``'preamble'``
|
``'preamble'``
|
||||||
Additional preamble content, default empty.
|
Additional preamble content, default empty.
|
||||||
``'figure_align'``
|
``'figure_align'``
|
||||||
@ -1757,6 +1843,13 @@ Options for the linkcheck builder
|
|||||||
|
|
||||||
.. versionadded:: 1.1
|
.. versionadded:: 1.1
|
||||||
|
|
||||||
|
.. confval:: linkcheck_retries
|
||||||
|
|
||||||
|
The number of times the linkcheck builder will attempt to check a URL before
|
||||||
|
declaring it broken. Defaults to 1 attempt.
|
||||||
|
|
||||||
|
.. versionadded:: 1.4
|
||||||
|
|
||||||
.. confval:: linkcheck_timeout
|
.. confval:: linkcheck_timeout
|
||||||
|
|
||||||
A timeout value, in seconds, for the linkcheck builder. **Only works in
|
A timeout value, in seconds, for the linkcheck builder. **Only works in
|
||||||
|
@ -10,7 +10,7 @@ Sphinx is a maintained by a group of volunteers. We value every contribution!
|
|||||||
* Issues and feature requests should be raised in the `tracker
|
* Issues and feature requests should be raised in the `tracker
|
||||||
<https://github.com/sphinx-doc/sphinx/issues>`_.
|
<https://github.com/sphinx-doc/sphinx/issues>`_.
|
||||||
* The mailing list for development is at `Google Groups
|
* The mailing list for development is at `Google Groups
|
||||||
<https://groups.google.com/group/sphinx-dev/>`_.
|
<https://groups.google.com/forum/#!forum/sphinx-dev>`_.
|
||||||
* There is also the #sphinx-doc IRC channel on `freenode
|
* There is also the #sphinx-doc IRC channel on `freenode
|
||||||
<http://freenode.net/>`_.
|
<http://freenode.net/>`_.
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ Extensions
|
|||||||
|
|
||||||
To learn how to write your own extension, see :ref:`dev-extensions`.
|
To learn how to write your own extension, see :ref:`dev-extensions`.
|
||||||
|
|
||||||
The `sphinx-contrib <http://bitbucket.org/birkenfeld/sphinx-contrib/>`_
|
The `sphinx-contrib <https://bitbucket.org/birkenfeld/sphinx-contrib/>`_
|
||||||
repository contains many contributed extensions. Some of them have their own
|
repository contains many contributed extensions. Some of them have their own
|
||||||
releases on PyPI, others you can install from a checkout.
|
releases on PyPI, others you can install from a checkout.
|
||||||
|
|
||||||
@ -96,14 +96,14 @@ own extensions.
|
|||||||
|
|
||||||
.. _aafigure: https://launchpad.net/aafigure
|
.. _aafigure: https://launchpad.net/aafigure
|
||||||
.. _gnuplot: http://www.gnuplot.info/
|
.. _gnuplot: http://www.gnuplot.info/
|
||||||
.. _paver: http://www.blueskyonmars.com/projects/paver/
|
.. _paver: http://paver.github.io/paver/
|
||||||
.. _Sword: http://www.crosswire.org/sword/
|
.. _Sword: http://www.crosswire.org/sword/
|
||||||
.. _Lilypond: http://lilypond.org/
|
.. _Lilypond: http://lilypond.org/
|
||||||
.. _sdedit: http://sdedit.sourceforge.net/
|
.. _sdedit: http://sdedit.sourceforge.net/
|
||||||
.. _Trac: http://trac.edgewall.org
|
.. _Trac: http://trac.edgewall.org
|
||||||
.. _TracLinks: http://trac.edgewall.org/wiki/TracLinks
|
.. _TracLinks: http://trac.edgewall.org/wiki/TracLinks
|
||||||
.. _OmegaT: http://www.omegat.org/
|
.. _OmegaT: http://www.omegat.org/
|
||||||
.. _PlantUML: http://plantuml.sourceforge.net/
|
.. _PlantUML: http://plantuml.com/
|
||||||
.. _PyEnchant: http://www.rfk.id.au/software/pyenchant/
|
.. _PyEnchant: http://www.rfk.id.au/software/pyenchant/
|
||||||
.. _sadisplay: https://bitbucket.org/estin/sadisplay/wiki/Home
|
.. _sadisplay: https://bitbucket.org/estin/sadisplay/wiki/Home
|
||||||
.. _blockdiag: http://blockdiag.com/en/
|
.. _blockdiag: http://blockdiag.com/en/
|
||||||
@ -112,24 +112,24 @@ own extensions.
|
|||||||
.. _nwdiag: http://blockdiag.com/en/
|
.. _nwdiag: http://blockdiag.com/en/
|
||||||
.. _Google Analytics: http://www.google.com/analytics/
|
.. _Google Analytics: http://www.google.com/analytics/
|
||||||
.. _Google Chart: https://developers.google.com/chart/
|
.. _Google Chart: https://developers.google.com/chart/
|
||||||
.. _Google Maps: https://maps.google.com/
|
.. _Google Maps: https://www.google.com/maps
|
||||||
.. _Google style: http://google-styleguide.googlecode.com/svn/trunk/pyguide.html
|
.. _Google style: http://google-styleguide.googlecode.com/svn/trunk/pyguide.html
|
||||||
.. _NumPy style: https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
|
.. _NumPy style: https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
|
||||||
.. _hyphenator: http://code.google.com/p/hyphenator/
|
.. _hyphenator: https://github.com/mnater/hyphenator
|
||||||
.. _exceltable: http://pythonhosted.org/sphinxcontrib-exceltable/
|
.. _exceltable: http://pythonhosted.org/sphinxcontrib-exceltable/
|
||||||
.. _YouTube: http://www.youtube.com/
|
.. _YouTube: http://www.youtube.com/
|
||||||
.. _ClearQuest: http://www-03.ibm.com/software/products/en/clearquest
|
.. _ClearQuest: http://www-03.ibm.com/software/products/en/clearquest
|
||||||
.. _Zope interfaces: http://docs.zope.org/zope.interface/README.html
|
.. _Zope interfaces: http://docs.zope.org/zope.interface/README.html
|
||||||
.. _slideshare: http://www.slideshare.net/
|
.. _slideshare: http://www.slideshare.net/
|
||||||
.. _TikZ/PGF LaTeX package: http://sourceforge.net/projects/pgf/
|
.. _TikZ/PGF LaTeX package: https://sourceforge.net/projects/pgf/
|
||||||
.. _MATLAB: http://www.mathworks.com/products/matlab/
|
.. _MATLAB: http://www.mathworks.com/products/matlab/
|
||||||
.. _swf: http://bitbucket.org/klorenz/sphinxcontrib-swf
|
.. _swf: https://bitbucket.org/klorenz/sphinxcontrib-swf
|
||||||
.. _findanything: http://bitbucket.org/klorenz/sphinxcontrib-findanything
|
.. _findanything: https://bitbucket.org/klorenz/sphinxcontrib-findanything
|
||||||
.. _cmakedomain: http://bitbucket.org/klorenz/sphinxcontrib-cmakedomain
|
.. _cmakedomain: https://bitbucket.org/klorenz/sphinxcontrib-cmakedomain
|
||||||
.. _GNU Make: http://www.gnu.org/software/make/
|
.. _GNU Make: http://www.gnu.org/software/make/
|
||||||
.. _makedomain: http://bitbucket.org/klorenz/sphinxcontrib-makedomain
|
.. _makedomain: https://bitbucket.org/klorenz/sphinxcontrib-makedomain
|
||||||
.. _inlinesyntaxhighlight: http://sphinxcontrib-inlinesyntaxhighlight.readthedocs.org
|
.. _inlinesyntaxhighlight: http://sphinxcontrib-inlinesyntaxhighlight.readthedocs.org
|
||||||
.. _CMake: http://cmake.org
|
.. _CMake: https://cmake.org
|
||||||
.. _domaintools: http://bitbucket.org/klorenz/sphinxcontrib-domaintools
|
.. _domaintools: https://bitbucket.org/klorenz/sphinxcontrib-domaintools
|
||||||
.. _restbuilder: https://pypi.python.org/pypi/sphinxcontrib-restbuilder
|
.. _restbuilder: https://pypi.python.org/pypi/sphinxcontrib-restbuilder
|
||||||
.. _Lasso: http://www.lassosoft.com/
|
.. _Lasso: http://www.lassosoft.com/
|
||||||
|
@ -41,7 +41,7 @@ you can also enable the :mod:`napoleon <sphinx.ext.napoleon>` extension.
|
|||||||
docstrings to correct reStructuredText before :mod:`autodoc` processes them.
|
docstrings to correct reStructuredText before :mod:`autodoc` processes them.
|
||||||
|
|
||||||
.. _Google:
|
.. _Google:
|
||||||
http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Comments
|
https://google.github.io/styleguide/pyguide.html#Comments
|
||||||
.. _NumPy:
|
.. _NumPy:
|
||||||
https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
|
https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
|
||||||
|
|
||||||
@ -314,6 +314,12 @@ There are also new config values that you can set:
|
|||||||
|
|
||||||
.. versionadded:: 0.3
|
.. versionadded:: 0.3
|
||||||
|
|
||||||
|
If the class has no ``__init__`` method or if the ``__init__`` method's
|
||||||
|
docstring is empty, but the class has a ``__new__`` method's docstring,
|
||||||
|
it is used instead.
|
||||||
|
|
||||||
|
.. versionadded:: 1.4
|
||||||
|
|
||||||
.. confval:: autodoc_member_order
|
.. confval:: autodoc_member_order
|
||||||
|
|
||||||
This value selects if automatically documented members are sorted
|
This value selects if automatically documented members are sorted
|
||||||
|
25
doc/ext/autosectionlabel.rst
Normal file
25
doc/ext/autosectionlabel.rst
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
.. highlight:: rest
|
||||||
|
|
||||||
|
:mod:`sphinx.ext.autosectionlabel` -- Allow reference sections using its title
|
||||||
|
==============================================================================
|
||||||
|
|
||||||
|
.. module:: sphinx.ext.autosectionlabel
|
||||||
|
:synopsis: Allow reference section its title.
|
||||||
|
|
||||||
|
.. versionadded:: 1.4
|
||||||
|
|
||||||
|
This extension allows you to refer sections its title. This affects to the
|
||||||
|
reference role (:rst:role:`ref`).
|
||||||
|
|
||||||
|
For example::
|
||||||
|
|
||||||
|
A Plain Title
|
||||||
|
-------------
|
||||||
|
|
||||||
|
This is the text of the section.
|
||||||
|
|
||||||
|
It refers to the section title, see :ref:`A Plain Title`.
|
||||||
|
|
||||||
|
|
||||||
|
Internally, this extension generates the labels for each section. If same
|
||||||
|
section names are used in whole of document, any one is used for a target.
|
@ -265,7 +265,7 @@ package jsMath_. It provides this config value:
|
|||||||
|
|
||||||
.. _dvipng: http://savannah.nongnu.org/projects/dvipng/
|
.. _dvipng: http://savannah.nongnu.org/projects/dvipng/
|
||||||
.. _dvisvgm: http://dvisvgm.bplaced.net/
|
.. _dvisvgm: http://dvisvgm.bplaced.net/
|
||||||
.. _MathJax: http://www.mathjax.org/
|
.. _MathJax: https://www.mathjax.org/
|
||||||
.. _jsMath: http://www.math.union.edu/~dpvc/jsmath/
|
.. _jsMath: http://www.math.union.edu/~dpvc/jsmath/
|
||||||
.. _preview-latex package: http://www.gnu.org/software/auctex/preview-latex.html
|
.. _preview-latex package: http://www.gnu.org/software/auctex/preview-latex.html
|
||||||
.. _AmSMath LaTeX package: http://www.ams.org/publications/authors/tex/amslatex
|
.. _AmSMath LaTeX package: http://www.ams.org/publications/authors/tex/amslatex
|
||||||
|
@ -11,6 +11,8 @@
|
|||||||
Napoleon - *Marching toward legible docstrings*
|
Napoleon - *Marching toward legible docstrings*
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
|
.. highlight:: text
|
||||||
|
|
||||||
Are you tired of writing docstrings that look like this::
|
Are you tired of writing docstrings that look like this::
|
||||||
|
|
||||||
:param path: The path of the file to wrap
|
:param path: The path of the file to wrap
|
||||||
@ -48,7 +50,7 @@ the documentation, so it doesn't modify any of the docstrings in your actual
|
|||||||
source code files.
|
source code files.
|
||||||
|
|
||||||
.. _ReStructuredText: http://docutils.sourceforge.net/rst.html
|
.. _ReStructuredText: http://docutils.sourceforge.net/rst.html
|
||||||
.. _docstrings: http://www.python.org/dev/peps/pep-0287/
|
.. _docstrings: https://www.python.org/dev/peps/pep-0287/
|
||||||
.. _Google Python Style Guide:
|
.. _Google Python Style Guide:
|
||||||
http://google.github.io/styleguide/pyguide.html
|
http://google.github.io/styleguide/pyguide.html
|
||||||
.. _Google:
|
.. _Google:
|
||||||
@ -124,7 +126,9 @@ Napoleon supports two styles of docstrings: `Google`_ and `NumPy`_. The
|
|||||||
main difference between the two styles is that Google uses indention to
|
main difference between the two styles is that Google uses indention to
|
||||||
separate sections, whereas NumPy uses underlines.
|
separate sections, whereas NumPy uses underlines.
|
||||||
|
|
||||||
Google style::
|
Google style:
|
||||||
|
|
||||||
|
.. code-block:: python3
|
||||||
|
|
||||||
def func(arg1, arg2):
|
def func(arg1, arg2):
|
||||||
"""Summary line.
|
"""Summary line.
|
||||||
@ -141,7 +145,9 @@ Google style::
|
|||||||
"""
|
"""
|
||||||
return True
|
return True
|
||||||
|
|
||||||
NumPy style::
|
NumPy style:
|
||||||
|
|
||||||
|
.. code-block:: python3
|
||||||
|
|
||||||
def func(arg1, arg2):
|
def func(arg1, arg2):
|
||||||
"""Summary line.
|
"""Summary line.
|
||||||
|
@ -125,6 +125,28 @@ package.
|
|||||||
.. versionchanged:: 0.5
|
.. versionchanged:: 0.5
|
||||||
Added the support for keyword arguments giving visit functions.
|
Added the support for keyword arguments giving visit functions.
|
||||||
|
|
||||||
|
.. method:: Sphinx.add_enumerable_node(node, figtype, title_getter=None, **kwds)
|
||||||
|
|
||||||
|
Register a Docutils node class as a numfig target. Sphinx numbers the node
|
||||||
|
automatically. And then the users can refer it using :rst:role:`numref`.
|
||||||
|
|
||||||
|
*figtype* is a type of enumerable nodes. Each figtypes have individual
|
||||||
|
numbering sequences. As a system figtypes, ``figure``, ``table`` and
|
||||||
|
``code-block`` are defined. It is able to add custom nodes to these
|
||||||
|
default figtypes. It is also able to define new custom figtype if new
|
||||||
|
figtype is given.
|
||||||
|
|
||||||
|
*title_getter* is a getter function to obtain the title of node. It takes
|
||||||
|
an instance of the enumerable node, and it must return its title as string.
|
||||||
|
The title is used to the default title of references for :rst:role:`ref`.
|
||||||
|
By default, Sphinx searches ``docutils.nodes.caption`` or
|
||||||
|
``docutils.nodes.title`` from the node as a title.
|
||||||
|
|
||||||
|
Other keyword arguments are used for node visitor functions. See the
|
||||||
|
:meth:`Sphinx.add_node` for details.
|
||||||
|
|
||||||
|
.. versionadded:: 1.4
|
||||||
|
|
||||||
.. method:: Sphinx.add_directive(name, func, content, arguments, **options)
|
.. method:: Sphinx.add_directive(name, func, content, arguments, **options)
|
||||||
Sphinx.add_directive(name, directiveclass)
|
Sphinx.add_directive(name, directiveclass)
|
||||||
|
|
||||||
|
@ -135,5 +135,5 @@ return ``node.children`` from the Directive.
|
|||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
`Creating directives <http://docutils.sf.net/docs/howto/rst-directives.html>`_
|
`Creating directives <http://docutils.sourceforge.net/docs/howto/rst-directives.html>`_
|
||||||
HOWTO of the Docutils documentation
|
HOWTO of the Docutils documentation
|
||||||
|
@ -19,20 +19,21 @@ These extensions are built in and can be activated by respective entries in the
|
|||||||
.. toctree::
|
.. toctree::
|
||||||
|
|
||||||
ext/autodoc
|
ext/autodoc
|
||||||
|
ext/autosectionlabel
|
||||||
ext/autosummary
|
ext/autosummary
|
||||||
ext/doctest
|
|
||||||
ext/intersphinx
|
|
||||||
ext/math
|
|
||||||
ext/graphviz
|
|
||||||
ext/inheritance
|
|
||||||
ext/ifconfig
|
|
||||||
ext/coverage
|
ext/coverage
|
||||||
ext/todo
|
ext/doctest
|
||||||
ext/extlinks
|
ext/extlinks
|
||||||
ext/viewcode
|
|
||||||
ext/linkcode
|
|
||||||
ext/napoleon
|
|
||||||
ext/githubpages
|
ext/githubpages
|
||||||
|
ext/graphviz
|
||||||
|
ext/ifconfig
|
||||||
|
ext/inheritance
|
||||||
|
ext/intersphinx
|
||||||
|
ext/linkcode
|
||||||
|
ext/math
|
||||||
|
ext/napoleon
|
||||||
|
ext/todo
|
||||||
|
ext/viewcode
|
||||||
|
|
||||||
|
|
||||||
Third-party extensions
|
Third-party extensions
|
||||||
@ -48,7 +49,7 @@ comprehensive list.
|
|||||||
|
|
||||||
If you write an extension that you think others will find useful or you think
|
If you write an extension that you think others will find useful or you think
|
||||||
should be included as a part of Sphinx, please write to the project mailing
|
should be included as a part of Sphinx, please write to the project mailing
|
||||||
list (`join here <https://groups.google.com/group/sphinx-dev>`_).
|
list (`join here <https://groups.google.com/forum/#!forum/sphinx-dev>`_).
|
||||||
|
|
||||||
.. _Sphinx Contrib: https://bitbucket.org/birkenfeld/sphinx-contrib
|
.. _Sphinx Contrib: https://bitbucket.org/birkenfeld/sphinx-contrib
|
||||||
|
|
||||||
|
16
doc/faq.rst
16
doc/faq.rst
@ -10,7 +10,7 @@ How do I...
|
|||||||
-----------
|
-----------
|
||||||
|
|
||||||
... create PDF files without LaTeX?
|
... create PDF files without LaTeX?
|
||||||
You can use `rst2pdf <http://rst2pdf.googlecode.com>`_ version 0.12 or
|
You can use `rst2pdf <https://github.com/rst2pdf/rst2pdf>`_ version 0.12 or
|
||||||
greater which comes with built-in Sphinx integration. See the
|
greater which comes with built-in Sphinx integration. See the
|
||||||
:ref:`builders` section for details.
|
:ref:`builders` section for details.
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ GitHub Pages
|
|||||||
Sphinx HTML output properly.
|
Sphinx HTML output properly.
|
||||||
|
|
||||||
MediaWiki
|
MediaWiki
|
||||||
See https://bitbucket.org/kevindunn/sphinx-wiki, a project by Kevin Dunn.
|
See https://bitbucket.org/kevindunn/sphinx-wiki/wiki/Home, a project by Kevin Dunn.
|
||||||
|
|
||||||
Google Analytics
|
Google Analytics
|
||||||
You can use a custom ``layout.html`` template, like this:
|
You can use a custom ``layout.html`` template, like this:
|
||||||
@ -140,7 +140,7 @@ The following list gives some hints for the creation of epub files:
|
|||||||
are often cut at the right margin. The default Courier font (or variant) is
|
are often cut at the right margin. The default Courier font (or variant) is
|
||||||
quite wide and you can only display up to 60 characters on a line. If you
|
quite wide and you can only display up to 60 characters on a line. If you
|
||||||
replace it with a narrower font, you can get more characters on a line. You
|
replace it with a narrower font, you can get more characters on a line. You
|
||||||
may even use `FontForge <http://fontforge.org/>`_ and create
|
may even use `FontForge <http://fontforge.github.io/>`_ and create
|
||||||
narrow variants of some free font. In my case I get up to 70 characters on a
|
narrow variants of some free font. In my case I get up to 70 characters on a
|
||||||
line.
|
line.
|
||||||
|
|
||||||
@ -149,7 +149,7 @@ The following list gives some hints for the creation of epub files:
|
|||||||
* Test the created epubs. You can use several alternatives. The ones I am aware
|
* Test the created epubs. You can use several alternatives. The ones I am aware
|
||||||
of are Epubcheck_, Calibre_, FBreader_ (although it does not render the CSS),
|
of are Epubcheck_, Calibre_, FBreader_ (although it does not render the CSS),
|
||||||
and Bookworm_. For bookworm you can download the source from
|
and Bookworm_. For bookworm you can download the source from
|
||||||
http://code.google.com/p/threepress/ and run your own local server.
|
https://code.google.com/archive/p/threepress and run your own local server.
|
||||||
|
|
||||||
* Large floating divs are not displayed properly.
|
* Large floating divs are not displayed properly.
|
||||||
If they cover more than one page, the div is only shown on the first page.
|
If they cover more than one page, the div is only shown on the first page.
|
||||||
@ -167,10 +167,10 @@ The following list gives some hints for the creation of epub files:
|
|||||||
:confval:`html_static_path` directory and reference it with its full path in
|
:confval:`html_static_path` directory and reference it with its full path in
|
||||||
the :confval:`epub_cover` config option.
|
the :confval:`epub_cover` config option.
|
||||||
|
|
||||||
.. _Epubcheck: http://code.google.com/p/epubcheck/
|
.. _Epubcheck: https://code.google.com/archive/p/epubcheck
|
||||||
.. _Calibre: http://calibre-ebook.com/
|
.. _Calibre: http://calibre-ebook.com/
|
||||||
.. _FBreader: http://fbreader.org/
|
.. _FBreader: https://fbreader.org/
|
||||||
.. _Bookworm: http://oreilly.com/bookworm/index.html
|
.. _Bookworm: http://www.oreilly.com/bookworm/index.html
|
||||||
|
|
||||||
|
|
||||||
.. _texinfo-faq:
|
.. _texinfo-faq:
|
||||||
@ -213,7 +213,7 @@ If you want Emacs to display Info files produced by Sphinx using the value
|
|||||||
Info files, try adding the following Emacs Lisp code to your start-up file,
|
Info files, try adding the following Emacs Lisp code to your start-up file,
|
||||||
``~/.emacs.d/init.el``.
|
``~/.emacs.d/init.el``.
|
||||||
|
|
||||||
::
|
.. code-block:: elisp
|
||||||
|
|
||||||
(defadvice info-insert-file-contents (after
|
(defadvice info-insert-file-contents (after
|
||||||
sphinx-info-insert-file-contents
|
sphinx-info-insert-file-contents
|
||||||
|
@ -72,7 +72,7 @@ Install Python
|
|||||||
Most Windows users do not have Python, so we begin with the installation of
|
Most Windows users do not have Python, so we begin with the installation of
|
||||||
Python itself. If you have already installed Python, please skip this section.
|
Python itself. If you have already installed Python, please skip this section.
|
||||||
|
|
||||||
Go to http://python.org, the main download site for Python. Look at the left
|
Go to https://www.python.org/, the main download site for Python. Look at the left
|
||||||
sidebar and under "Quick Links", click "Windows Installer" to download.
|
sidebar and under "Quick Links", click "Windows Installer" to download.
|
||||||
|
|
||||||
.. image:: pythonorg.png
|
.. image:: pythonorg.png
|
||||||
|
43
doc/intl.rst
43
doc/intl.rst
@ -88,14 +88,18 @@ This section describe a easy way to translate with sphinx-intl.
|
|||||||
:confval:`gettext_compact` is set to `False` (the Sphinx document is
|
:confval:`gettext_compact` is set to `False` (the Sphinx document is
|
||||||
already configured as such).
|
already configured as such).
|
||||||
|
|
||||||
#. Extract document's translatable messages into pot files::
|
#. Extract document's translatable messages into pot files:
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
$ make gettext
|
$ make gettext
|
||||||
|
|
||||||
As a result, many pot files are generated under ``_build/locale``
|
As a result, many pot files are generated under ``_build/locale``
|
||||||
directory.
|
directory.
|
||||||
|
|
||||||
#. Setup/Update your `locale_dir`::
|
#. Setup/Update your `locale_dir`:
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
$ sphinx-intl update -p _build/locale -l de -l ja
|
$ sphinx-intl update -p _build/locale -l de -l ja
|
||||||
|
|
||||||
@ -106,17 +110,25 @@ This section describe a easy way to translate with sphinx-intl.
|
|||||||
|
|
||||||
#. Translate your po files under `./locale/<lang>/LC_MESSAGES/`.
|
#. Translate your po files under `./locale/<lang>/LC_MESSAGES/`.
|
||||||
|
|
||||||
#. Build mo files and make translated document.
|
#. make translated document.
|
||||||
|
|
||||||
You need a :confval:`language` parameter in ``conf.py`` or you may also
|
You need a :confval:`language` parameter in ``conf.py`` or you may also
|
||||||
specify the parameter on the command line::
|
specify the parameter on the command line:
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
$ sphinx-intl build
|
|
||||||
$ make -e SPHINXOPTS="-D language='de'" html
|
$ make -e SPHINXOPTS="-D language='de'" html
|
||||||
|
|
||||||
Congratulations! You got the translated documentation in the ``_build/html``
|
Congratulations! You got the translated documentation in the ``_build/html``
|
||||||
directory.
|
directory.
|
||||||
|
|
||||||
|
.. versionadded:: 1.3
|
||||||
|
|
||||||
|
sphinx-build that is invoked by make command will build po files into mo files.
|
||||||
|
|
||||||
|
If you are using 1.2.x or earlier, please invoke ``sphinx-intl build`` command
|
||||||
|
before make command.
|
||||||
|
|
||||||
|
|
||||||
Translating
|
Translating
|
||||||
^^^^^^^^^^^
|
^^^^^^^^^^^
|
||||||
@ -157,7 +169,7 @@ and to apply differences to translated po files.
|
|||||||
In order to apply the updating difference of a pot file to po file,
|
In order to apply the updating difference of a pot file to po file,
|
||||||
use the :command:`sphinx-intl update` command.
|
use the :command:`sphinx-intl update` command.
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: console
|
||||||
|
|
||||||
$ sphinx-intl update -p _build/locale
|
$ sphinx-intl update -p _build/locale
|
||||||
|
|
||||||
@ -176,7 +188,7 @@ easy to fetch and push translations.
|
|||||||
|
|
||||||
You need :command:`tx` command to upload resources (pot files).
|
You need :command:`tx` command to upload resources (pot files).
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: console
|
||||||
|
|
||||||
$ pip install transifex-client
|
$ pip install transifex-client
|
||||||
|
|
||||||
@ -200,7 +212,7 @@ easy to fetch and push translations.
|
|||||||
This process will create ``.tx/config`` in the current directory, as well as
|
This process will create ``.tx/config`` in the current directory, as well as
|
||||||
a ``~/.transifexrc`` file that includes auth information.
|
a ``~/.transifexrc`` file that includes auth information.
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: console
|
||||||
|
|
||||||
$ tx init
|
$ tx init
|
||||||
Creating .tx folder...
|
Creating .tx folder...
|
||||||
@ -215,7 +227,7 @@ easy to fetch and push translations.
|
|||||||
|
|
||||||
Register pot files to ``.tx/config`` file:
|
Register pot files to ``.tx/config`` file:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: console
|
||||||
|
|
||||||
$ cd /your/document/root
|
$ cd /your/document/root
|
||||||
$ sphinx-intl update-txconfig-resources --pot-dir _build/locale \
|
$ sphinx-intl update-txconfig-resources --pot-dir _build/locale \
|
||||||
@ -223,7 +235,7 @@ easy to fetch and push translations.
|
|||||||
|
|
||||||
and upload pot files:
|
and upload pot files:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: console
|
||||||
|
|
||||||
$ tx push -s
|
$ tx push -s
|
||||||
Pushing translations for resource sphinx-document-test_1_0.builders:
|
Pushing translations for resource sphinx-document-test_1_0.builders:
|
||||||
@ -242,7 +254,7 @@ easy to fetch and push translations.
|
|||||||
|
|
||||||
Get translated catalogs and build mo files (ex. for 'de'):
|
Get translated catalogs and build mo files (ex. for 'de'):
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: console
|
||||||
|
|
||||||
$ cd /your/document/root
|
$ cd /your/document/root
|
||||||
$ tx pull -l de
|
$ tx pull -l de
|
||||||
@ -251,9 +263,10 @@ easy to fetch and push translations.
|
|||||||
...
|
...
|
||||||
Done.
|
Done.
|
||||||
|
|
||||||
Build po files into mo and make html::
|
Invoke make html:
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
$ sphinx-intl build
|
|
||||||
$ make -e SPHINXOPTS="-D language='de'" html
|
$ make -e SPHINXOPTS="-D language='de'" html
|
||||||
|
|
||||||
|
|
||||||
@ -297,5 +310,5 @@ There is `sphinx translation page`_ for Sphinx-1.3 documentation.
|
|||||||
.. _`transifex-client`: https://pypi.python.org/pypi/transifex-client
|
.. _`transifex-client`: https://pypi.python.org/pypi/transifex-client
|
||||||
.. _`sphinx-intl`: https://pypi.python.org/pypi/sphinx-intl
|
.. _`sphinx-intl`: https://pypi.python.org/pypi/sphinx-intl
|
||||||
.. _Transifex: https://www.transifex.com/
|
.. _Transifex: https://www.transifex.com/
|
||||||
.. _`sphinx translation page`: https://www.transifex.com/projects/p/sphinx-doc-1_3/
|
.. _`sphinx translation page`: https://www.transifex.com/sphinx-doc/sphinx-doc-1_3/
|
||||||
.. _`Transifex Client v0.8 — Transifex documentation`: http://help.transifex.com/features/client/index.html
|
.. _`Transifex Client v0.8 — Transifex documentation`: http://docs.transifex.com/developer/client/
|
||||||
|
@ -9,12 +9,12 @@ possibly subdirectories of docs in there as well), Sphinx can generate a
|
|||||||
nicely-organized arrangement of HTML files (in some other directory) for easy
|
nicely-organized arrangement of HTML files (in some other directory) for easy
|
||||||
browsing and navigation. But from the same source, it can also generate a
|
browsing and navigation. But from the same source, it can also generate a
|
||||||
LaTeX file that you can compile into a PDF version of the documents, or a
|
LaTeX file that you can compile into a PDF version of the documents, or a
|
||||||
PDF file directly using `rst2pdf <http://rst2pdf.googlecode.com>`_.
|
PDF file directly using `rst2pdf <https://github.com/rst2pdf/rst2pdf>`_.
|
||||||
|
|
||||||
The focus is on hand-written documentation, rather than auto-generated API docs.
|
The focus is on hand-written documentation, rather than auto-generated API docs.
|
||||||
Though there is support for that kind of docs as well (which is intended to be
|
Though there is support for that kind of docs as well (which is intended to be
|
||||||
freely mixed with hand-written content), if you need pure API docs have a look
|
freely mixed with hand-written content), if you need pure API docs have a look
|
||||||
at `Epydoc <http://epydoc.sf.net/>`_, which also understands reST.
|
at `Epydoc <http://epydoc.sourceforge.net/>`_, which also understands reST.
|
||||||
|
|
||||||
For a great "introduction" to writing docs in general -- the whys and hows, see
|
For a great "introduction" to writing docs in general -- the whys and hows, see
|
||||||
also `Write the docs <http://write-the-docs.readthedocs.org/>`_, written by Eric
|
also `Write the docs <http://write-the-docs.readthedocs.org/>`_, written by Eric
|
||||||
@ -36,12 +36,12 @@ to reStructuredText/Sphinx from other documentation systems.
|
|||||||
code to convert Python-doc-style LaTeX markup to Sphinx reST.
|
code to convert Python-doc-style LaTeX markup to Sphinx reST.
|
||||||
|
|
||||||
* Marcin Wojdyr has written a script to convert Docbook to reST with Sphinx
|
* Marcin Wojdyr has written a script to convert Docbook to reST with Sphinx
|
||||||
markup; it is at `Google Code <http://code.google.com/p/db2rst/>`_.
|
markup; it is at `Google Code <https://github.com/wojdyr/db2rst>`_.
|
||||||
|
|
||||||
* Christophe de Vienne wrote a tool to convert from Open/LibreOffice documents
|
* Christophe de Vienne wrote a tool to convert from Open/LibreOffice documents
|
||||||
to Sphinx: `odt2sphinx <https://pypi.python.org/pypi/odt2sphinx/>`_.
|
to Sphinx: `odt2sphinx <https://pypi.python.org/pypi/odt2sphinx/>`_.
|
||||||
|
|
||||||
* To convert different markups, `Pandoc <http://johnmacfarlane.net/pandoc/>`_ is
|
* To convert different markups, `Pandoc <http://pandoc.org/>`_ is
|
||||||
a very helpful tool.
|
a very helpful tool.
|
||||||
|
|
||||||
|
|
||||||
@ -59,8 +59,8 @@ docutils_ and Jinja2_ libraries. Sphinx should work with docutils version 0.10
|
|||||||
or some (not broken) SVN trunk snapshot. If you like to have source code
|
or some (not broken) SVN trunk snapshot. If you like to have source code
|
||||||
highlighting support, you must also install the Pygments_ library.
|
highlighting support, you must also install the Pygments_ library.
|
||||||
|
|
||||||
.. _reStructuredText: http://docutils.sf.net/rst.html
|
.. _reStructuredText: http://docutils.sourceforge.net/rst.html
|
||||||
.. _docutils: http://docutils.sf.net/
|
.. _docutils: http://docutils.sourceforge.net/
|
||||||
.. _Jinja2: http://jinja.pocoo.org/
|
.. _Jinja2: http://jinja.pocoo.org/
|
||||||
.. _Pygments: http://pygments.org/
|
.. _Pygments: http://pygments.org/
|
||||||
|
|
||||||
|
@ -6,7 +6,9 @@ Invocation of sphinx-quickstart
|
|||||||
===============================
|
===============================
|
||||||
|
|
||||||
The :program:`sphinx-quickstart` script generates a Sphinx documentation set.
|
The :program:`sphinx-quickstart` script generates a Sphinx documentation set.
|
||||||
It is called like this::
|
It is called like this:
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
$ sphinx-quickstart [options] [projectdir]
|
$ sphinx-quickstart [options] [projectdir]
|
||||||
|
|
||||||
@ -141,9 +143,11 @@ Invocation of sphinx-build
|
|||||||
==========================
|
==========================
|
||||||
|
|
||||||
The :program:`sphinx-build` script builds a Sphinx documentation set. It is
|
The :program:`sphinx-build` script builds a Sphinx documentation set. It is
|
||||||
called like this::
|
called like this:
|
||||||
|
|
||||||
$ sphinx-build [options] sourcedir builddir [filenames]
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ sphinx-build [options] sourcedir builddir [filenames]
|
||||||
|
|
||||||
where *sourcedir* is the :term:`source directory`, and *builddir* is the
|
where *sourcedir* is the :term:`source directory`, and *builddir* is the
|
||||||
directory in which you want to place the built documentation. Most of the time,
|
directory in which you want to place the built documentation. Most of the time,
|
||||||
@ -380,9 +384,11 @@ Invocation of sphinx-apidoc
|
|||||||
===========================
|
===========================
|
||||||
|
|
||||||
The :program:`sphinx-apidoc` generates completely automatic API documentation
|
The :program:`sphinx-apidoc` generates completely automatic API documentation
|
||||||
for a Python package. It is called like this::
|
for a Python package. It is called like this:
|
||||||
|
|
||||||
$ sphinx-apidoc [options] -o outputdir packagedir [pathnames]
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ sphinx-apidoc [options] -o outputdir packagedir [pathnames]
|
||||||
|
|
||||||
where *packagedir* is the path to the package to document, and *outputdir* is
|
where *packagedir* is the path to the package to document, and *outputdir* is
|
||||||
the directory where the generated sources are placed. Any *pathnames* given
|
the directory where the generated sources are placed. Any *pathnames* given
|
||||||
|
@ -191,7 +191,7 @@ Including content based on tags
|
|||||||
|
|
||||||
All tags must follow the standard Python identifier syntax as set out in
|
All tags must follow the standard Python identifier syntax as set out in
|
||||||
the `Identifiers and keywords
|
the `Identifiers and keywords
|
||||||
<https://docs.python.org/reference/lexical_analysis.html#identifiers>`_
|
<https://docs.python.org/2/reference/lexical_analysis.html#identifiers>`_
|
||||||
documentation. That is, a tag expression may only consist of tags that
|
documentation. That is, a tag expression may only consist of tags that
|
||||||
conform to the syntax of Python variables. In ASCII, this consists of the
|
conform to the syntax of Python variables. In ASCII, this consists of the
|
||||||
uppercase and lowercase letters ``A`` through ``Z``, the underscore ``_``
|
uppercase and lowercase letters ``A`` through ``Z``, the underscore ``_``
|
||||||
|
@ -183,6 +183,24 @@ Glossary
|
|||||||
|
|
||||||
(When the glossary is sorted, the first term determines the sort order.)
|
(When the glossary is sorted, the first term determines the sort order.)
|
||||||
|
|
||||||
|
If you want to specify "grouping key" for general index entries, you can put a "key"
|
||||||
|
as "term : key". For example::
|
||||||
|
|
||||||
|
.. glossary::
|
||||||
|
|
||||||
|
term 1 : A
|
||||||
|
term 2 : B
|
||||||
|
Definition of both terms.
|
||||||
|
|
||||||
|
Note that "key" is used for grouping key as is.
|
||||||
|
The "key" isn't normalized; key "A" and "a" become different groups.
|
||||||
|
The whole characters in "key" is used instead of a first character; it is used for
|
||||||
|
"Combining Character Sequence" and "Surrogate Pairs" grouping key.
|
||||||
|
|
||||||
|
In i18n situation, you can specify "localized term : key" even if original text only
|
||||||
|
have "term" part. In this case, translated "localized term" will be categorized in
|
||||||
|
"key" group.
|
||||||
|
|
||||||
.. versionadded:: 0.6
|
.. versionadded:: 0.6
|
||||||
You can now give the glossary directive a ``:sorted:`` flag that will
|
You can now give the glossary directive a ``:sorted:`` flag that will
|
||||||
automatically sort the entries alphabetically.
|
automatically sort the entries alphabetically.
|
||||||
@ -190,6 +208,8 @@ Glossary
|
|||||||
.. versionchanged:: 1.1
|
.. versionchanged:: 1.1
|
||||||
Now supports multiple terms and inline markup in terms.
|
Now supports multiple terms and inline markup in terms.
|
||||||
|
|
||||||
|
.. versionchanged:: 1.4
|
||||||
|
Index key for glossary term should be considered *experimental*.
|
||||||
|
|
||||||
Grammar production displays
|
Grammar production displays
|
||||||
---------------------------
|
---------------------------
|
||||||
|
@ -152,9 +152,9 @@ These themes are:
|
|||||||
|
|
||||||
.. _Read the Docs Sphinx Theme: https://pypi.python.org/pypi/sphinx_rtd_theme
|
.. _Read the Docs Sphinx Theme: https://pypi.python.org/pypi/sphinx_rtd_theme
|
||||||
|
|
||||||
* **classic** -- This is the classic theme, which looks like `the Python
|
* **classic** -- This is the classic theme, which looks like `the Python 2
|
||||||
documentation <https://docs.python.org/>`_. It can be customized via these
|
documentation <https://docs.python.org/2/>`_. It can be customized via
|
||||||
options:
|
these options:
|
||||||
|
|
||||||
- **rightsidebar** (true or false): Put the sidebar on the right side.
|
- **rightsidebar** (true or false): Put the sidebar on the right side.
|
||||||
Defaults to ``False``.
|
Defaults to ``False``.
|
||||||
@ -240,7 +240,7 @@ These themes are:
|
|||||||
*sidebarwidth*.
|
*sidebarwidth*.
|
||||||
|
|
||||||
* **haiku** -- A theme without sidebar inspired by the `Haiku OS user guide
|
* **haiku** -- A theme without sidebar inspired by the `Haiku OS user guide
|
||||||
<http://www.haiku-os.org/docs/userguide/en/contents.html>`_. The following
|
<https://www.haiku-os.org/docs/userguide/en/contents.html>`_. The following
|
||||||
options are supported:
|
options are supported:
|
||||||
|
|
||||||
- **full_logo** (true or false, default ``False``): If this is true, the
|
- **full_logo** (true or false, default ``False``): If this is true, the
|
||||||
|
332
ez_setup.py
332
ez_setup.py
@ -1,332 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
"""Bootstrap setuptools installation
|
|
||||||
|
|
||||||
To use setuptools in your package's setup.py, include this
|
|
||||||
file in the same directory and add this to the top of your setup.py::
|
|
||||||
|
|
||||||
from ez_setup import use_setuptools
|
|
||||||
use_setuptools()
|
|
||||||
|
|
||||||
To require a specific version of setuptools, set a download
|
|
||||||
mirror, or use an alternate download directory, simply supply
|
|
||||||
the appropriate options to ``use_setuptools()``.
|
|
||||||
|
|
||||||
This file can also be run as a script to install or upgrade setuptools.
|
|
||||||
"""
|
|
||||||
import os
|
|
||||||
import shutil
|
|
||||||
import sys
|
|
||||||
import tempfile
|
|
||||||
import zipfile
|
|
||||||
import optparse
|
|
||||||
import subprocess
|
|
||||||
import platform
|
|
||||||
import textwrap
|
|
||||||
import contextlib
|
|
||||||
|
|
||||||
from distutils import log
|
|
||||||
|
|
||||||
try:
|
|
||||||
from urllib.request import urlopen
|
|
||||||
except ImportError:
|
|
||||||
from urllib2 import urlopen
|
|
||||||
|
|
||||||
try:
|
|
||||||
from site import USER_SITE
|
|
||||||
except ImportError:
|
|
||||||
USER_SITE = None
|
|
||||||
|
|
||||||
DEFAULT_VERSION = "7.0"
|
|
||||||
DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/"
|
|
||||||
|
|
||||||
def _python_cmd(*args):
|
|
||||||
"""
|
|
||||||
Return True if the command succeeded.
|
|
||||||
"""
|
|
||||||
args = (sys.executable,) + args
|
|
||||||
return subprocess.call(args) == 0
|
|
||||||
|
|
||||||
|
|
||||||
def _install(archive_filename, install_args=()):
|
|
||||||
with archive_context(archive_filename):
|
|
||||||
# installing
|
|
||||||
log.warn('Installing Setuptools')
|
|
||||||
if not _python_cmd('setup.py', 'install', *install_args):
|
|
||||||
log.warn('Something went wrong during the installation.')
|
|
||||||
log.warn('See the error message above.')
|
|
||||||
# exitcode will be 2
|
|
||||||
return 2
|
|
||||||
|
|
||||||
|
|
||||||
def _build_egg(egg, archive_filename, to_dir):
|
|
||||||
with archive_context(archive_filename):
|
|
||||||
# building an egg
|
|
||||||
log.warn('Building a Setuptools egg in %s', to_dir)
|
|
||||||
_python_cmd('setup.py', '-q', 'bdist_egg', '--dist-dir', to_dir)
|
|
||||||
# returning the result
|
|
||||||
log.warn(egg)
|
|
||||||
if not os.path.exists(egg):
|
|
||||||
raise IOError('Could not build the egg.')
|
|
||||||
|
|
||||||
|
|
||||||
class ContextualZipFile(zipfile.ZipFile):
|
|
||||||
"""
|
|
||||||
Supplement ZipFile class to support context manager for Python 2.6
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __enter__(self):
|
|
||||||
return self
|
|
||||||
|
|
||||||
def __exit__(self, type, value, traceback):
|
|
||||||
self.close()
|
|
||||||
|
|
||||||
def __new__(cls, *args, **kwargs):
|
|
||||||
"""
|
|
||||||
Construct a ZipFile or ContextualZipFile as appropriate
|
|
||||||
"""
|
|
||||||
if hasattr(zipfile.ZipFile, '__exit__'):
|
|
||||||
return zipfile.ZipFile(*args, **kwargs)
|
|
||||||
return super(ContextualZipFile, cls).__new__(cls)
|
|
||||||
|
|
||||||
|
|
||||||
@contextlib.contextmanager
|
|
||||||
def archive_context(filename):
|
|
||||||
# extracting the archive
|
|
||||||
tmpdir = tempfile.mkdtemp()
|
|
||||||
log.warn('Extracting in %s', tmpdir)
|
|
||||||
old_wd = os.getcwd()
|
|
||||||
try:
|
|
||||||
os.chdir(tmpdir)
|
|
||||||
with ContextualZipFile(filename) as archive:
|
|
||||||
archive.extractall()
|
|
||||||
|
|
||||||
# going in the directory
|
|
||||||
subdir = os.path.join(tmpdir, os.listdir(tmpdir)[0])
|
|
||||||
os.chdir(subdir)
|
|
||||||
log.warn('Now working in %s', subdir)
|
|
||||||
yield
|
|
||||||
|
|
||||||
finally:
|
|
||||||
os.chdir(old_wd)
|
|
||||||
shutil.rmtree(tmpdir)
|
|
||||||
|
|
||||||
|
|
||||||
def _do_download(version, download_base, to_dir, download_delay):
|
|
||||||
egg = os.path.join(to_dir, 'setuptools-%s-py%d.%d.egg'
|
|
||||||
% (version, sys.version_info[0], sys.version_info[1]))
|
|
||||||
if not os.path.exists(egg):
|
|
||||||
archive = download_setuptools(version, download_base,
|
|
||||||
to_dir, download_delay)
|
|
||||||
_build_egg(egg, archive, to_dir)
|
|
||||||
sys.path.insert(0, egg)
|
|
||||||
|
|
||||||
# Remove previously-imported pkg_resources if present (see
|
|
||||||
# https://bitbucket.org/pypa/setuptools/pull-request/7/ for details).
|
|
||||||
if 'pkg_resources' in sys.modules:
|
|
||||||
del sys.modules['pkg_resources']
|
|
||||||
|
|
||||||
import setuptools
|
|
||||||
setuptools.bootstrap_install_from = egg
|
|
||||||
|
|
||||||
|
|
||||||
def use_setuptools(version=DEFAULT_VERSION, download_base=DEFAULT_URL,
|
|
||||||
to_dir=os.curdir, download_delay=15):
|
|
||||||
to_dir = os.path.abspath(to_dir)
|
|
||||||
rep_modules = 'pkg_resources', 'setuptools'
|
|
||||||
imported = set(sys.modules).intersection(rep_modules)
|
|
||||||
try:
|
|
||||||
import pkg_resources
|
|
||||||
except ImportError:
|
|
||||||
return _do_download(version, download_base, to_dir, download_delay)
|
|
||||||
try:
|
|
||||||
pkg_resources.require("setuptools>=" + version)
|
|
||||||
return
|
|
||||||
except pkg_resources.DistributionNotFound:
|
|
||||||
return _do_download(version, download_base, to_dir, download_delay)
|
|
||||||
except pkg_resources.VersionConflict as VC_err:
|
|
||||||
if imported:
|
|
||||||
msg = textwrap.dedent("""
|
|
||||||
The required version of setuptools (>={version}) is not available,
|
|
||||||
and can't be installed while this script is running. Please
|
|
||||||
install a more recent version first, using
|
|
||||||
'easy_install -U setuptools'.
|
|
||||||
|
|
||||||
(Currently using {VC_err.args[0]!r})
|
|
||||||
""").format(VC_err=VC_err, version=version)
|
|
||||||
sys.stderr.write(msg)
|
|
||||||
sys.exit(2)
|
|
||||||
|
|
||||||
# otherwise, reload ok
|
|
||||||
del pkg_resources, sys.modules['pkg_resources']
|
|
||||||
return _do_download(version, download_base, to_dir, download_delay)
|
|
||||||
|
|
||||||
def _clean_check(cmd, target):
|
|
||||||
"""
|
|
||||||
Run the command to download target. If the command fails, clean up before
|
|
||||||
re-raising the error.
|
|
||||||
"""
|
|
||||||
try:
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
except subprocess.CalledProcessError:
|
|
||||||
if os.access(target, os.F_OK):
|
|
||||||
os.unlink(target)
|
|
||||||
raise
|
|
||||||
|
|
||||||
def download_file_powershell(url, target):
|
|
||||||
"""
|
|
||||||
Download the file at url to target using Powershell (which will validate
|
|
||||||
trust). Raise an exception if the command cannot complete.
|
|
||||||
"""
|
|
||||||
target = os.path.abspath(target)
|
|
||||||
ps_cmd = (
|
|
||||||
"[System.Net.WebRequest]::DefaultWebProxy.Credentials = "
|
|
||||||
"[System.Net.CredentialCache]::DefaultCredentials; "
|
|
||||||
"(new-object System.Net.WebClient).DownloadFile(%(url)r, %(target)r)"
|
|
||||||
% vars()
|
|
||||||
)
|
|
||||||
cmd = [
|
|
||||||
'powershell',
|
|
||||||
'-Command',
|
|
||||||
ps_cmd,
|
|
||||||
]
|
|
||||||
_clean_check(cmd, target)
|
|
||||||
|
|
||||||
def has_powershell():
|
|
||||||
if platform.system() != 'Windows':
|
|
||||||
return False
|
|
||||||
cmd = ['powershell', '-Command', 'echo test']
|
|
||||||
with open(os.path.devnull, 'wb') as devnull:
|
|
||||||
try:
|
|
||||||
subprocess.check_call(cmd, stdout=devnull, stderr=devnull)
|
|
||||||
except Exception:
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
download_file_powershell.viable = has_powershell
|
|
||||||
|
|
||||||
def download_file_curl(url, target):
|
|
||||||
cmd = ['curl', url, '--silent', '--output', target]
|
|
||||||
_clean_check(cmd, target)
|
|
||||||
|
|
||||||
def has_curl():
|
|
||||||
cmd = ['curl', '--version']
|
|
||||||
with open(os.path.devnull, 'wb') as devnull:
|
|
||||||
try:
|
|
||||||
subprocess.check_call(cmd, stdout=devnull, stderr=devnull)
|
|
||||||
except Exception:
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
download_file_curl.viable = has_curl
|
|
||||||
|
|
||||||
def download_file_wget(url, target):
|
|
||||||
cmd = ['wget', url, '--quiet', '--output-document', target]
|
|
||||||
_clean_check(cmd, target)
|
|
||||||
|
|
||||||
def has_wget():
|
|
||||||
cmd = ['wget', '--version']
|
|
||||||
with open(os.path.devnull, 'wb') as devnull:
|
|
||||||
try:
|
|
||||||
subprocess.check_call(cmd, stdout=devnull, stderr=devnull)
|
|
||||||
except Exception:
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
download_file_wget.viable = has_wget
|
|
||||||
|
|
||||||
def download_file_insecure(url, target):
|
|
||||||
"""
|
|
||||||
Use Python to download the file, even though it cannot authenticate the
|
|
||||||
connection.
|
|
||||||
"""
|
|
||||||
src = urlopen(url)
|
|
||||||
try:
|
|
||||||
# Read all the data in one block.
|
|
||||||
data = src.read()
|
|
||||||
finally:
|
|
||||||
src.close()
|
|
||||||
|
|
||||||
# Write all the data in one block to avoid creating a partial file.
|
|
||||||
with open(target, "wb") as dst:
|
|
||||||
dst.write(data)
|
|
||||||
|
|
||||||
download_file_insecure.viable = lambda: True
|
|
||||||
|
|
||||||
def get_best_downloader():
|
|
||||||
downloaders = (
|
|
||||||
download_file_powershell,
|
|
||||||
download_file_curl,
|
|
||||||
download_file_wget,
|
|
||||||
download_file_insecure,
|
|
||||||
)
|
|
||||||
viable_downloaders = (dl for dl in downloaders if dl.viable())
|
|
||||||
return next(viable_downloaders, None)
|
|
||||||
|
|
||||||
def download_setuptools(version=DEFAULT_VERSION, download_base=DEFAULT_URL,
|
|
||||||
to_dir=os.curdir, delay=15, downloader_factory=get_best_downloader):
|
|
||||||
"""
|
|
||||||
Download setuptools from a specified location and return its filename
|
|
||||||
|
|
||||||
`version` should be a valid setuptools version number that is available
|
|
||||||
as an sdist for download under the `download_base` URL (which should end
|
|
||||||
with a '/'). `to_dir` is the directory where the egg will be downloaded.
|
|
||||||
`delay` is the number of seconds to pause before an actual download
|
|
||||||
attempt.
|
|
||||||
|
|
||||||
``downloader_factory`` should be a function taking no arguments and
|
|
||||||
returning a function for downloading a URL to a target.
|
|
||||||
"""
|
|
||||||
# making sure we use the absolute path
|
|
||||||
to_dir = os.path.abspath(to_dir)
|
|
||||||
zip_name = "setuptools-%s.zip" % version
|
|
||||||
url = download_base + zip_name
|
|
||||||
saveto = os.path.join(to_dir, zip_name)
|
|
||||||
if not os.path.exists(saveto): # Avoid repeated downloads
|
|
||||||
log.warn("Downloading %s", url)
|
|
||||||
downloader = downloader_factory()
|
|
||||||
downloader(url, saveto)
|
|
||||||
return os.path.realpath(saveto)
|
|
||||||
|
|
||||||
def _build_install_args(options):
|
|
||||||
"""
|
|
||||||
Build the arguments to 'python setup.py install' on the setuptools package
|
|
||||||
"""
|
|
||||||
return ['--user'] if options.user_install else []
|
|
||||||
|
|
||||||
def _parse_args():
|
|
||||||
"""
|
|
||||||
Parse the command line for options
|
|
||||||
"""
|
|
||||||
parser = optparse.OptionParser()
|
|
||||||
parser.add_option(
|
|
||||||
'--user', dest='user_install', action='store_true', default=False,
|
|
||||||
help='install in user site package (requires Python 2.6 or later)')
|
|
||||||
parser.add_option(
|
|
||||||
'--download-base', dest='download_base', metavar="URL",
|
|
||||||
default=DEFAULT_URL,
|
|
||||||
help='alternative URL from where to download the setuptools package')
|
|
||||||
parser.add_option(
|
|
||||||
'--insecure', dest='downloader_factory', action='store_const',
|
|
||||||
const=lambda: download_file_insecure, default=get_best_downloader,
|
|
||||||
help='Use internal, non-validating downloader'
|
|
||||||
)
|
|
||||||
parser.add_option(
|
|
||||||
'--version', help="Specify which version to download",
|
|
||||||
default=DEFAULT_VERSION,
|
|
||||||
)
|
|
||||||
options, args = parser.parse_args()
|
|
||||||
# positional arguments are ignored
|
|
||||||
return options
|
|
||||||
|
|
||||||
def main():
|
|
||||||
"""Install or upgrade setuptools and EasyInstall"""
|
|
||||||
options = _parse_args()
|
|
||||||
archive = download_setuptools(
|
|
||||||
version=options.version,
|
|
||||||
download_base=options.download_base,
|
|
||||||
downloader_factory=options.downloader_factory,
|
|
||||||
)
|
|
||||||
return _install(archive, _build_install_args(options))
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
sys.exit(main())
|
|
8
setup.py
8
setup.py
@ -1,10 +1,5 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
try:
|
from setuptools import setup, find_packages
|
||||||
from setuptools import setup, find_packages
|
|
||||||
except ImportError:
|
|
||||||
import ez_setup
|
|
||||||
ez_setup.use_setuptools()
|
|
||||||
from setuptools import setup, find_packages
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
@ -53,6 +48,7 @@ requires = [
|
|||||||
'snowballstemmer>=1.1',
|
'snowballstemmer>=1.1',
|
||||||
'babel>=1.3,!=2.0',
|
'babel>=1.3,!=2.0',
|
||||||
'alabaster>=0.7,<0.8',
|
'alabaster>=0.7,<0.8',
|
||||||
|
'imagesize',
|
||||||
]
|
]
|
||||||
extras_require = {
|
extras_require = {
|
||||||
# Environment Marker works for wheel 0.24 or later
|
# Environment Marker works for wheel 0.24 or later
|
||||||
|
@ -15,13 +15,13 @@
|
|||||||
import sys
|
import sys
|
||||||
from os import path
|
from os import path
|
||||||
|
|
||||||
__version__ = '1.4a0+'
|
__version__ = '1.4a1+'
|
||||||
__released__ = '1.4a0' # used when Sphinx builds its own docs
|
__released__ = '1.4a1' # used when Sphinx builds its own docs
|
||||||
|
|
||||||
# version info for better programmatic use
|
# version info for better programmatic use
|
||||||
# possible values for 3rd element: 'alpha', 'beta', 'rc', 'final'
|
# possible values for 3rd element: 'alpha', 'beta', 'rc', 'final'
|
||||||
# 'final' has 0 as the last element
|
# 'final' has 0 as the last element
|
||||||
version_info = (1, 4, 0, 'alpha', 0)
|
version_info = (1, 4, 0, 'alpha', 1)
|
||||||
|
|
||||||
package_dir = path.abspath(path.dirname(__file__))
|
package_dir = path.abspath(path.dirname(__file__))
|
||||||
|
|
||||||
|
@ -9,6 +9,8 @@
|
|||||||
:license: BSD, see LICENSE for details.
|
:license: BSD, see LICENSE for details.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import warnings
|
||||||
|
|
||||||
from docutils import nodes
|
from docutils import nodes
|
||||||
|
|
||||||
|
|
||||||
@ -209,7 +211,16 @@ class abbreviation(nodes.Inline, nodes.TextElement):
|
|||||||
|
|
||||||
|
|
||||||
class termsep(nodes.Structural, nodes.Element):
|
class termsep(nodes.Structural, nodes.Element):
|
||||||
"""Separates two terms within a <term> node."""
|
"""Separates two terms within a <term> node.
|
||||||
|
|
||||||
|
.. versionchanged:: 1.4
|
||||||
|
sphinx.addnodes.termsep is deprecated. It will be removed at Sphinx-1.5.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, *args, **kw):
|
||||||
|
warnings.warn('sphinx.addnodes.termsep will be removed at Sphinx-1.5',
|
||||||
|
DeprecationWarning, stacklevel=2)
|
||||||
|
super(termsep, self).__init__(*args, **kw)
|
||||||
|
|
||||||
|
|
||||||
class manpage(nodes.Inline, nodes.TextElement):
|
class manpage(nodes.Inline, nodes.TextElement):
|
||||||
|
@ -35,7 +35,8 @@ from sphinx.errors import SphinxError, SphinxWarning, ExtensionError, \
|
|||||||
from sphinx.domains import ObjType, BUILTIN_DOMAINS
|
from sphinx.domains import ObjType, BUILTIN_DOMAINS
|
||||||
from sphinx.domains.std import GenericObject, Target, StandardDomain
|
from sphinx.domains.std import GenericObject, Target, StandardDomain
|
||||||
from sphinx.builders import BUILTIN_BUILDERS
|
from sphinx.builders import BUILTIN_BUILDERS
|
||||||
from sphinx.environment import BuildEnvironment, SphinxStandaloneReader
|
from sphinx.environment import BuildEnvironment
|
||||||
|
from sphinx.io import SphinxStandaloneReader
|
||||||
from sphinx.util import pycompat # noqa: imported for side-effects
|
from sphinx.util import pycompat # noqa: imported for side-effects
|
||||||
from sphinx.util import import_object
|
from sphinx.util import import_object
|
||||||
from sphinx.util.tags import Tags
|
from sphinx.util.tags import Tags
|
||||||
@ -85,6 +86,7 @@ class Sphinx(object):
|
|||||||
self.builderclasses = BUILTIN_BUILDERS.copy()
|
self.builderclasses = BUILTIN_BUILDERS.copy()
|
||||||
self.builder = None
|
self.builder = None
|
||||||
self.env = None
|
self.env = None
|
||||||
|
self.enumerable_nodes = {}
|
||||||
|
|
||||||
self.srcdir = srcdir
|
self.srcdir = srcdir
|
||||||
self.confdir = confdir
|
self.confdir = confdir
|
||||||
@ -192,6 +194,8 @@ class Sphinx(object):
|
|||||||
self._init_env(freshenv)
|
self._init_env(freshenv)
|
||||||
# set up the builder
|
# set up the builder
|
||||||
self._init_builder(self.buildername)
|
self._init_builder(self.buildername)
|
||||||
|
# set up the enumerable nodes
|
||||||
|
self._init_enumerable_nodes()
|
||||||
|
|
||||||
def _init_i18n(self):
|
def _init_i18n(self):
|
||||||
"""Load translated strings from the configured localedirs if enabled in
|
"""Load translated strings from the configured localedirs if enabled in
|
||||||
@ -232,7 +236,7 @@ class Sphinx(object):
|
|||||||
try:
|
try:
|
||||||
self.info(bold('loading pickled environment... '), nonl=True)
|
self.info(bold('loading pickled environment... '), nonl=True)
|
||||||
self.env = BuildEnvironment.frompickle(
|
self.env = BuildEnvironment.frompickle(
|
||||||
self.config, path.join(self.doctreedir, ENV_PICKLE_FILENAME))
|
self.srcdir, self.config, path.join(self.doctreedir, ENV_PICKLE_FILENAME))
|
||||||
self.env.domains = {}
|
self.env.domains = {}
|
||||||
for domain in self.domains.keys():
|
for domain in self.domains.keys():
|
||||||
# this can raise if the data version doesn't fit
|
# this can raise if the data version doesn't fit
|
||||||
@ -263,6 +267,10 @@ class Sphinx(object):
|
|||||||
self.builder = builderclass(self)
|
self.builder = builderclass(self)
|
||||||
self.emit('builder-inited')
|
self.emit('builder-inited')
|
||||||
|
|
||||||
|
def _init_enumerable_nodes(self):
|
||||||
|
for node, settings in iteritems(self.enumerable_nodes):
|
||||||
|
self.env.domains['std'].enumerable_nodes[node] = settings
|
||||||
|
|
||||||
# ---- main "build" method -------------------------------------------------
|
# ---- main "build" method -------------------------------------------------
|
||||||
|
|
||||||
def build(self, force_all=False, filenames=None):
|
def build(self, force_all=False, filenames=None):
|
||||||
@ -600,6 +608,10 @@ class Sphinx(object):
|
|||||||
if depart:
|
if depart:
|
||||||
setattr(translator, 'depart_'+node.__name__, depart)
|
setattr(translator, 'depart_'+node.__name__, depart)
|
||||||
|
|
||||||
|
def add_enumerable_node(self, node, figtype, title_getter=None, **kwds):
|
||||||
|
self.enumerable_nodes[node] = (figtype, title_getter)
|
||||||
|
self.add_node(node, **kwds)
|
||||||
|
|
||||||
def _directive_helper(self, obj, content=None, arguments=None, **options):
|
def _directive_helper(self, obj, content=None, arguments=None, **options):
|
||||||
if isinstance(obj, (types.FunctionType, types.MethodType)):
|
if isinstance(obj, (types.FunctionType, types.MethodType)):
|
||||||
obj.content = content
|
obj.content = content
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
"""
|
"""
|
||||||
sphinx.builders.dummy
|
sphinx.builders.dummy
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Do syntax checks, but no writing.
|
Do syntax checks, but no writing.
|
||||||
|
|
||||||
|
@ -28,7 +28,8 @@ from docutils import nodes
|
|||||||
|
|
||||||
from sphinx import addnodes
|
from sphinx import addnodes
|
||||||
from sphinx.builders.html import StandaloneHTMLBuilder
|
from sphinx.builders.html import StandaloneHTMLBuilder
|
||||||
from sphinx.util.osutil import ensuredir, copyfile, ustrftime, EEXIST
|
from sphinx.util.i18n import format_date
|
||||||
|
from sphinx.util.osutil import ensuredir, copyfile, EEXIST
|
||||||
from sphinx.util.smartypants import sphinx_smarty_pants as ssp
|
from sphinx.util.smartypants import sphinx_smarty_pants as ssp
|
||||||
from sphinx.util.console import brown
|
from sphinx.util.console import brown
|
||||||
|
|
||||||
@ -400,7 +401,7 @@ class EpubBuilder(StandaloneHTMLBuilder):
|
|||||||
# XXX: modifies tree inline
|
# XXX: modifies tree inline
|
||||||
# Logic modeled from themes/basic/genindex.html
|
# Logic modeled from themes/basic/genindex.html
|
||||||
for key, columns in tree:
|
for key, columns in tree:
|
||||||
for entryname, (links, subitems) in columns:
|
for entryname, (links, subitems, key_) in columns:
|
||||||
for (i, (ismain, link)) in enumerate(links):
|
for (i, (ismain, link)) in enumerate(links):
|
||||||
m = self.refuri_re.match(link)
|
m = self.refuri_re.match(link)
|
||||||
if m:
|
if m:
|
||||||
@ -529,7 +530,7 @@ class EpubBuilder(StandaloneHTMLBuilder):
|
|||||||
metadata['copyright'] = self.esc(self.config.epub_copyright)
|
metadata['copyright'] = self.esc(self.config.epub_copyright)
|
||||||
metadata['scheme'] = self.esc(self.config.epub_scheme)
|
metadata['scheme'] = self.esc(self.config.epub_scheme)
|
||||||
metadata['id'] = self.esc(self.config.epub_identifier)
|
metadata['id'] = self.esc(self.config.epub_identifier)
|
||||||
metadata['date'] = self.esc(ustrftime('%Y-%m-%d'))
|
metadata['date'] = self.esc(format_date('YYYY-MM-dd', language=self.config.language))
|
||||||
metadata['files'] = files
|
metadata['files'] = files
|
||||||
metadata['spine'] = spine
|
metadata['spine'] = spine
|
||||||
metadata['guide'] = guide
|
metadata['guide'] = guide
|
||||||
|
@ -120,7 +120,7 @@ class Epub3Builder(EpubBuilder):
|
|||||||
metadata['description'] = self.esc(self.config.epub3_description)
|
metadata['description'] = self.esc(self.config.epub3_description)
|
||||||
metadata['contributor'] = self.esc(self.config.epub3_contributor)
|
metadata['contributor'] = self.esc(self.config.epub3_contributor)
|
||||||
metadata['page_progression_direction'] = self.esc(
|
metadata['page_progression_direction'] = self.esc(
|
||||||
self.config.epub3_page_progression_direction)
|
self.config.epub3_page_progression_direction) or 'default'
|
||||||
return metadata
|
return metadata
|
||||||
|
|
||||||
def new_navlist(self, node, level):
|
def new_navlist(self, node, level):
|
||||||
|
@ -23,7 +23,7 @@ from six import iteritems
|
|||||||
from sphinx.builders import Builder
|
from sphinx.builders import Builder
|
||||||
from sphinx.util import split_index_msg
|
from sphinx.util import split_index_msg
|
||||||
from sphinx.util.nodes import extract_messages, traverse_translatable_index
|
from sphinx.util.nodes import extract_messages, traverse_translatable_index
|
||||||
from sphinx.util.osutil import safe_relpath, ensuredir, SEP
|
from sphinx.util.osutil import safe_relpath, ensuredir, canon_path
|
||||||
from sphinx.util.i18n import find_catalog
|
from sphinx.util.i18n import find_catalog
|
||||||
from sphinx.util.console import darkgreen, purple, bold
|
from sphinx.util.console import darkgreen, purple, bold
|
||||||
from sphinx.locale import pairindextypes
|
from sphinx.locale import pairindextypes
|
||||||
@ -117,7 +117,7 @@ class I18nBuilder(Builder):
|
|||||||
if 'index' in self.env.config.gettext_additional_targets:
|
if 'index' in self.env.config.gettext_additional_targets:
|
||||||
# Extract translatable messages from index entries.
|
# Extract translatable messages from index entries.
|
||||||
for node, entries in traverse_translatable_index(doctree):
|
for node, entries in traverse_translatable_index(doctree):
|
||||||
for typ, msg, tid, main in entries:
|
for typ, msg, tid, main, key_ in entries:
|
||||||
for m in split_index_msg(typ, msg):
|
for m in split_index_msg(typ, msg):
|
||||||
if typ == 'pair' and m in pairindextypes.values():
|
if typ == 'pair' and m in pairindextypes.values():
|
||||||
# avoid built-in translated message was incorporated
|
# avoid built-in translated message was incorporated
|
||||||
@ -165,8 +165,7 @@ class MessageCatalogBuilder(I18nBuilder):
|
|||||||
for dirpath, dirs, files in walk(tmpl_abs_path):
|
for dirpath, dirs, files in walk(tmpl_abs_path):
|
||||||
for fn in files:
|
for fn in files:
|
||||||
if fn.endswith('.html'):
|
if fn.endswith('.html'):
|
||||||
filename = path.join(dirpath, fn)
|
filename = canon_path(path.join(dirpath, fn))
|
||||||
filename = filename.replace(path.sep, SEP)
|
|
||||||
template_files.add(filename)
|
template_files.add(filename)
|
||||||
return template_files
|
return template_files
|
||||||
|
|
||||||
@ -216,7 +215,8 @@ class MessageCatalogBuilder(I18nBuilder):
|
|||||||
if self.config.gettext_location:
|
if self.config.gettext_location:
|
||||||
# generate "#: file1:line1\n#: file2:line2 ..."
|
# generate "#: file1:line1\n#: file2:line2 ..."
|
||||||
pofile.write("#: %s\n" % "\n#: ".join(
|
pofile.write("#: %s\n" % "\n#: ".join(
|
||||||
"%s:%s" % (safe_relpath(source, self.outdir), line)
|
"%s:%s" % (canon_path(
|
||||||
|
safe_relpath(source, self.outdir)), line)
|
||||||
for source, line, _ in positions))
|
for source, line, _ in positions))
|
||||||
if self.config.gettext_uuid:
|
if self.config.gettext_uuid:
|
||||||
# generate "# uuid1\n# uuid2\n ..."
|
# generate "# uuid1\n# uuid2\n ..."
|
||||||
|
@ -28,8 +28,9 @@ from docutils.readers.doctree import Reader as DoctreeReader
|
|||||||
|
|
||||||
from sphinx import package_dir, __display_version__
|
from sphinx import package_dir, __display_version__
|
||||||
from sphinx.util import jsonimpl, copy_static_entry, copy_extra_entry
|
from sphinx.util import jsonimpl, copy_static_entry, copy_extra_entry
|
||||||
|
from sphinx.util.i18n import format_date
|
||||||
from sphinx.util.osutil import SEP, os_path, relative_uri, ensuredir, \
|
from sphinx.util.osutil import SEP, os_path, relative_uri, ensuredir, \
|
||||||
movefile, ustrftime, copyfile
|
movefile, copyfile
|
||||||
from sphinx.util.nodes import inline_all_toctrees
|
from sphinx.util.nodes import inline_all_toctrees
|
||||||
from sphinx.util.matching import patmatch, compile_matchers
|
from sphinx.util.matching import patmatch, compile_matchers
|
||||||
from sphinx.locale import _
|
from sphinx.locale import _
|
||||||
@ -291,7 +292,8 @@ class StandaloneHTMLBuilder(Builder):
|
|||||||
# typically doesn't include the time of day
|
# typically doesn't include the time of day
|
||||||
lufmt = self.config.html_last_updated_fmt
|
lufmt = self.config.html_last_updated_fmt
|
||||||
if lufmt is not None:
|
if lufmt is not None:
|
||||||
self.last_updated = ustrftime(lufmt or _('%b %d, %Y'))
|
self.last_updated = format_date(lufmt or _('MMM dd, YYYY'),
|
||||||
|
language=self.config.language)
|
||||||
else:
|
else:
|
||||||
self.last_updated = None
|
self.last_updated = None
|
||||||
|
|
||||||
@ -512,7 +514,7 @@ class StandaloneHTMLBuilder(Builder):
|
|||||||
indexcounts = []
|
indexcounts = []
|
||||||
for _k, entries in genindex:
|
for _k, entries in genindex:
|
||||||
indexcounts.append(sum(1 + len(subitems)
|
indexcounts.append(sum(1 + len(subitems)
|
||||||
for _, (_, subitems) in entries))
|
for _, (_, subitems, _) in entries))
|
||||||
|
|
||||||
genindexcontext = dict(
|
genindexcontext = dict(
|
||||||
genindexentries = genindex,
|
genindexentries = genindex,
|
||||||
|
@ -299,7 +299,7 @@ class HTMLHelpBuilder(StandaloneHTMLBuilder):
|
|||||||
write_index(subitem[0], subitem[1], [])
|
write_index(subitem[0], subitem[1], [])
|
||||||
f.write('</UL>')
|
f.write('</UL>')
|
||||||
for (key, group) in index:
|
for (key, group) in index:
|
||||||
for title, (refs, subitems) in group:
|
for title, (refs, subitems, key_) in group:
|
||||||
write_index(title, refs, subitems)
|
write_index(title, refs, subitems)
|
||||||
f.write('</UL>\n')
|
f.write('</UL>\n')
|
||||||
finally:
|
finally:
|
||||||
|
@ -36,8 +36,7 @@ class LaTeXBuilder(Builder):
|
|||||||
"""
|
"""
|
||||||
name = 'latex'
|
name = 'latex'
|
||||||
format = 'latex'
|
format = 'latex'
|
||||||
supported_image_types = ['application/pdf', 'image/png',
|
supported_image_types = ['application/pdf', 'image/png', 'image/jpeg']
|
||||||
'image/gif', 'image/jpeg']
|
|
||||||
usepackages = []
|
usepackages = []
|
||||||
|
|
||||||
def init(self):
|
def init(self):
|
||||||
|
@ -75,11 +75,11 @@ class AnchorCheckParser(HTMLParser):
|
|||||||
self.found = True
|
self.found = True
|
||||||
|
|
||||||
|
|
||||||
def check_anchor(f, hash):
|
def check_anchor(f, anchor):
|
||||||
"""Reads HTML data from a filelike object 'f' searching for anchor 'hash'.
|
"""Reads HTML data from a filelike object 'f' searching for *anchor*.
|
||||||
Returns True if anchor was found, False otherwise.
|
Returns True if anchor was found, False otherwise.
|
||||||
"""
|
"""
|
||||||
parser = AnchorCheckParser(hash)
|
parser = AnchorCheckParser(anchor)
|
||||||
try:
|
try:
|
||||||
# Read file in chunks of 8192 bytes. If we find a matching anchor, we
|
# Read file in chunks of 8192 bytes. If we find a matching anchor, we
|
||||||
# break the loop early in hopes not to have to download the whole thing.
|
# break the loop early in hopes not to have to download the whole thing.
|
||||||
@ -137,29 +137,13 @@ class CheckExternalLinksBuilder(Builder):
|
|||||||
if self.app.config.linkcheck_timeout:
|
if self.app.config.linkcheck_timeout:
|
||||||
kwargs['timeout'] = self.app.config.linkcheck_timeout
|
kwargs['timeout'] = self.app.config.linkcheck_timeout
|
||||||
|
|
||||||
def check():
|
def check_uri():
|
||||||
# check for various conditions without bothering the network
|
|
||||||
if len(uri) == 0 or uri[0] == '#' or \
|
|
||||||
uri[0:7] == 'mailto:' or uri[0:4] == 'ftp:':
|
|
||||||
return 'unchecked', '', 0
|
|
||||||
elif not (uri[0:5] == 'http:' or uri[0:6] == 'https:'):
|
|
||||||
return 'local', '', 0
|
|
||||||
elif uri in self.good:
|
|
||||||
return 'working', 'old', 0
|
|
||||||
elif uri in self.broken:
|
|
||||||
return 'broken', self.broken[uri], 0
|
|
||||||
elif uri in self.redirected:
|
|
||||||
return 'redirected', self.redirected[uri][0], self.redirected[uri][1]
|
|
||||||
for rex in self.to_ignore:
|
|
||||||
if rex.match(uri):
|
|
||||||
return 'ignored', '', 0
|
|
||||||
|
|
||||||
# split off anchor
|
# split off anchor
|
||||||
if '#' in uri:
|
if '#' in uri:
|
||||||
req_url, hash = uri.split('#', 1)
|
req_url, anchor = uri.split('#', 1)
|
||||||
else:
|
else:
|
||||||
req_url = uri
|
req_url = uri
|
||||||
hash = None
|
anchor = None
|
||||||
|
|
||||||
# handle non-ASCII URIs
|
# handle non-ASCII URIs
|
||||||
try:
|
try:
|
||||||
@ -167,10 +151,12 @@ class CheckExternalLinksBuilder(Builder):
|
|||||||
except UnicodeError:
|
except UnicodeError:
|
||||||
req_url = encode_uri(req_url)
|
req_url = encode_uri(req_url)
|
||||||
|
|
||||||
# need to actually check the URI
|
|
||||||
try:
|
try:
|
||||||
if hash and self.app.config.linkcheck_anchors:
|
if anchor and self.app.config.linkcheck_anchors and \
|
||||||
# Read the whole document and see if #hash exists
|
not anchor.startswith('!'):
|
||||||
|
# Read the whole document and see if #anchor exists
|
||||||
|
# (Anchors starting with ! are ignored since they are
|
||||||
|
# commonly used for dynamic pages)
|
||||||
req = Request(req_url)
|
req = Request(req_url)
|
||||||
f = opener.open(req, **kwargs)
|
f = opener.open(req, **kwargs)
|
||||||
encoding = 'utf-8'
|
encoding = 'utf-8'
|
||||||
@ -178,11 +164,12 @@ class CheckExternalLinksBuilder(Builder):
|
|||||||
encoding = f.headers.get_content_charset() or encoding
|
encoding = f.headers.get_content_charset() or encoding
|
||||||
else:
|
else:
|
||||||
encoding = get_content_charset(f) or encoding
|
encoding = get_content_charset(f) or encoding
|
||||||
found = check_anchor(TextIOWrapper(f, encoding), unquote(hash))
|
found = check_anchor(TextIOWrapper(f, encoding),
|
||||||
|
unquote(anchor))
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
if not found:
|
if not found:
|
||||||
raise Exception("Anchor '%s' not found" % hash)
|
raise Exception("Anchor '%s' not found" % anchor)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
# try a HEAD request, which should be easier on
|
# try a HEAD request, which should be easier on
|
||||||
@ -201,25 +188,51 @@ class CheckExternalLinksBuilder(Builder):
|
|||||||
except HTTPError as err:
|
except HTTPError as err:
|
||||||
if err.code == 401:
|
if err.code == 401:
|
||||||
# We'll take "Unauthorized" as working.
|
# We'll take "Unauthorized" as working.
|
||||||
self.good.add(uri)
|
|
||||||
return 'working', ' - unauthorized', 0
|
return 'working', ' - unauthorized', 0
|
||||||
else:
|
else:
|
||||||
self.broken[uri] = str(err)
|
|
||||||
return 'broken', str(err), 0
|
return 'broken', str(err), 0
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
self.broken[uri] = str(err)
|
|
||||||
return 'broken', str(err), 0
|
return 'broken', str(err), 0
|
||||||
if f.url.rstrip('/') == req_url.rstrip('/'):
|
if f.url.rstrip('/') == req_url.rstrip('/'):
|
||||||
self.good.add(uri)
|
|
||||||
return 'working', '', 0
|
return 'working', '', 0
|
||||||
else:
|
else:
|
||||||
new_url = f.url
|
new_url = f.url
|
||||||
if hash:
|
if anchor:
|
||||||
new_url += '#' + hash
|
new_url += '#' + anchor
|
||||||
code = getattr(req, 'redirect_code', 0)
|
code = getattr(req, 'redirect_code', 0)
|
||||||
self.redirected[uri] = (new_url, code)
|
|
||||||
return 'redirected', new_url, code
|
return 'redirected', new_url, code
|
||||||
|
|
||||||
|
def check():
|
||||||
|
# check for various conditions without bothering the network
|
||||||
|
if len(uri) == 0 or uri.startswith(('#', 'mailto:', 'ftp:')):
|
||||||
|
return 'unchecked', '', 0
|
||||||
|
elif not uri.startswith(('http:', 'https:')):
|
||||||
|
return 'local', '', 0
|
||||||
|
elif uri in self.good:
|
||||||
|
return 'working', 'old', 0
|
||||||
|
elif uri in self.broken:
|
||||||
|
return 'broken', self.broken[uri], 0
|
||||||
|
elif uri in self.redirected:
|
||||||
|
return 'redirected', self.redirected[uri][0], self.redirected[uri][1]
|
||||||
|
for rex in self.to_ignore:
|
||||||
|
if rex.match(uri):
|
||||||
|
return 'ignored', '', 0
|
||||||
|
|
||||||
|
# need to actually check the URI
|
||||||
|
for _ in range(self.app.config.linkcheck_retries):
|
||||||
|
status, info, code = check_uri()
|
||||||
|
if status != "broken":
|
||||||
|
break
|
||||||
|
|
||||||
|
if status == "working":
|
||||||
|
self.good.add(uri)
|
||||||
|
elif status == "broken":
|
||||||
|
self.broken[uri] = info
|
||||||
|
elif status == "redirected":
|
||||||
|
self.redirected[uri] = (info, code)
|
||||||
|
|
||||||
|
return (status, info, code)
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
uri, docname, lineno = self.wqueue.get()
|
uri, docname, lineno = self.wqueue.get()
|
||||||
if uri is None:
|
if uri is None:
|
||||||
|
@ -148,7 +148,7 @@ class QtHelpBuilder(StandaloneHTMLBuilder):
|
|||||||
keywords = []
|
keywords = []
|
||||||
index = self.env.create_index(self, group_entries=False)
|
index = self.env.create_index(self, group_entries=False)
|
||||||
for (key, group) in index:
|
for (key, group) in index:
|
||||||
for title, (refs, subitems) in group:
|
for title, (refs, subitems, key_) in group:
|
||||||
keywords.extend(self.build_keywords(title, refs, subitems))
|
keywords.extend(self.build_keywords(title, refs, subitems))
|
||||||
keywords = u'\n'.join(keywords)
|
keywords = u'\n'.join(keywords)
|
||||||
|
|
||||||
|
@ -270,6 +270,14 @@ def main(argv):
|
|||||||
print(red('The full traceback has been saved in %s, if you want '
|
print(red('The full traceback has been saved in %s, if you want '
|
||||||
'to report the issue to the developers.' % tbpath),
|
'to report the issue to the developers.' % tbpath),
|
||||||
file=error)
|
file=error)
|
||||||
|
elif isinstance(err, RuntimeError) and 'recursion depth' in str(err):
|
||||||
|
print(red('Recursion error:'), file=error)
|
||||||
|
print(terminal_safe(text_type(err)), file=error)
|
||||||
|
print(file=error)
|
||||||
|
print('This can happen with very large or deeply nested source '
|
||||||
|
'files. You can carefully increase the default Python '
|
||||||
|
'recursion limit of 1000 in conf.py with e.g.:', file=error)
|
||||||
|
print(' import sys; sys.setrecursionlimit(1500)', file=error)
|
||||||
else:
|
else:
|
||||||
print(red('Exception occurred:'), file=error)
|
print(red('Exception occurred:'), file=error)
|
||||||
print(format_exception_cut_frames().rstrip(), file=error)
|
print(format_exception_cut_frames().rstrip(), file=error)
|
||||||
|
@ -13,7 +13,7 @@ import re
|
|||||||
from os import path, environ
|
from os import path, environ
|
||||||
import shlex
|
import shlex
|
||||||
|
|
||||||
from six import PY3, iteritems, string_types, binary_type, integer_types
|
from six import PY2, PY3, iteritems, string_types, binary_type, text_type, integer_types
|
||||||
|
|
||||||
from sphinx.errors import ConfigError
|
from sphinx.errors import ConfigError
|
||||||
from sphinx.locale import l_
|
from sphinx.locale import l_
|
||||||
@ -31,6 +31,11 @@ CONFIG_TYPE_WARNING = "The config value `{name}' has type `{current.__name__}',
|
|||||||
"defaults to `{default.__name__}.'"
|
"defaults to `{default.__name__}.'"
|
||||||
|
|
||||||
|
|
||||||
|
string_classes = [text_type]
|
||||||
|
if PY2:
|
||||||
|
string_classes.append(binary_type) # => [str, unicode]
|
||||||
|
|
||||||
|
|
||||||
class Config(object):
|
class Config(object):
|
||||||
"""
|
"""
|
||||||
Configuration file abstraction.
|
Configuration file abstraction.
|
||||||
@ -49,33 +54,34 @@ class Config(object):
|
|||||||
release = ('', 'env'),
|
release = ('', 'env'),
|
||||||
today = ('', 'env'),
|
today = ('', 'env'),
|
||||||
# the real default is locale-dependent
|
# the real default is locale-dependent
|
||||||
today_fmt = (None, 'env', [str]),
|
today_fmt = (None, 'env', string_classes),
|
||||||
|
|
||||||
language = (None, 'env', [str]),
|
language = (None, 'env', string_classes),
|
||||||
locale_dirs = ([], 'env'),
|
locale_dirs = ([], 'env'),
|
||||||
|
figure_language_filename = ('{root}.{language}{ext}', 'env', [str]),
|
||||||
|
|
||||||
master_doc = ('contents', 'env'),
|
master_doc = ('contents', 'env'),
|
||||||
source_suffix = (['.rst'], 'env'),
|
source_suffix = (['.rst'], 'env'),
|
||||||
source_encoding = ('utf-8-sig', 'env'),
|
source_encoding = ('utf-8-sig', 'env'),
|
||||||
source_parsers = ({}, 'env'),
|
source_parsers = ({}, 'env'),
|
||||||
exclude_patterns = ([], 'env'),
|
exclude_patterns = ([], 'env'),
|
||||||
default_role = (None, 'env', [str]),
|
default_role = (None, 'env', string_classes),
|
||||||
add_function_parentheses = (True, 'env'),
|
add_function_parentheses = (True, 'env'),
|
||||||
add_module_names = (True, 'env'),
|
add_module_names = (True, 'env'),
|
||||||
trim_footnote_reference_space = (False, 'env'),
|
trim_footnote_reference_space = (False, 'env'),
|
||||||
show_authors = (False, 'env'),
|
show_authors = (False, 'env'),
|
||||||
pygments_style = (None, 'html', [str]),
|
pygments_style = (None, 'html', string_classes),
|
||||||
highlight_language = ('python', 'env'),
|
highlight_language = ('default', 'env'),
|
||||||
highlight_options = ({}, 'env'),
|
highlight_options = ({}, 'env'),
|
||||||
templates_path = ([], 'html'),
|
templates_path = ([], 'html'),
|
||||||
template_bridge = (None, 'html', [str]),
|
template_bridge = (None, 'html', string_classes),
|
||||||
keep_warnings = (False, 'env'),
|
keep_warnings = (False, 'env'),
|
||||||
modindex_common_prefix = ([], 'html'),
|
modindex_common_prefix = ([], 'html'),
|
||||||
rst_epilog = (None, 'env', [str]),
|
rst_epilog = (None, 'env', string_classes),
|
||||||
rst_prolog = (None, 'env', [str]),
|
rst_prolog = (None, 'env', string_classes),
|
||||||
trim_doctest_flags = (True, 'env'),
|
trim_doctest_flags = (True, 'env'),
|
||||||
primary_domain = ('py', 'env', [NoneType]),
|
primary_domain = ('py', 'env', [NoneType]),
|
||||||
needs_sphinx = (None, None, [str]),
|
needs_sphinx = (None, None, string_classes),
|
||||||
needs_extensions = ({}, None),
|
needs_extensions = ({}, None),
|
||||||
nitpicky = (False, 'env'),
|
nitpicky = (False, 'env'),
|
||||||
nitpick_ignore = ([], 'html'),
|
nitpick_ignore = ([], 'html'),
|
||||||
@ -92,17 +98,17 @@ class Config(object):
|
|||||||
html_theme_options = ({}, 'html'),
|
html_theme_options = ({}, 'html'),
|
||||||
html_title = (lambda self: l_('%s %s documentation') %
|
html_title = (lambda self: l_('%s %s documentation') %
|
||||||
(self.project, self.release),
|
(self.project, self.release),
|
||||||
'html', [str]),
|
'html', string_classes),
|
||||||
html_short_title = (lambda self: self.html_title, 'html'),
|
html_short_title = (lambda self: self.html_title, 'html'),
|
||||||
html_style = (None, 'html', [str]),
|
html_style = (None, 'html', string_classes),
|
||||||
html_logo = (None, 'html', [str]),
|
html_logo = (None, 'html', string_classes),
|
||||||
html_favicon = (None, 'html', [str]),
|
html_favicon = (None, 'html', string_classes),
|
||||||
html_static_path = ([], 'html'),
|
html_static_path = ([], 'html'),
|
||||||
html_extra_path = ([], 'html'),
|
html_extra_path = ([], 'html'),
|
||||||
# the real default is locale-dependent
|
# the real default is locale-dependent
|
||||||
html_last_updated_fmt = (None, 'html', [str]),
|
html_last_updated_fmt = (None, 'html', string_classes),
|
||||||
html_use_smartypants = (True, 'html'),
|
html_use_smartypants = (True, 'html'),
|
||||||
html_translator_class = (None, 'html', [str]),
|
html_translator_class = (None, 'html', string_classes),
|
||||||
html_sidebars = ({}, 'html'),
|
html_sidebars = ({}, 'html'),
|
||||||
html_additional_pages = ({}, 'html'),
|
html_additional_pages = ({}, 'html'),
|
||||||
html_use_modindex = (True, 'html'), # deprecated
|
html_use_modindex = (True, 'html'), # deprecated
|
||||||
@ -113,15 +119,15 @@ class Config(object):
|
|||||||
html_copy_source = (True, 'html'),
|
html_copy_source = (True, 'html'),
|
||||||
html_show_sourcelink = (True, 'html'),
|
html_show_sourcelink = (True, 'html'),
|
||||||
html_use_opensearch = ('', 'html'),
|
html_use_opensearch = ('', 'html'),
|
||||||
html_file_suffix = (None, 'html', [str]),
|
html_file_suffix = (None, 'html', string_classes),
|
||||||
html_link_suffix = (None, 'html', [str]),
|
html_link_suffix = (None, 'html', string_classes),
|
||||||
html_show_copyright = (True, 'html'),
|
html_show_copyright = (True, 'html'),
|
||||||
html_show_sphinx = (True, 'html'),
|
html_show_sphinx = (True, 'html'),
|
||||||
html_context = ({}, 'html'),
|
html_context = ({}, 'html'),
|
||||||
html_output_encoding = ('utf-8', 'html'),
|
html_output_encoding = ('utf-8', 'html'),
|
||||||
html_compact_lists = (True, 'html'),
|
html_compact_lists = (True, 'html'),
|
||||||
html_secnumber_suffix = ('. ', 'html'),
|
html_secnumber_suffix = ('. ', 'html'),
|
||||||
html_search_language = (None, 'html', [str]),
|
html_search_language = (None, 'html', string_classes),
|
||||||
html_search_options = ({}, 'html'),
|
html_search_options = ({}, 'html'),
|
||||||
html_search_scorer = ('', None),
|
html_search_scorer = ('', None),
|
||||||
html_scaled_image_link = (True, 'html'),
|
html_scaled_image_link = (True, 'html'),
|
||||||
@ -138,17 +144,17 @@ class Config(object):
|
|||||||
# Apple help options
|
# Apple help options
|
||||||
applehelp_bundle_name = (lambda self: make_filename(self.project),
|
applehelp_bundle_name = (lambda self: make_filename(self.project),
|
||||||
'applehelp'),
|
'applehelp'),
|
||||||
applehelp_bundle_id = (None, 'applehelp', [str]),
|
applehelp_bundle_id = (None, 'applehelp', string_classes),
|
||||||
applehelp_dev_region = ('en-us', 'applehelp'),
|
applehelp_dev_region = ('en-us', 'applehelp'),
|
||||||
applehelp_bundle_version = ('1', 'applehelp'),
|
applehelp_bundle_version = ('1', 'applehelp'),
|
||||||
applehelp_icon = (None, 'applehelp', [str]),
|
applehelp_icon = (None, 'applehelp', string_classes),
|
||||||
applehelp_kb_product = (lambda self: '%s-%s' %
|
applehelp_kb_product = (lambda self: '%s-%s' %
|
||||||
(make_filename(self.project), self.release),
|
(make_filename(self.project), self.release),
|
||||||
'applehelp'),
|
'applehelp'),
|
||||||
applehelp_kb_url = (None, 'applehelp', [str]),
|
applehelp_kb_url = (None, 'applehelp', string_classes),
|
||||||
applehelp_remote_url = (None, 'applehelp', [str]),
|
applehelp_remote_url = (None, 'applehelp', string_classes),
|
||||||
applehelp_index_anchors = (False, 'applehelp', [str]),
|
applehelp_index_anchors = (False, 'applehelp', string_classes),
|
||||||
applehelp_min_term_length = (None, 'applehelp', [str]),
|
applehelp_min_term_length = (None, 'applehelp', string_classes),
|
||||||
applehelp_stopwords = (lambda self: self.language or 'en', 'applehelp'),
|
applehelp_stopwords = (lambda self: self.language or 'en', 'applehelp'),
|
||||||
applehelp_locale = (lambda self: self.language or 'en', 'applehelp'),
|
applehelp_locale = (lambda self: self.language or 'en', 'applehelp'),
|
||||||
applehelp_title = (lambda self: self.project + ' Help', 'applehelp'),
|
applehelp_title = (lambda self: self.project + ' Help', 'applehelp'),
|
||||||
@ -169,9 +175,9 @@ class Config(object):
|
|||||||
epub_theme = ('epub', 'html'),
|
epub_theme = ('epub', 'html'),
|
||||||
epub_theme_options = ({}, 'html'),
|
epub_theme_options = ({}, 'html'),
|
||||||
epub_title = (lambda self: self.html_title, 'html'),
|
epub_title = (lambda self: self.html_title, 'html'),
|
||||||
epub3_description = ('', 'epub3', [str]),
|
epub3_description = ('', 'epub3', string_classes),
|
||||||
epub_author = ('unknown', 'html'),
|
epub_author = ('unknown', 'html'),
|
||||||
epub3_contributor = ('unknown', 'epub3', [str]),
|
epub3_contributor = ('unknown', 'epub3', string_classes),
|
||||||
epub_language = (lambda self: self.language or 'en', 'html'),
|
epub_language = (lambda self: self.language or 'en', 'html'),
|
||||||
epub_publisher = ('unknown', 'html'),
|
epub_publisher = ('unknown', 'html'),
|
||||||
epub_copyright = (lambda self: self.copyright, 'html'),
|
epub_copyright = (lambda self: self.copyright, 'html'),
|
||||||
@ -190,7 +196,7 @@ class Config(object):
|
|||||||
epub_max_image_width = (0, 'env'),
|
epub_max_image_width = (0, 'env'),
|
||||||
epub_show_urls = ('inline', 'html'),
|
epub_show_urls = ('inline', 'html'),
|
||||||
epub_use_index = (lambda self: self.html_use_index, 'html'),
|
epub_use_index = (lambda self: self.html_use_index, 'html'),
|
||||||
epub3_page_progression_direction = ('ltr', 'epub3', [str]),
|
epub3_page_progression_direction = ('ltr', 'epub3', string_classes),
|
||||||
|
|
||||||
# LaTeX options
|
# LaTeX options
|
||||||
latex_documents = (lambda self: [(self.master_doc,
|
latex_documents = (lambda self: [(self.master_doc,
|
||||||
@ -198,7 +204,7 @@ class Config(object):
|
|||||||
self.project,
|
self.project,
|
||||||
'', 'manual')],
|
'', 'manual')],
|
||||||
None),
|
None),
|
||||||
latex_logo = (None, None, [str]),
|
latex_logo = (None, None, string_classes),
|
||||||
latex_appendices = ([], None),
|
latex_appendices = ([], None),
|
||||||
latex_use_parts = (False, None),
|
latex_use_parts = (False, None),
|
||||||
latex_use_modindex = (True, None), # deprecated
|
latex_use_modindex = (True, None), # deprecated
|
||||||
@ -244,6 +250,7 @@ class Config(object):
|
|||||||
|
|
||||||
# linkcheck options
|
# linkcheck options
|
||||||
linkcheck_ignore = ([], None),
|
linkcheck_ignore = ([], None),
|
||||||
|
linkcheck_retries = (1, None),
|
||||||
linkcheck_timeout = (None, None, [int]),
|
linkcheck_timeout = (None, None, [int]),
|
||||||
linkcheck_workers = (5, None),
|
linkcheck_workers = (5, None),
|
||||||
linkcheck_anchors = (True, None),
|
linkcheck_anchors = (True, None),
|
||||||
|
@ -20,6 +20,7 @@ from sphinx.util.docfields import DocFieldTransformer
|
|||||||
# import and register directives
|
# import and register directives
|
||||||
from sphinx.directives.code import * # noqa
|
from sphinx.directives.code import * # noqa
|
||||||
from sphinx.directives.other import * # noqa
|
from sphinx.directives.other import * # noqa
|
||||||
|
from sphinx.directives.patches import * # noqa
|
||||||
|
|
||||||
|
|
||||||
# RE to strip backslash escapes
|
# RE to strip backslash escapes
|
||||||
|
33
sphinx/directives/patches.py
Normal file
33
sphinx/directives/patches.py
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
sphinx.directives.patches
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
|
||||||
|
:license: BSD, see LICENSE for details.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from docutils import nodes
|
||||||
|
from docutils.parsers.rst import directives
|
||||||
|
from docutils.parsers.rst.directives import images
|
||||||
|
|
||||||
|
|
||||||
|
class Figure(images.Figure):
|
||||||
|
"""The figure directive which applies `:name:` option to the figure node
|
||||||
|
instead of the image node.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
name = self.options.pop('name', None)
|
||||||
|
(figure_node,) = images.Figure.run(self)
|
||||||
|
if isinstance(figure_node, nodes.system_message):
|
||||||
|
return [figure_node]
|
||||||
|
|
||||||
|
if name:
|
||||||
|
self.options['name'] = name
|
||||||
|
self.add_name(figure_node)
|
||||||
|
|
||||||
|
return [figure_node]
|
||||||
|
|
||||||
|
|
||||||
|
directives.register_directive('figure', Figure)
|
@ -206,7 +206,7 @@ class CObject(ObjectDescription):
|
|||||||
indextext = self.get_index_text(name)
|
indextext = self.get_index_text(name)
|
||||||
if indextext:
|
if indextext:
|
||||||
self.indexnode['entries'].append(('single', indextext,
|
self.indexnode['entries'].append(('single', indextext,
|
||||||
targetname, ''))
|
targetname, '', None))
|
||||||
|
|
||||||
def before_content(self):
|
def before_content(self):
|
||||||
self.typename_set = False
|
self.typename_set = False
|
||||||
|
@ -3677,7 +3677,7 @@ class CPPObject(ObjectDescription):
|
|||||||
|
|
||||||
name = text_type(ast.symbol.get_full_nested_name()).lstrip(':')
|
name = text_type(ast.symbol.get_full_nested_name()).lstrip(':')
|
||||||
indexText = self.get_index_text(name)
|
indexText = self.get_index_text(name)
|
||||||
self.indexnode['entries'].append(('single', indexText, newestId, ''))
|
self.indexnode['entries'].append(('single', indexText, newestId, '', None))
|
||||||
|
|
||||||
if newestId not in self.state.document.ids:
|
if newestId not in self.state.document.ids:
|
||||||
# if the name is not unique, the first one will win
|
# if the name is not unique, the first one will win
|
||||||
|
@ -97,7 +97,7 @@ class JSObject(ObjectDescription):
|
|||||||
if indextext:
|
if indextext:
|
||||||
self.indexnode['entries'].append(('single', indextext,
|
self.indexnode['entries'].append(('single', indextext,
|
||||||
fullname.replace('$', '_S_'),
|
fullname.replace('$', '_S_'),
|
||||||
''))
|
'', None))
|
||||||
|
|
||||||
def get_index_text(self, objectname, name_obj):
|
def get_index_text(self, objectname, name_obj):
|
||||||
name, obj = name_obj
|
name, obj = name_obj
|
||||||
|
@ -257,7 +257,7 @@ class PyObject(ObjectDescription):
|
|||||||
indextext = self.get_index_text(modname, name_cls)
|
indextext = self.get_index_text(modname, name_cls)
|
||||||
if indextext:
|
if indextext:
|
||||||
self.indexnode['entries'].append(('single', indextext,
|
self.indexnode['entries'].append(('single', indextext,
|
||||||
fullname, ''))
|
fullname, '', None))
|
||||||
|
|
||||||
def before_content(self):
|
def before_content(self):
|
||||||
# needed for automatic qualification of members (reset in subclasses)
|
# needed for automatic qualification of members (reset in subclasses)
|
||||||
@ -462,7 +462,7 @@ class PyModule(Directive):
|
|||||||
ret.append(targetnode)
|
ret.append(targetnode)
|
||||||
indextext = _('%s (module)') % modname
|
indextext = _('%s (module)') % modname
|
||||||
inode = addnodes.index(entries=[('single', indextext,
|
inode = addnodes.index(entries=[('single', indextext,
|
||||||
'module-' + modname, '')])
|
'module-' + modname, '', None)])
|
||||||
ret.append(inode)
|
ret.append(inode)
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ class ReSTMarkup(ObjectDescription):
|
|||||||
indextext = self.get_index_text(self.objtype, name)
|
indextext = self.get_index_text(self.objtype, name)
|
||||||
if indextext:
|
if indextext:
|
||||||
self.indexnode['entries'].append(('single', indextext,
|
self.indexnode['entries'].append(('single', indextext,
|
||||||
targetname, ''))
|
targetname, '', None))
|
||||||
|
|
||||||
def get_index_text(self, objectname, name):
|
def get_index_text(self, objectname, name):
|
||||||
if self.objtype == 'directive':
|
if self.objtype == 'directive':
|
||||||
|
@ -23,7 +23,7 @@ from sphinx.roles import XRefRole
|
|||||||
from sphinx.locale import l_, _
|
from sphinx.locale import l_, _
|
||||||
from sphinx.domains import Domain, ObjType
|
from sphinx.domains import Domain, ObjType
|
||||||
from sphinx.directives import ObjectDescription
|
from sphinx.directives import ObjectDescription
|
||||||
from sphinx.util import ws_re, get_figtype
|
from sphinx.util import ws_re
|
||||||
from sphinx.util.nodes import clean_astext, make_refnode
|
from sphinx.util.nodes import clean_astext, make_refnode
|
||||||
from sphinx.util.compat import Directive
|
from sphinx.util.compat import Directive
|
||||||
|
|
||||||
@ -64,7 +64,7 @@ class GenericObject(ObjectDescription):
|
|||||||
indextype = 'single'
|
indextype = 'single'
|
||||||
indexentry = self.indextemplate % (name,)
|
indexentry = self.indextemplate % (name,)
|
||||||
self.indexnode['entries'].append((indextype, indexentry,
|
self.indexnode['entries'].append((indextype, indexentry,
|
||||||
targetname, ''))
|
targetname, '', None))
|
||||||
self.env.domaindata['std']['objects'][self.objtype, name] = \
|
self.env.domaindata['std']['objects'][self.objtype, name] = \
|
||||||
self.env.docname, targetname
|
self.env.docname, targetname
|
||||||
|
|
||||||
@ -85,8 +85,8 @@ class EnvVarXRefRole(XRefRole):
|
|||||||
tgtid = 'index-%s' % env.new_serialno('index')
|
tgtid = 'index-%s' % env.new_serialno('index')
|
||||||
indexnode = addnodes.index()
|
indexnode = addnodes.index()
|
||||||
indexnode['entries'] = [
|
indexnode['entries'] = [
|
||||||
('single', varname, tgtid, ''),
|
('single', varname, tgtid, '', None),
|
||||||
('single', _('environment variable; %s') % varname, tgtid, '')
|
('single', _('environment variable; %s') % varname, tgtid, '', None)
|
||||||
]
|
]
|
||||||
targetnode = nodes.target('', '', ids=[tgtid])
|
targetnode = nodes.target('', '', ids=[tgtid])
|
||||||
document.note_explicit_target(targetnode)
|
document.note_explicit_target(targetnode)
|
||||||
@ -121,7 +121,7 @@ class Target(Directive):
|
|||||||
indextype = indexentry[:colon].strip()
|
indextype = indexentry[:colon].strip()
|
||||||
indexentry = indexentry[colon+1:].strip()
|
indexentry = indexentry[colon+1:].strip()
|
||||||
inode = addnodes.index(entries=[(indextype, indexentry,
|
inode = addnodes.index(entries=[(indextype, indexentry,
|
||||||
targetname, '')])
|
targetname, '', None)])
|
||||||
ret.insert(0, inode)
|
ret.insert(0, inode)
|
||||||
name = self.name
|
name = self.name
|
||||||
if ':' in self.name:
|
if ':' in self.name:
|
||||||
@ -184,7 +184,7 @@ class Cmdoption(ObjectDescription):
|
|||||||
self.indexnode['entries'].append(
|
self.indexnode['entries'].append(
|
||||||
('pair', _('%scommand line option; %s') %
|
('pair', _('%scommand line option; %s') %
|
||||||
((currprogram and currprogram + ' ' or ''), sig),
|
((currprogram and currprogram + ' ' or ''), sig),
|
||||||
targetname, ''))
|
targetname, '', None))
|
||||||
|
|
||||||
|
|
||||||
class Program(Directive):
|
class Program(Directive):
|
||||||
@ -214,11 +214,23 @@ class OptionXRefRole(XRefRole):
|
|||||||
return title, target
|
return title, target
|
||||||
|
|
||||||
|
|
||||||
def make_termnodes_from_paragraph_node(env, node, new_id=None):
|
def split_term_classifiers(line):
|
||||||
|
# split line into a term and classifiers. if no classifier, None is used..
|
||||||
|
parts = re.split(' +: +', line) + [None]
|
||||||
|
return parts
|
||||||
|
|
||||||
|
|
||||||
|
def make_glossary_term(env, textnodes, index_key, source, lineno, new_id=None):
|
||||||
|
# get a text-only representation of the term and register it
|
||||||
|
# as a cross-reference target
|
||||||
|
term = nodes.term('', '', *textnodes)
|
||||||
|
term.source = source
|
||||||
|
term.line = lineno
|
||||||
|
|
||||||
gloss_entries = env.temp_data.setdefault('gloss_entries', set())
|
gloss_entries = env.temp_data.setdefault('gloss_entries', set())
|
||||||
objects = env.domaindata['std']['objects']
|
objects = env.domaindata['std']['objects']
|
||||||
|
|
||||||
termtext = node.astext()
|
termtext = term.astext()
|
||||||
if new_id is None:
|
if new_id is None:
|
||||||
new_id = nodes.make_id('term-' + termtext)
|
new_id = nodes.make_id('term-' + termtext)
|
||||||
if new_id in gloss_entries:
|
if new_id in gloss_entries:
|
||||||
@ -228,25 +240,12 @@ def make_termnodes_from_paragraph_node(env, node, new_id=None):
|
|||||||
|
|
||||||
# add an index entry too
|
# add an index entry too
|
||||||
indexnode = addnodes.index()
|
indexnode = addnodes.index()
|
||||||
indexnode['entries'] = [('single', termtext, new_id, 'main')]
|
indexnode['entries'] = [('single', termtext, new_id, 'main', index_key)]
|
||||||
new_termnodes = []
|
indexnode.source, indexnode.line = term.source, term.line
|
||||||
new_termnodes.append(indexnode)
|
term.append(indexnode)
|
||||||
new_termnodes.extend(node.children)
|
term['ids'].append(new_id)
|
||||||
new_termnodes.append(addnodes.termsep())
|
term['names'].append(new_id)
|
||||||
for termnode in new_termnodes:
|
|
||||||
termnode.source, termnode.line = node.source, node.line
|
|
||||||
|
|
||||||
return new_id, termtext, new_termnodes
|
|
||||||
|
|
||||||
|
|
||||||
def make_term_from_paragraph_node(termnodes, ids):
|
|
||||||
# make a single "term" node with all the terms, separated by termsep
|
|
||||||
# nodes (remove the dangling trailing separator)
|
|
||||||
term = nodes.term('', '', *termnodes[:-1])
|
|
||||||
term.source, term.line = termnodes[0].source, termnodes[0].line
|
|
||||||
term.rawsource = term.astext()
|
|
||||||
term['ids'].extend(ids)
|
|
||||||
term['names'].extend(ids)
|
|
||||||
return term
|
return term
|
||||||
|
|
||||||
|
|
||||||
@ -330,33 +329,28 @@ class Glossary(Directive):
|
|||||||
termtexts = []
|
termtexts = []
|
||||||
termnodes = []
|
termnodes = []
|
||||||
system_messages = []
|
system_messages = []
|
||||||
ids = []
|
|
||||||
for line, source, lineno in terms:
|
for line, source, lineno in terms:
|
||||||
|
parts = split_term_classifiers(line)
|
||||||
# parse the term with inline markup
|
# parse the term with inline markup
|
||||||
res = self.state.inline_text(line, lineno)
|
# classifiers (parts[1:]) will not be shown on doctree
|
||||||
system_messages.extend(res[1])
|
textnodes, sysmsg = self.state.inline_text(parts[0], lineno)
|
||||||
|
|
||||||
# get a text-only representation of the term and register it
|
# use first classifier as a index key
|
||||||
# as a cross-reference target
|
term = make_glossary_term(env, textnodes, parts[1], source, lineno)
|
||||||
tmp = nodes.paragraph('', '', *res[0])
|
term.rawsource = line
|
||||||
tmp.source = source
|
system_messages.extend(sysmsg)
|
||||||
tmp.line = lineno
|
termtexts.append(term.astext())
|
||||||
new_id, termtext, new_termnodes = \
|
termnodes.append(term)
|
||||||
make_termnodes_from_paragraph_node(env, tmp)
|
|
||||||
ids.append(new_id)
|
|
||||||
termtexts.append(termtext)
|
|
||||||
termnodes.extend(new_termnodes)
|
|
||||||
|
|
||||||
term = make_term_from_paragraph_node(termnodes, ids)
|
termnodes.extend(system_messages)
|
||||||
term += system_messages
|
|
||||||
|
|
||||||
defnode = nodes.definition()
|
defnode = nodes.definition()
|
||||||
if definition:
|
if definition:
|
||||||
self.state.nested_parse(definition, definition.items[0][1],
|
self.state.nested_parse(definition, definition.items[0][1],
|
||||||
defnode)
|
defnode)
|
||||||
|
termnodes.append(defnode)
|
||||||
items.append((termtexts,
|
items.append((termtexts,
|
||||||
nodes.definition_list_item('', term, defnode)))
|
nodes.definition_list_item('', *termnodes)))
|
||||||
|
|
||||||
if 'sorted' in self.options:
|
if 'sorted' in self.options:
|
||||||
items.sort(key=lambda x:
|
items.sort(key=lambda x:
|
||||||
@ -453,7 +447,7 @@ class StandardDomain(Domain):
|
|||||||
'productionlist': ProductionList,
|
'productionlist': ProductionList,
|
||||||
}
|
}
|
||||||
roles = {
|
roles = {
|
||||||
'option': OptionXRefRole(warn_dangling=True),
|
'option': OptionXRefRole(),
|
||||||
'envvar': EnvVarXRefRole(),
|
'envvar': EnvVarXRefRole(),
|
||||||
# links to tokens in grammar productions
|
# links to tokens in grammar productions
|
||||||
'token': XRefRole(),
|
'token': XRefRole(),
|
||||||
@ -491,7 +485,12 @@ class StandardDomain(Domain):
|
|||||||
'the label must precede a section header)',
|
'the label must precede a section header)',
|
||||||
'numref': 'undefined label: %(target)s',
|
'numref': 'undefined label: %(target)s',
|
||||||
'keyword': 'unknown keyword: %(target)s',
|
'keyword': 'unknown keyword: %(target)s',
|
||||||
'option': 'unknown option: %(target)s',
|
}
|
||||||
|
|
||||||
|
enumerable_nodes = { # node_class -> (figtype, title_getter)
|
||||||
|
nodes.figure: ('figure', None),
|
||||||
|
nodes.table: ('table', None),
|
||||||
|
nodes.container: ('code-block', None),
|
||||||
}
|
}
|
||||||
|
|
||||||
def clear_doc(self, docname):
|
def clear_doc(self, docname):
|
||||||
@ -543,33 +542,9 @@ class StandardDomain(Domain):
|
|||||||
anonlabels[name] = docname, labelid
|
anonlabels[name] = docname, labelid
|
||||||
if node.tagname == 'section':
|
if node.tagname == 'section':
|
||||||
sectname = clean_astext(node[0]) # node[0] == title node
|
sectname = clean_astext(node[0]) # node[0] == title node
|
||||||
elif node.tagname == 'figure':
|
elif self.is_enumerable_node(node):
|
||||||
for n in node:
|
sectname = self.get_numfig_title(node)
|
||||||
if n.tagname == 'caption':
|
if sectname is None:
|
||||||
sectname = clean_astext(n)
|
|
||||||
break
|
|
||||||
else:
|
|
||||||
continue
|
|
||||||
elif node.tagname == 'image' and node.parent.tagname == 'figure':
|
|
||||||
for n in node.parent:
|
|
||||||
if n.tagname == 'caption':
|
|
||||||
sectname = clean_astext(n)
|
|
||||||
break
|
|
||||||
else:
|
|
||||||
continue
|
|
||||||
elif node.tagname == 'table':
|
|
||||||
for n in node:
|
|
||||||
if n.tagname == 'title':
|
|
||||||
sectname = clean_astext(n)
|
|
||||||
break
|
|
||||||
else:
|
|
||||||
continue
|
|
||||||
elif node.tagname == 'container' and node.get('literal_block'):
|
|
||||||
for n in node:
|
|
||||||
if n.tagname == 'caption':
|
|
||||||
sectname = clean_astext(n)
|
|
||||||
break
|
|
||||||
else:
|
|
||||||
continue
|
continue
|
||||||
elif node.traverse(addnodes.toctree):
|
elif node.traverse(addnodes.toctree):
|
||||||
n = node.traverse(addnodes.toctree)[0]
|
n = node.traverse(addnodes.toctree)[0]
|
||||||
@ -634,10 +609,9 @@ class StandardDomain(Domain):
|
|||||||
lineno=node.line)
|
lineno=node.line)
|
||||||
return contnode
|
return contnode
|
||||||
|
|
||||||
try:
|
target_node = env.get_doctree(docname).ids.get(labelid)
|
||||||
target_node = env.get_doctree(docname).ids[labelid]
|
figtype = self.get_figtype(target_node)
|
||||||
figtype = get_figtype(target_node)
|
if figtype is None:
|
||||||
except:
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -747,3 +721,33 @@ class StandardDomain(Domain):
|
|||||||
def get_type_name(self, type, primary=False):
|
def get_type_name(self, type, primary=False):
|
||||||
# never prepend "Default"
|
# never prepend "Default"
|
||||||
return type.lname
|
return type.lname
|
||||||
|
|
||||||
|
def is_enumerable_node(self, node):
|
||||||
|
return node.__class__ in self.enumerable_nodes
|
||||||
|
|
||||||
|
def get_numfig_title(self, node):
|
||||||
|
"""Get the title of enumerable nodes to refer them using its title"""
|
||||||
|
if self.is_enumerable_node(node):
|
||||||
|
_, title_getter = self.enumerable_nodes.get(node.__class__, (None, None))
|
||||||
|
if title_getter:
|
||||||
|
return title_getter(node)
|
||||||
|
else:
|
||||||
|
for subnode in node:
|
||||||
|
if subnode.tagname in ('caption', 'title'):
|
||||||
|
return clean_astext(subnode)
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
def get_figtype(self, node):
|
||||||
|
"""Get figure type of nodes."""
|
||||||
|
def has_child(node, cls):
|
||||||
|
return any(isinstance(child, cls) for child in node)
|
||||||
|
|
||||||
|
if isinstance(node, nodes.container):
|
||||||
|
if node.get('literal_block') and has_child(node, nodes.literal_block):
|
||||||
|
return 'code-block'
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
figtype, _ = self.enumerable_nodes.get(node.__class__, (None, None))
|
||||||
|
return figtype
|
||||||
|
@ -16,32 +16,32 @@ import time
|
|||||||
import types
|
import types
|
||||||
import bisect
|
import bisect
|
||||||
import codecs
|
import codecs
|
||||||
import imghdr
|
|
||||||
import string
|
import string
|
||||||
import unicodedata
|
import unicodedata
|
||||||
from os import path
|
from os import path
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from itertools import groupby
|
from itertools import groupby
|
||||||
|
|
||||||
from six import iteritems, itervalues, text_type, class_types, string_types, next
|
from six import iteritems, itervalues, text_type, class_types, next
|
||||||
from six.moves import cPickle as pickle
|
from six.moves import cPickle as pickle
|
||||||
from docutils import nodes
|
from docutils import nodes
|
||||||
from docutils.io import FileInput, NullOutput
|
from docutils.io import NullOutput
|
||||||
from docutils.core import Publisher
|
from docutils.core import Publisher
|
||||||
from docutils.utils import Reporter, relative_path, get_source_line
|
from docutils.utils import Reporter, relative_path, get_source_line
|
||||||
from docutils.readers import standalone
|
|
||||||
from docutils.parsers.rst import roles, directives
|
from docutils.parsers.rst import roles, directives
|
||||||
from docutils.parsers.rst.languages import en as english
|
from docutils.parsers.rst.languages import en as english
|
||||||
from docutils.parsers.rst.directives.html import MetaBody
|
from docutils.parsers.rst.directives.html import MetaBody
|
||||||
from docutils.writers import UnfilteredWriter
|
|
||||||
from docutils.frontend import OptionParser
|
from docutils.frontend import OptionParser
|
||||||
|
|
||||||
from sphinx import addnodes
|
from sphinx import addnodes
|
||||||
|
from sphinx.io import SphinxStandaloneReader, SphinxDummyWriter, SphinxFileInput
|
||||||
from sphinx.util import url_re, get_matching_docs, docname_join, split_into, \
|
from sphinx.util import url_re, get_matching_docs, docname_join, split_into, \
|
||||||
FilenameUniqDict, get_figtype, import_object, split_index_msg, split_docinfo
|
FilenameUniqDict, split_index_msg
|
||||||
from sphinx.util.nodes import clean_astext, make_refnode, WarningStream, is_translatable
|
from sphinx.util.nodes import clean_astext, make_refnode, WarningStream, is_translatable
|
||||||
from sphinx.util.osutil import SEP, getcwd, fs_encoding
|
from sphinx.util.osutil import SEP, getcwd, fs_encoding, ensuredir
|
||||||
from sphinx.util.i18n import find_catalog_files
|
from sphinx.util.images import guess_mimetype
|
||||||
|
from sphinx.util.i18n import find_catalog_files, get_image_filename_for_language, \
|
||||||
|
search_image_for_language
|
||||||
from sphinx.util.console import bold, purple
|
from sphinx.util.console import bold, purple
|
||||||
from sphinx.util.matching import compile_matchers
|
from sphinx.util.matching import compile_matchers
|
||||||
from sphinx.util.parallel import ParallelTasks, parallel_available, make_chunks
|
from sphinx.util.parallel import ParallelTasks, parallel_available, make_chunks
|
||||||
@ -49,12 +49,7 @@ from sphinx.util.websupport import is_commentable
|
|||||||
from sphinx.errors import SphinxError, ExtensionError
|
from sphinx.errors import SphinxError, ExtensionError
|
||||||
from sphinx.locale import _
|
from sphinx.locale import _
|
||||||
from sphinx.versioning import add_uids, merge_doctrees
|
from sphinx.versioning import add_uids, merge_doctrees
|
||||||
from sphinx.transforms import (
|
from sphinx.transforms import SphinxContentsFilter
|
||||||
DefaultSubstitutions, MoveModuleTargets, ApplySourceWorkaround,
|
|
||||||
HandleCodeBlocks, AutoNumbering, SortIds, CitationReferences, Locale,
|
|
||||||
RemoveTranslatableInline, SphinxContentsFilter, ExtraTranslatableNodes,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
orig_role_function = roles.role
|
orig_role_function = roles.role
|
||||||
orig_directive_function = directives.directive
|
orig_directive_function = directives.directive
|
||||||
@ -97,77 +92,6 @@ class NoUri(Exception):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class SphinxStandaloneReader(standalone.Reader):
|
|
||||||
"""
|
|
||||||
Add our own transforms.
|
|
||||||
"""
|
|
||||||
transforms = [ApplySourceWorkaround, ExtraTranslatableNodes, Locale, CitationReferences,
|
|
||||||
DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks,
|
|
||||||
AutoNumbering, SortIds, RemoveTranslatableInline]
|
|
||||||
|
|
||||||
def __init__(self, app, parsers={}, *args, **kwargs):
|
|
||||||
standalone.Reader.__init__(self, *args, **kwargs)
|
|
||||||
self.parser_map = {}
|
|
||||||
for suffix, parser_class in parsers.items():
|
|
||||||
if isinstance(parser_class, string_types):
|
|
||||||
parser_class = import_object(parser_class, 'source parser')
|
|
||||||
parser = parser_class()
|
|
||||||
if hasattr(parser, 'set_application'):
|
|
||||||
parser.set_application(app)
|
|
||||||
self.parser_map[suffix] = parser
|
|
||||||
|
|
||||||
def read(self, source, parser, settings):
|
|
||||||
self.source = source
|
|
||||||
|
|
||||||
for suffix in self.parser_map:
|
|
||||||
if source.source_path.endswith(suffix):
|
|
||||||
self.parser = self.parser_map[suffix]
|
|
||||||
break
|
|
||||||
|
|
||||||
if not self.parser:
|
|
||||||
self.parser = parser
|
|
||||||
self.settings = settings
|
|
||||||
self.input = self.source.read()
|
|
||||||
self.parse()
|
|
||||||
return self.document
|
|
||||||
|
|
||||||
def get_transforms(self):
|
|
||||||
return standalone.Reader.get_transforms(self) + self.transforms
|
|
||||||
|
|
||||||
|
|
||||||
class SphinxDummyWriter(UnfilteredWriter):
|
|
||||||
supported = ('html',) # needed to keep "meta" nodes
|
|
||||||
|
|
||||||
def translate(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class SphinxFileInput(FileInput):
|
|
||||||
def __init__(self, app, env, *args, **kwds):
|
|
||||||
self.app = app
|
|
||||||
self.env = env
|
|
||||||
kwds['error_handler'] = 'sphinx' # py3: handle error on open.
|
|
||||||
FileInput.__init__(self, *args, **kwds)
|
|
||||||
|
|
||||||
def decode(self, data):
|
|
||||||
if isinstance(data, text_type): # py3: `data` already decoded.
|
|
||||||
return data
|
|
||||||
return data.decode(self.encoding, 'sphinx') # py2: decoding
|
|
||||||
|
|
||||||
def read(self):
|
|
||||||
data = FileInput.read(self)
|
|
||||||
if self.app:
|
|
||||||
arg = [data]
|
|
||||||
self.app.emit('source-read', self.env.docname, arg)
|
|
||||||
data = arg[0]
|
|
||||||
docinfo, data = split_docinfo(data)
|
|
||||||
if self.env.config.rst_epilog:
|
|
||||||
data = data + '\n' + self.env.config.rst_epilog + '\n'
|
|
||||||
if self.env.config.rst_prolog:
|
|
||||||
data = self.env.config.rst_prolog + '\n' + data
|
|
||||||
return docinfo + data
|
|
||||||
|
|
||||||
|
|
||||||
class BuildEnvironment:
|
class BuildEnvironment:
|
||||||
"""
|
"""
|
||||||
The environment in which the ReST files are translated.
|
The environment in which the ReST files are translated.
|
||||||
@ -178,7 +102,7 @@ class BuildEnvironment:
|
|||||||
# --------- ENVIRONMENT PERSISTENCE ----------------------------------------
|
# --------- ENVIRONMENT PERSISTENCE ----------------------------------------
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def frompickle(config, filename):
|
def frompickle(srcdir, config, filename):
|
||||||
picklefile = open(filename, 'rb')
|
picklefile = open(filename, 'rb')
|
||||||
try:
|
try:
|
||||||
env = pickle.load(picklefile)
|
env = pickle.load(picklefile)
|
||||||
@ -186,6 +110,8 @@ class BuildEnvironment:
|
|||||||
picklefile.close()
|
picklefile.close()
|
||||||
if env.version != ENV_VERSION:
|
if env.version != ENV_VERSION:
|
||||||
raise IOError('build environment version not current')
|
raise IOError('build environment version not current')
|
||||||
|
if env.srcdir != srcdir:
|
||||||
|
raise IOError('source directory has changed')
|
||||||
env.config.values = config.values
|
env.config.values = config.values
|
||||||
return env
|
return env
|
||||||
|
|
||||||
@ -859,9 +785,7 @@ class BuildEnvironment:
|
|||||||
# save the parsed doctree
|
# save the parsed doctree
|
||||||
doctree_filename = self.doc2path(docname, self.doctreedir,
|
doctree_filename = self.doc2path(docname, self.doctreedir,
|
||||||
'.doctree')
|
'.doctree')
|
||||||
dirname = path.dirname(doctree_filename)
|
ensuredir(path.dirname(doctree_filename))
|
||||||
if not path.isdir(dirname):
|
|
||||||
os.makedirs(dirname)
|
|
||||||
f = open(doctree_filename, 'wb')
|
f = open(doctree_filename, 'wb')
|
||||||
try:
|
try:
|
||||||
pickle.dump(doctree, f, pickle.HIGHEST_PROTOCOL)
|
pickle.dump(doctree, f, pickle.HIGHEST_PROTOCOL)
|
||||||
@ -961,6 +885,21 @@ class BuildEnvironment:
|
|||||||
|
|
||||||
def process_images(self, docname, doctree):
|
def process_images(self, docname, doctree):
|
||||||
"""Process and rewrite image URIs."""
|
"""Process and rewrite image URIs."""
|
||||||
|
def collect_candidates(imgpath, candidates):
|
||||||
|
globbed = {}
|
||||||
|
for filename in glob(imgpath):
|
||||||
|
new_imgpath = relative_path(path.join(self.srcdir, 'dummy'),
|
||||||
|
filename)
|
||||||
|
try:
|
||||||
|
mimetype = guess_mimetype(filename)
|
||||||
|
if mimetype not in candidates:
|
||||||
|
globbed.setdefault(mimetype, []).append(new_imgpath)
|
||||||
|
except (OSError, IOError) as err:
|
||||||
|
self.warn_node('image file %s not readable: %s' %
|
||||||
|
(filename, err), node)
|
||||||
|
for key, files in iteritems(globbed):
|
||||||
|
candidates[key] = sorted(files, key=len)[0] # select by similarity
|
||||||
|
|
||||||
for node in doctree.traverse(nodes.image):
|
for node in doctree.traverse(nodes.image):
|
||||||
# Map the mimetype to the corresponding image. The writer may
|
# Map the mimetype to the corresponding image. The writer may
|
||||||
# choose the best image from these candidates. The special key * is
|
# choose the best image from these candidates. The special key * is
|
||||||
@ -973,30 +912,26 @@ class BuildEnvironment:
|
|||||||
candidates['?'] = imguri
|
candidates['?'] = imguri
|
||||||
continue
|
continue
|
||||||
rel_imgpath, full_imgpath = self.relfn2path(imguri, docname)
|
rel_imgpath, full_imgpath = self.relfn2path(imguri, docname)
|
||||||
|
if self.config.language:
|
||||||
|
# substitute figures (ex. foo.png -> foo.en.png)
|
||||||
|
i18n_full_imgpath = search_image_for_language(full_imgpath, self)
|
||||||
|
if i18n_full_imgpath != full_imgpath:
|
||||||
|
full_imgpath = i18n_full_imgpath
|
||||||
|
rel_imgpath = relative_path(path.join(self.srcdir, 'dummy'),
|
||||||
|
i18n_full_imgpath)
|
||||||
# set imgpath as default URI
|
# set imgpath as default URI
|
||||||
node['uri'] = rel_imgpath
|
node['uri'] = rel_imgpath
|
||||||
if rel_imgpath.endswith(os.extsep + '*'):
|
if rel_imgpath.endswith(os.extsep + '*'):
|
||||||
for filename in glob(full_imgpath):
|
if self.config.language:
|
||||||
new_imgpath = relative_path(path.join(self.srcdir, 'dummy'),
|
# Search language-specific figures at first
|
||||||
filename)
|
i18n_imguri = get_image_filename_for_language(imguri, self)
|
||||||
if filename.lower().endswith('.pdf'):
|
_, full_i18n_imgpath = self.relfn2path(i18n_imguri, docname)
|
||||||
candidates['application/pdf'] = new_imgpath
|
collect_candidates(full_i18n_imgpath, candidates)
|
||||||
elif filename.lower().endswith('.svg'):
|
|
||||||
candidates['image/svg+xml'] = new_imgpath
|
collect_candidates(full_imgpath, candidates)
|
||||||
else:
|
|
||||||
try:
|
|
||||||
f = open(filename, 'rb')
|
|
||||||
try:
|
|
||||||
imgtype = imghdr.what(f)
|
|
||||||
finally:
|
|
||||||
f.close()
|
|
||||||
except (OSError, IOError) as err:
|
|
||||||
self.warn_node('image file %s not readable: %s' %
|
|
||||||
(filename, err), node)
|
|
||||||
if imgtype:
|
|
||||||
candidates['image/' + imgtype] = new_imgpath
|
|
||||||
else:
|
else:
|
||||||
candidates['*'] = rel_imgpath
|
candidates['*'] = rel_imgpath
|
||||||
|
|
||||||
# map image paths to unique image names (so that they can be put
|
# map image paths to unique image names (so that they can be put
|
||||||
# into a single directory)
|
# into a single directory)
|
||||||
for imgpath in itervalues(candidates):
|
for imgpath in itervalues(candidates):
|
||||||
@ -1128,7 +1063,7 @@ class BuildEnvironment:
|
|||||||
entries = self.indexentries[docname] = []
|
entries = self.indexentries[docname] = []
|
||||||
for node in document.traverse(addnodes.index):
|
for node in document.traverse(addnodes.index):
|
||||||
try:
|
try:
|
||||||
for type, value, tid, main in node['entries']:
|
for type, value, tid, main, index_key in node['entries']:
|
||||||
split_index_msg(type, value)
|
split_index_msg(type, value)
|
||||||
except ValueError as exc:
|
except ValueError as exc:
|
||||||
self.warn_node(exc, node)
|
self.warn_node(exc, node)
|
||||||
@ -1804,12 +1739,7 @@ class BuildEnvironment:
|
|||||||
fignumbers = self.toc_fignumbers[docname].setdefault(figtype, {})
|
fignumbers = self.toc_fignumbers[docname].setdefault(figtype, {})
|
||||||
figure_id = fignode['ids'][0]
|
figure_id = fignode['ids'][0]
|
||||||
|
|
||||||
if (isinstance(fignode, nodes.image) and
|
fignumbers[figure_id] = get_next_fignumber(figtype, secnum)
|
||||||
isinstance(fignode.parent, nodes.figure) and
|
|
||||||
fignode.parent['ids']):
|
|
||||||
fignumbers[figure_id] = fignumbers[fignode.parent['ids'][0]]
|
|
||||||
else:
|
|
||||||
fignumbers[figure_id] = get_next_fignumber(figtype, secnum)
|
|
||||||
|
|
||||||
def _walk_doctree(docname, doctree, secnum):
|
def _walk_doctree(docname, doctree, secnum):
|
||||||
for subnode in doctree.children:
|
for subnode in doctree.children:
|
||||||
@ -1830,7 +1760,7 @@ class BuildEnvironment:
|
|||||||
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
figtype = get_figtype(subnode)
|
figtype = self.domains['std'].get_figtype(subnode)
|
||||||
if figtype and subnode['ids']:
|
if figtype and subnode['ids']:
|
||||||
register_fignumber(docname, secnum, figtype, subnode)
|
register_fignumber(docname, secnum, figtype, subnode)
|
||||||
|
|
||||||
@ -1855,16 +1785,16 @@ class BuildEnvironment:
|
|||||||
"""Create the real index from the collected index entries."""
|
"""Create the real index from the collected index entries."""
|
||||||
new = {}
|
new = {}
|
||||||
|
|
||||||
def add_entry(word, subword, link=True, dic=new):
|
def add_entry(word, subword, link=True, dic=new, key=None):
|
||||||
# Force the word to be unicode if it's a ASCII bytestring.
|
# Force the word to be unicode if it's a ASCII bytestring.
|
||||||
# This will solve problems with unicode normalization later.
|
# This will solve problems with unicode normalization later.
|
||||||
# For instance the RFC role will add bytestrings at the moment
|
# For instance the RFC role will add bytestrings at the moment
|
||||||
word = text_type(word)
|
word = text_type(word)
|
||||||
entry = dic.get(word)
|
entry = dic.get(word)
|
||||||
if not entry:
|
if not entry:
|
||||||
dic[word] = entry = [[], {}]
|
dic[word] = entry = [[], {}, key]
|
||||||
if subword:
|
if subword:
|
||||||
add_entry(subword, '', link=link, dic=entry[1])
|
add_entry(subword, '', link=link, dic=entry[1], key=key)
|
||||||
elif link:
|
elif link:
|
||||||
try:
|
try:
|
||||||
uri = builder.get_relative_uri('genindex', fn) + '#' + tid
|
uri = builder.get_relative_uri('genindex', fn) + '#' + tid
|
||||||
@ -1876,7 +1806,7 @@ class BuildEnvironment:
|
|||||||
|
|
||||||
for fn, entries in iteritems(self.indexentries):
|
for fn, entries in iteritems(self.indexentries):
|
||||||
# new entry types must be listed in directives/other.py!
|
# new entry types must be listed in directives/other.py!
|
||||||
for type, value, tid, main in entries:
|
for type, value, tid, main, index_key in entries:
|
||||||
try:
|
try:
|
||||||
if type == 'single':
|
if type == 'single':
|
||||||
try:
|
try:
|
||||||
@ -1884,22 +1814,24 @@ class BuildEnvironment:
|
|||||||
except ValueError:
|
except ValueError:
|
||||||
entry, = split_into(1, 'single', value)
|
entry, = split_into(1, 'single', value)
|
||||||
subentry = ''
|
subentry = ''
|
||||||
add_entry(entry, subentry)
|
add_entry(entry, subentry, key=index_key)
|
||||||
elif type == 'pair':
|
elif type == 'pair':
|
||||||
first, second = split_into(2, 'pair', value)
|
first, second = split_into(2, 'pair', value)
|
||||||
add_entry(first, second)
|
add_entry(first, second, key=index_key)
|
||||||
add_entry(second, first)
|
add_entry(second, first, key=index_key)
|
||||||
elif type == 'triple':
|
elif type == 'triple':
|
||||||
first, second, third = split_into(3, 'triple', value)
|
first, second, third = split_into(3, 'triple', value)
|
||||||
add_entry(first, second+' '+third)
|
add_entry(first, second+' '+third, key=index_key)
|
||||||
add_entry(second, third+', '+first)
|
add_entry(second, third+', '+first, key=index_key)
|
||||||
add_entry(third, first+' '+second)
|
add_entry(third, first+' '+second, key=index_key)
|
||||||
elif type == 'see':
|
elif type == 'see':
|
||||||
first, second = split_into(2, 'see', value)
|
first, second = split_into(2, 'see', value)
|
||||||
add_entry(first, _('see %s') % second, link=False)
|
add_entry(first, _('see %s') % second, link=False,
|
||||||
|
key=index_key)
|
||||||
elif type == 'seealso':
|
elif type == 'seealso':
|
||||||
first, second = split_into(2, 'see', value)
|
first, second = split_into(2, 'see', value)
|
||||||
add_entry(first, _('see also %s') % second, link=False)
|
add_entry(first, _('see also %s') % second, link=False,
|
||||||
|
key=index_key)
|
||||||
else:
|
else:
|
||||||
self.warn(fn, 'unknown index entry type %r' % type)
|
self.warn(fn, 'unknown index entry type %r' % type)
|
||||||
except ValueError as err:
|
except ValueError as err:
|
||||||
@ -1928,7 +1860,7 @@ class BuildEnvironment:
|
|||||||
oldsubitems = None
|
oldsubitems = None
|
||||||
i = 0
|
i = 0
|
||||||
while i < len(newlist):
|
while i < len(newlist):
|
||||||
key, (targets, subitems) = newlist[i]
|
key, (targets, subitems, _key) = newlist[i]
|
||||||
# cannot move if it has subitems; structure gets too complex
|
# cannot move if it has subitems; structure gets too complex
|
||||||
if not subitems:
|
if not subitems:
|
||||||
m = _fixre.match(key)
|
m = _fixre.match(key)
|
||||||
@ -1936,7 +1868,7 @@ class BuildEnvironment:
|
|||||||
if oldkey == m.group(1):
|
if oldkey == m.group(1):
|
||||||
# prefixes match: add entry as subitem of the
|
# prefixes match: add entry as subitem of the
|
||||||
# previous entry
|
# previous entry
|
||||||
oldsubitems.setdefault(m.group(2), [[], {}])[0].\
|
oldsubitems.setdefault(m.group(2), [[], {}, _key])[0].\
|
||||||
extend(targets)
|
extend(targets)
|
||||||
del newlist[i]
|
del newlist[i]
|
||||||
continue
|
continue
|
||||||
@ -1950,14 +1882,17 @@ class BuildEnvironment:
|
|||||||
def keyfunc2(item, letters=string.ascii_uppercase + '_'):
|
def keyfunc2(item, letters=string.ascii_uppercase + '_'):
|
||||||
# hack: mutating the subitems dicts to a list in the keyfunc
|
# hack: mutating the subitems dicts to a list in the keyfunc
|
||||||
k, v = item
|
k, v = item
|
||||||
v[1] = sorted((si, se) for (si, (se, void)) in iteritems(v[1]))
|
v[1] = sorted((si, se) for (si, (se, void, void)) in iteritems(v[1]))
|
||||||
# now calculate the key
|
if v[2] is None:
|
||||||
letter = unicodedata.normalize('NFD', k[0])[0].upper()
|
# now calculate the key
|
||||||
if letter in letters:
|
letter = unicodedata.normalize('NFD', k[0])[0].upper()
|
||||||
return letter
|
if letter in letters:
|
||||||
|
return letter
|
||||||
|
else:
|
||||||
|
# get all other symbols under one heading
|
||||||
|
return _('Symbols')
|
||||||
else:
|
else:
|
||||||
# get all other symbols under one heading
|
return v[2]
|
||||||
return _('Symbols')
|
|
||||||
return [(key_, list(group))
|
return [(key_, list(group))
|
||||||
for (key_, group) in groupby(newlist, keyfunc2)]
|
for (key_, group) in groupby(newlist, keyfunc2)]
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ import inspect
|
|||||||
import traceback
|
import traceback
|
||||||
from types import FunctionType, BuiltinFunctionType, MethodType
|
from types import FunctionType, BuiltinFunctionType, MethodType
|
||||||
|
|
||||||
from six import iterkeys, iteritems, itervalues, text_type, class_types, \
|
from six import PY2, iterkeys, iteritems, itervalues, text_type, class_types, \
|
||||||
string_types, StringIO
|
string_types, StringIO
|
||||||
from docutils import nodes
|
from docutils import nodes
|
||||||
from docutils.utils import assemble_option_dict
|
from docutils.utils import assemble_option_dict
|
||||||
@ -532,6 +532,8 @@ class Documenter(object):
|
|||||||
else:
|
else:
|
||||||
errmsg += '; the following exception was raised:\n%s' % \
|
errmsg += '; the following exception was raised:\n%s' % \
|
||||||
traceback.format_exc()
|
traceback.format_exc()
|
||||||
|
if PY2:
|
||||||
|
errmsg = errmsg.decode('utf-8')
|
||||||
dbg(errmsg)
|
dbg(errmsg)
|
||||||
self.directive.warn(errmsg)
|
self.directive.warn(errmsg)
|
||||||
self.env.note_reread()
|
self.env.note_reread()
|
||||||
@ -1285,6 +1287,15 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
|
|||||||
(initdocstring == object.__init__.__doc__ or # for pypy
|
(initdocstring == object.__init__.__doc__ or # for pypy
|
||||||
initdocstring.strip() == object.__init__.__doc__)): # for !pypy
|
initdocstring.strip() == object.__init__.__doc__)): # for !pypy
|
||||||
initdocstring = None
|
initdocstring = None
|
||||||
|
if not initdocstring:
|
||||||
|
# try __new__
|
||||||
|
initdocstring = self.get_attr(
|
||||||
|
self.get_attr(self.object, '__new__', None), '__doc__')
|
||||||
|
# for new-style classes, no __new__ means default __new__
|
||||||
|
if (initdocstring is not None and
|
||||||
|
(initdocstring == object.__new__.__doc__ or # for pypy
|
||||||
|
initdocstring.strip() == object.__new__.__doc__)): # for !pypy
|
||||||
|
initdocstring = None
|
||||||
if initdocstring:
|
if initdocstring:
|
||||||
if content == 'init':
|
if content == 'init':
|
||||||
docstrings = [initdocstring]
|
docstrings = [initdocstring]
|
||||||
|
34
sphinx/ext/autosectionlabel.py
Normal file
34
sphinx/ext/autosectionlabel.py
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
sphinx.ext.autosectionlabel
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Allow reference sections by :ref: role using its title.
|
||||||
|
|
||||||
|
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
|
||||||
|
:license: BSD, see LICENSE for details.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from docutils import nodes
|
||||||
|
from sphinx.util.nodes import clean_astext
|
||||||
|
|
||||||
|
|
||||||
|
def register_sections_as_label(app, document):
|
||||||
|
labels = app.env.domaindata['std']['labels']
|
||||||
|
anonlabels = app.env.domaindata['std']['anonlabels']
|
||||||
|
for node in document.traverse(nodes.section):
|
||||||
|
name = nodes.fully_normalize_name(node[0].astext())
|
||||||
|
labelid = node['ids'][0]
|
||||||
|
docname = app.env.docname
|
||||||
|
sectname = clean_astext(node[0])
|
||||||
|
|
||||||
|
if name in labels:
|
||||||
|
app.env.warn_node('duplicate label %s, ' % name + 'other instance '
|
||||||
|
'in ' + app.env.doc2path(labels[name][0]), node)
|
||||||
|
|
||||||
|
anonlabels[name] = docname, labelid
|
||||||
|
labels[name] = docname, labelid, sectname
|
||||||
|
|
||||||
|
|
||||||
|
def setup(app):
|
||||||
|
app.connect('doctree-read', register_sections_as_label)
|
@ -25,6 +25,7 @@ from docutils.statemachine import ViewList
|
|||||||
import sphinx
|
import sphinx
|
||||||
from sphinx.errors import SphinxError
|
from sphinx.errors import SphinxError
|
||||||
from sphinx.locale import _
|
from sphinx.locale import _
|
||||||
|
from sphinx.util.i18n import search_image_for_language
|
||||||
from sphinx.util.osutil import ensuredir, ENOENT, EPIPE, EINVAL
|
from sphinx.util.osutil import ensuredir, ENOENT, EPIPE, EINVAL
|
||||||
from sphinx.util.compat import Directive
|
from sphinx.util.compat import Directive
|
||||||
|
|
||||||
@ -77,7 +78,8 @@ class Graphviz(Directive):
|
|||||||
'Graphviz directive cannot have both content and '
|
'Graphviz directive cannot have both content and '
|
||||||
'a filename argument', line=self.lineno)]
|
'a filename argument', line=self.lineno)]
|
||||||
env = self.state.document.settings.env
|
env = self.state.document.settings.env
|
||||||
rel_filename, filename = env.relfn2path(self.arguments[0])
|
argument = search_image_for_language(self.arguments[0], env)
|
||||||
|
rel_filename, filename = env.relfn2path(argument)
|
||||||
env.note_dependency(rel_filename)
|
env.note_dependency(rel_filename)
|
||||||
try:
|
try:
|
||||||
fp = codecs.open(filename, 'r', 'utf-8')
|
fp = codecs.open(filename, 'r', 'utf-8')
|
||||||
|
@ -365,7 +365,7 @@ def html_visit_inheritance_diagram(self, node):
|
|||||||
urls[child['reftitle']] = '#' + child.get('refid')
|
urls[child['reftitle']] = '#' + child.get('refid')
|
||||||
|
|
||||||
dotcode = graph.generate_dot(name, urls, env=self.builder.env)
|
dotcode = graph.generate_dot(name, urls, env=self.builder.env)
|
||||||
render_dot_html(self, node, dotcode, [], 'inheritance', 'inheritance',
|
render_dot_html(self, node, dotcode, {}, 'inheritance', 'inheritance',
|
||||||
alt='Inheritance diagram of ' + node['content'])
|
alt='Inheritance diagram of ' + node['content'])
|
||||||
raise nodes.SkipNode
|
raise nodes.SkipNode
|
||||||
|
|
||||||
@ -381,7 +381,7 @@ def latex_visit_inheritance_diagram(self, node):
|
|||||||
|
|
||||||
dotcode = graph.generate_dot(name, env=self.builder.env,
|
dotcode = graph.generate_dot(name, env=self.builder.env,
|
||||||
graph_attrs={'size': '"6.0,6.0"'})
|
graph_attrs={'size': '"6.0,6.0"'})
|
||||||
render_dot_latex(self, node, dotcode, [], 'inheritance')
|
render_dot_latex(self, node, dotcode, {}, 'inheritance')
|
||||||
raise nodes.SkipNode
|
raise nodes.SkipNode
|
||||||
|
|
||||||
|
|
||||||
@ -396,7 +396,7 @@ def texinfo_visit_inheritance_diagram(self, node):
|
|||||||
|
|
||||||
dotcode = graph.generate_dot(name, env=self.builder.env,
|
dotcode = graph.generate_dot(name, env=self.builder.env,
|
||||||
graph_attrs={'size': '"6.0,6.0"'})
|
graph_attrs={'size': '"6.0,6.0"'})
|
||||||
render_dot_texinfo(self, node, dotcode, [], 'inheritance')
|
render_dot_texinfo(self, node, dotcode, {}, 'inheritance')
|
||||||
raise nodes.SkipNode
|
raise nodes.SkipNode
|
||||||
|
|
||||||
|
|
||||||
|
@ -214,6 +214,11 @@ def number_equations(app, doctree, docname):
|
|||||||
node[0] = nodes.Text(num, num)
|
node[0] = nodes.Text(num, num)
|
||||||
|
|
||||||
|
|
||||||
|
def setup_amsfont(app):
|
||||||
|
# use amsfonts if users do not configure latex_elements['amsfonts']
|
||||||
|
app.config.latex_elements.setdefault('amsfonts', r'\usepackage{amsfonts}')
|
||||||
|
|
||||||
|
|
||||||
def setup_math(app, htmlinlinevisitors, htmldisplayvisitors):
|
def setup_math(app, htmlinlinevisitors, htmldisplayvisitors):
|
||||||
app.add_config_value('math_number_all', False, 'html')
|
app.add_config_value('math_number_all', False, 'html')
|
||||||
app.add_node(math, override=True,
|
app.add_node(math, override=True,
|
||||||
@ -238,4 +243,4 @@ def setup_math(app, htmlinlinevisitors, htmldisplayvisitors):
|
|||||||
app.add_role('eq', eq_role)
|
app.add_role('eq', eq_role)
|
||||||
app.add_directive('math', MathDirective)
|
app.add_directive('math', MathDirective)
|
||||||
app.connect('doctree-resolved', number_equations)
|
app.connect('doctree-resolved', number_equations)
|
||||||
app.add_latex_package('amsfonts')
|
app.connect('builder-inited', setup_amsfont)
|
||||||
|
@ -35,21 +35,24 @@ def html_visit_displaymath(self, node):
|
|||||||
self.body.append('</div>')
|
self.body.append('</div>')
|
||||||
raise nodes.SkipNode
|
raise nodes.SkipNode
|
||||||
|
|
||||||
|
# necessary to e.g. set the id property correctly
|
||||||
|
if node['number']:
|
||||||
|
self.body.append('<span class="eqno">(%s)</span>' % node['number'])
|
||||||
|
self.body.append(self.builder.config.mathjax_display[0])
|
||||||
parts = [prt for prt in node['latex'].split('\n\n') if prt.strip()]
|
parts = [prt for prt in node['latex'].split('\n\n') if prt.strip()]
|
||||||
|
if len(parts) > 1: # Add alignment if there are more than 1 equation
|
||||||
|
self.body.append(r' \begin{align}\begin{aligned}')
|
||||||
for i, part in enumerate(parts):
|
for i, part in enumerate(parts):
|
||||||
part = self.encode(part)
|
part = self.encode(part)
|
||||||
if i == 0:
|
if r'\\' in part:
|
||||||
# necessary to e.g. set the id property correctly
|
self.body.append(r'\begin{split}' + part + r'\end{split}')
|
||||||
if node['number']:
|
|
||||||
self.body.append('<span class="eqno">(%s)</span>' %
|
|
||||||
node['number'])
|
|
||||||
if '&' in part or '\\\\' in part:
|
|
||||||
self.body.append(self.builder.config.mathjax_display[0] +
|
|
||||||
'\\begin{split}' + part + '\\end{split}' +
|
|
||||||
self.builder.config.mathjax_display[1])
|
|
||||||
else:
|
else:
|
||||||
self.body.append(self.builder.config.mathjax_display[0] + part +
|
self.body.append(part)
|
||||||
self.builder.config.mathjax_display[1])
|
if i < len(parts) - 1: # append new line if not the last equation
|
||||||
|
self.body.append(r'\\')
|
||||||
|
if len(parts) > 1: # Add alignment if there are more than 1 equation
|
||||||
|
self.body.append(r'\end{aligned}\end{align} ')
|
||||||
|
self.body.append(self.builder.config.mathjax_display[1])
|
||||||
self.body.append('</div>\n')
|
self.body.append('</div>\n')
|
||||||
raise nodes.SkipNode
|
raise nodes.SkipNode
|
||||||
|
|
||||||
|
@ -139,7 +139,11 @@ def collect_pages(app):
|
|||||||
# construct a page name for the highlighted source
|
# construct a page name for the highlighted source
|
||||||
pagename = '_modules/' + modname.replace('.', '/')
|
pagename = '_modules/' + modname.replace('.', '/')
|
||||||
# highlight the source using the builder's highlighter
|
# highlight the source using the builder's highlighter
|
||||||
highlighted = highlighter.highlight_block(code, 'python', linenos=False)
|
if env.config.highlight_language == 'python3':
|
||||||
|
lexer = 'python3'
|
||||||
|
else:
|
||||||
|
lexer = 'python'
|
||||||
|
highlighted = highlighter.highlight_block(code, lexer, linenos=False)
|
||||||
# split the code into lines
|
# split the code into lines
|
||||||
lines = highlighted.splitlines()
|
lines = highlighted.splitlines()
|
||||||
# split off wrap markup from the first line of the actual code
|
# split off wrap markup from the first line of the actual code
|
||||||
|
@ -9,24 +9,15 @@
|
|||||||
:license: BSD, see LICENSE for details.
|
:license: BSD, see LICENSE for details.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import re
|
from six import text_type
|
||||||
import textwrap
|
|
||||||
|
|
||||||
try:
|
|
||||||
import parser
|
|
||||||
except ImportError:
|
|
||||||
# parser is not available on Jython
|
|
||||||
parser = None
|
|
||||||
|
|
||||||
from six import PY2, text_type
|
|
||||||
|
|
||||||
from sphinx.util.pycompat import htmlescape
|
from sphinx.util.pycompat import htmlescape
|
||||||
from sphinx.util.texescape import tex_hl_escape_map_new
|
from sphinx.util.texescape import tex_hl_escape_map_new
|
||||||
from sphinx.ext import doctest
|
from sphinx.ext import doctest
|
||||||
|
|
||||||
from pygments import highlight
|
from pygments import highlight
|
||||||
from pygments.lexers import PythonLexer, PythonConsoleLexer, CLexer, \
|
from pygments.lexers import PythonLexer, Python3Lexer, PythonConsoleLexer, \
|
||||||
TextLexer, RstLexer
|
CLexer, TextLexer, RstLexer
|
||||||
from pygments.lexers import get_lexer_by_name, guess_lexer
|
from pygments.lexers import get_lexer_by_name, guess_lexer
|
||||||
from pygments.formatters import HtmlFormatter, LatexFormatter
|
from pygments.formatters import HtmlFormatter, LatexFormatter
|
||||||
from pygments.filters import ErrorToken
|
from pygments.filters import ErrorToken
|
||||||
@ -37,6 +28,7 @@ from sphinx.pygments_styles import SphinxStyle, NoneStyle
|
|||||||
lexers = dict(
|
lexers = dict(
|
||||||
none = TextLexer(stripnl=False),
|
none = TextLexer(stripnl=False),
|
||||||
python = PythonLexer(stripnl=False),
|
python = PythonLexer(stripnl=False),
|
||||||
|
python3 = Python3Lexer(stripnl=False),
|
||||||
pycon = PythonConsoleLexer(stripnl=False),
|
pycon = PythonConsoleLexer(stripnl=False),
|
||||||
pycon3 = PythonConsoleLexer(python3=True, stripnl=False),
|
pycon3 = PythonConsoleLexer(python3=True, stripnl=False),
|
||||||
rest = RstLexer(stripnl=False),
|
rest = RstLexer(stripnl=False),
|
||||||
@ -99,41 +91,6 @@ class PygmentsBridge(object):
|
|||||||
return '\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n' + \
|
return '\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n' + \
|
||||||
source + '\\end{Verbatim}\n'
|
source + '\\end{Verbatim}\n'
|
||||||
|
|
||||||
def try_parse(self, src):
|
|
||||||
# Make sure it ends in a newline
|
|
||||||
src += '\n'
|
|
||||||
|
|
||||||
# Ignore consistent indentation.
|
|
||||||
if src.lstrip('\n').startswith(' '):
|
|
||||||
src = textwrap.dedent(src)
|
|
||||||
|
|
||||||
# Replace "..." by a mark which is also a valid python expression
|
|
||||||
# (Note, the highlighter gets the original source, this is only done
|
|
||||||
# to allow "..." in code and still highlight it as Python code.)
|
|
||||||
mark = "__highlighting__ellipsis__"
|
|
||||||
src = src.replace("...", mark)
|
|
||||||
|
|
||||||
# lines beginning with "..." are probably placeholders for suite
|
|
||||||
src = re.sub(r"(?m)^(\s*)" + mark + "(.)", r"\1" + mark + r"# \2", src)
|
|
||||||
|
|
||||||
if PY2 and isinstance(src, text_type):
|
|
||||||
# Non-ASCII chars will only occur in string literals
|
|
||||||
# and comments. If we wanted to give them to the parser
|
|
||||||
# correctly, we'd have to find out the correct source
|
|
||||||
# encoding. Since it may not even be given in a snippet,
|
|
||||||
# just replace all non-ASCII characters.
|
|
||||||
src = src.encode('ascii', 'replace')
|
|
||||||
|
|
||||||
if parser is None:
|
|
||||||
return True
|
|
||||||
|
|
||||||
try:
|
|
||||||
parser.suite(src)
|
|
||||||
except (SyntaxError, UnicodeEncodeError):
|
|
||||||
return False
|
|
||||||
else:
|
|
||||||
return True
|
|
||||||
|
|
||||||
def highlight_block(self, source, lang, opts=None, warn=None, force=False, **kwargs):
|
def highlight_block(self, source, lang, opts=None, warn=None, force=False, **kwargs):
|
||||||
if not isinstance(source, text_type):
|
if not isinstance(source, text_type):
|
||||||
source = source.decode()
|
source = source.decode()
|
||||||
@ -143,17 +100,13 @@ class PygmentsBridge(object):
|
|||||||
if source.startswith('>>>'):
|
if source.startswith('>>>'):
|
||||||
# interactive session
|
# interactive session
|
||||||
lexer = lexers['pycon']
|
lexer = lexers['pycon']
|
||||||
elif not force:
|
|
||||||
# maybe Python -- try parsing it
|
|
||||||
if self.try_parse(source):
|
|
||||||
lexer = lexers['python']
|
|
||||||
else:
|
|
||||||
lexer = lexers['none']
|
|
||||||
else:
|
else:
|
||||||
lexer = lexers['python']
|
lexer = lexers['python']
|
||||||
elif lang in ('python3', 'py3') and source.startswith('>>>'):
|
elif lang in ('py3', 'python3', 'default'):
|
||||||
# for py3, recognize interactive sessions, but do not try parsing...
|
if source.startswith('>>>'):
|
||||||
lexer = lexers['pycon3']
|
lexer = lexers['pycon3']
|
||||||
|
else:
|
||||||
|
lexer = lexers['python3']
|
||||||
elif lang == 'guess':
|
elif lang == 'guess':
|
||||||
try:
|
try:
|
||||||
lexer = guess_lexer(source)
|
lexer = guess_lexer(source)
|
||||||
@ -186,8 +139,11 @@ class PygmentsBridge(object):
|
|||||||
except ErrorToken as exc:
|
except ErrorToken as exc:
|
||||||
# this is most probably not the selected language,
|
# this is most probably not the selected language,
|
||||||
# so let it pass unhighlighted
|
# so let it pass unhighlighted
|
||||||
if warn:
|
if lang == 'default':
|
||||||
warn('Could not parse literal_block as "%s". highlighting skipped.' % lang)
|
pass # automatic highlighting failed.
|
||||||
|
elif warn:
|
||||||
|
warn('Could not lex literal_block as "%s". '
|
||||||
|
'Highlighting skipped.' % lang)
|
||||||
else:
|
else:
|
||||||
raise exc
|
raise exc
|
||||||
hlsource = highlight(source, lexers['none'], formatter)
|
hlsource = highlight(source, lexers['none'], formatter)
|
||||||
|
125
sphinx/io.py
Normal file
125
sphinx/io.py
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
sphinx.io
|
||||||
|
~~~~~~~~~
|
||||||
|
|
||||||
|
Input/Output files
|
||||||
|
|
||||||
|
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
|
||||||
|
:license: BSD, see LICENSE for details.
|
||||||
|
"""
|
||||||
|
from docutils.io import FileInput
|
||||||
|
from docutils.readers import standalone
|
||||||
|
from docutils.writers import UnfilteredWriter
|
||||||
|
from six import string_types, text_type
|
||||||
|
|
||||||
|
from sphinx.transforms import ApplySourceWorkaround, ExtraTranslatableNodes, Locale, \
|
||||||
|
CitationReferences, DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks, \
|
||||||
|
AutoNumbering, SortIds, RemoveTranslatableInline
|
||||||
|
from sphinx.util import import_object, split_docinfo
|
||||||
|
|
||||||
|
|
||||||
|
class SphinxBaseReader(standalone.Reader):
|
||||||
|
"""
|
||||||
|
Add our source parsers
|
||||||
|
"""
|
||||||
|
def __init__(self, app, parsers={}, *args, **kwargs):
|
||||||
|
standalone.Reader.__init__(self, *args, **kwargs)
|
||||||
|
self.parser_map = {}
|
||||||
|
for suffix, parser_class in parsers.items():
|
||||||
|
if isinstance(parser_class, string_types):
|
||||||
|
parser_class = import_object(parser_class, 'source parser')
|
||||||
|
parser = parser_class()
|
||||||
|
if hasattr(parser, 'set_application'):
|
||||||
|
parser.set_application(app)
|
||||||
|
self.parser_map[suffix] = parser
|
||||||
|
|
||||||
|
def read(self, source, parser, settings):
|
||||||
|
self.source = source
|
||||||
|
|
||||||
|
for suffix in self.parser_map:
|
||||||
|
if source.source_path.endswith(suffix):
|
||||||
|
self.parser = self.parser_map[suffix]
|
||||||
|
break
|
||||||
|
|
||||||
|
if not self.parser:
|
||||||
|
self.parser = parser
|
||||||
|
self.settings = settings
|
||||||
|
self.input = self.source.read()
|
||||||
|
self.parse()
|
||||||
|
return self.document
|
||||||
|
|
||||||
|
def get_transforms(self):
|
||||||
|
return standalone.Reader.get_transforms(self) + self.transforms
|
||||||
|
|
||||||
|
|
||||||
|
class SphinxStandaloneReader(SphinxBaseReader):
|
||||||
|
"""
|
||||||
|
Add our own transforms.
|
||||||
|
"""
|
||||||
|
transforms = [ApplySourceWorkaround, ExtraTranslatableNodes, Locale, CitationReferences,
|
||||||
|
DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks,
|
||||||
|
AutoNumbering, SortIds, RemoveTranslatableInline]
|
||||||
|
|
||||||
|
|
||||||
|
class SphinxI18nReader(SphinxBaseReader):
|
||||||
|
"""
|
||||||
|
Replacer for document.reporter.get_source_and_line method.
|
||||||
|
|
||||||
|
reST text lines for translation do not have the original source line number.
|
||||||
|
This class provides the correct line numbers when reporting.
|
||||||
|
"""
|
||||||
|
|
||||||
|
transforms = [ApplySourceWorkaround, ExtraTranslatableNodes, CitationReferences,
|
||||||
|
DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks,
|
||||||
|
AutoNumbering, SortIds, RemoveTranslatableInline]
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
SphinxBaseReader.__init__(self, *args, **kwargs)
|
||||||
|
self.lineno = None
|
||||||
|
|
||||||
|
def set_lineno_for_reporter(self, lineno):
|
||||||
|
self.lineno = lineno
|
||||||
|
|
||||||
|
def new_document(self):
|
||||||
|
document = SphinxBaseReader.new_document(self)
|
||||||
|
reporter = document.reporter
|
||||||
|
|
||||||
|
def get_source_and_line(lineno=None):
|
||||||
|
return reporter.source, self.lineno
|
||||||
|
|
||||||
|
reporter.get_source_and_line = get_source_and_line
|
||||||
|
return document
|
||||||
|
|
||||||
|
|
||||||
|
class SphinxDummyWriter(UnfilteredWriter):
|
||||||
|
supported = ('html',) # needed to keep "meta" nodes
|
||||||
|
|
||||||
|
def translate(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class SphinxFileInput(FileInput):
|
||||||
|
def __init__(self, app, env, *args, **kwds):
|
||||||
|
self.app = app
|
||||||
|
self.env = env
|
||||||
|
kwds['error_handler'] = 'sphinx' # py3: handle error on open.
|
||||||
|
FileInput.__init__(self, *args, **kwds)
|
||||||
|
|
||||||
|
def decode(self, data):
|
||||||
|
if isinstance(data, text_type): # py3: `data` already decoded.
|
||||||
|
return data
|
||||||
|
return data.decode(self.encoding, 'sphinx') # py2: decoding
|
||||||
|
|
||||||
|
def read(self):
|
||||||
|
data = FileInput.read(self)
|
||||||
|
if self.app:
|
||||||
|
arg = [data]
|
||||||
|
self.app.emit('source-read', self.env.docname, arg)
|
||||||
|
data = arg[0]
|
||||||
|
docinfo, data = split_docinfo(data)
|
||||||
|
if self.env.config.rst_epilog:
|
||||||
|
data = data + '\n' + self.env.config.rst_epilog + '\n'
|
||||||
|
if self.env.config.rst_prolog:
|
||||||
|
data = self.env.config.rst_prolog + '\n' + data
|
||||||
|
return docinfo + data
|
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -1,55 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Bengali translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Bengali (http://www.transifex.com/projects/p/sphinx-1/language/bn/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: bn\n"
|
"Language: bn\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Bengali "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/bn/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -58,11 +58,10 @@ msgstr ""
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s"
|
msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%B %d, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -72,64 +71,63 @@ msgstr "বিল্টইন সমূহ"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "মডিউল লেভেল"
|
msgstr "মডিউল লেভেল"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%b %d, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "সাধারণ ইনডেক্স"
|
msgstr "সাধারণ ইনডেক্স"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "ইনডেক্স"
|
msgstr "ইনডেক্স"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "পরবর্তী"
|
msgstr "পরবর্তী"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "পূর্ববর্তী"
|
msgstr "পূর্ববর্তী"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr "(-"
|
msgstr "(-"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "অনুচ্ছেদ লেখক:"
|
msgstr "অনুচ্ছেদ লেখক:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "মডিউল লেখক:"
|
msgstr "মডিউল লেখক:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "লেখক:"
|
msgstr "লেখক:"
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "প্যারামিটার"
|
msgstr "প্যারামিটার"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "রিটার্নস"
|
msgstr "রিটার্নস"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "রিটার্ন টাইপ"
|
msgstr "রিটার্ন টাইপ"
|
||||||
|
|
||||||
@ -158,12 +156,12 @@ msgstr "%s (C টাইপ)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C ভ্যারিয়েবল)"
|
msgstr "%s (C ভ্যারিয়েবল)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "ফাংশন"
|
msgstr "ফাংশন"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -171,7 +169,7 @@ msgstr ""
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -179,59 +177,64 @@ msgstr ""
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "প্যারামিটার"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++ টাইপ)"
|
msgstr "%s (C++ টাইপ)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++ মেম্বার)"
|
msgstr "%s (C++ মেম্বার)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++ ফাংশন)"
|
msgstr "%s (C++ ফাংশন)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++ ক্লাসে)"
|
msgstr "%s (C++ ক্লাসে)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "ক্লাস"
|
msgstr "ক্লাস"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (বিল্ট-ইন ফাংশন)"
|
msgstr "%s() (বিল্ট-ইন ফাংশন)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (%s মেথড)"
|
msgstr "%s() (%s মেথড)"
|
||||||
@ -246,7 +249,7 @@ msgstr "%s() (ক্লাসে)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (%s এ্যট্রিবিউট)"
|
msgstr "%s (%s এ্যট্রিবিউট)"
|
||||||
@ -255,116 +258,116 @@ msgstr "%s (%s এ্যট্রিবিউট)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "ডাটা"
|
msgstr "ডাটা"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "এ্যট্রিবিউট"
|
msgstr "এ্যট্রিবিউট"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "রেইজেস"
|
msgstr "রেইজেস"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (%s মডিউলে)"
|
msgstr "%s() (%s মডিউলে)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)"
|
msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (%s মডিউলে)"
|
msgstr "%s (%s মডিউলে)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (বিল্ট-ইন ক্লাস)"
|
msgstr "%s (বিল্ট-ইন ক্লাস)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (%s ক্লাসে)"
|
msgstr "%s (%s ক্লাসে)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s (%s.%s মেথড)"
|
msgstr "%s (%s.%s মেথড)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s (%s.%s স্ট্যাটিক মেথড)"
|
msgstr "%s (%s.%s স্ট্যাটিক মেথড)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (%s স্ট্যাটিক মেথড)"
|
msgstr "%s() (%s স্ট্যাটিক মেথড)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (%s.%s ক্লাস মেথড)"
|
msgstr "%s() (%s.%s ক্লাস মেথড)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (%s ক্লাস মেথড)"
|
msgstr "%s() (%s ক্লাস মেথড)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (%s.%s এ্যট্রিবিউট)"
|
msgstr "%s (%s.%s এ্যট্রিবিউট)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (মডিউল)"
|
msgstr "%s (মডিউল)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "মডিউল সমূহ"
|
msgstr "মডিউল সমূহ"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "ডেপ্রিকেটেড"
|
msgstr "ডেপ্রিকেটেড"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "এক্সেপশন"
|
msgstr "এক্সেপশন"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "মেথড"
|
msgstr "মেথড"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "ক্লাস মেথড"
|
msgstr "ক্লাস মেথড"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "স্ট্যাটিক মেথড"
|
msgstr "স্ট্যাটিক মেথড"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "মডিউল"
|
msgstr "মডিউল"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -396,64 +399,64 @@ msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%sকমান্ড লাইন অপশন; %s"
|
msgstr "%sকমান্ড লাইন অপশন; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "শব্দকোষ"
|
msgstr "শব্দকোষ"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "ব্যকরণ টোকেন"
|
msgstr "ব্যকরণ টোকেন"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল"
|
msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "প্রোগ্রাম অপশন"
|
msgstr "প্রোগ্রাম অপশন"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "ইনডেক্স"
|
msgstr "ইনডেক্স"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "মডিউল ইনডেক্স"
|
msgstr "মডিউল ইনডেক্স"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "অনুসন্ধান পাতা"
|
msgstr "অনুসন্ধান পাতা"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr "বেস: %s"
|
msgstr "বেস: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr ":class:`%s` এর উপনাম"
|
msgstr ":class:`%s` এর উপনাম"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -462,112 +465,116 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "অসমাপ্ত কাজ"
|
msgstr "অসমাপ্ত কাজ"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
msgid "<<original entry>>"
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "দৃষ্টি আকর্ষণ"
|
msgstr "দৃষ্টি আকর্ষণ"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "সতর্কীকরণ"
|
msgstr "সতর্কীকরণ"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "বিপজ্জনক"
|
msgstr "বিপজ্জনক"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "ভুল (এরর)"
|
msgstr "ভুল (এরর)"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "আভাস"
|
msgstr "আভাস"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "গুরুত্বপূর্ণ"
|
msgstr "গুরুত্বপূর্ণ"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "নোট"
|
msgstr "নোট"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "আরও দেখুন"
|
msgstr "আরও দেখুন"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "পরামর্শ"
|
msgstr "পরামর্শ"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "সতর্কতা"
|
msgstr "সতর্কতা"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "%s ভার্সনে নতুন"
|
msgstr "%s ভার্সনে নতুন"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "%s ভার্সনে পরিবর্তিত"
|
msgstr "%s ভার্সনে পরিবর্তিত"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড"
|
msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "কিওয়ার্ড"
|
msgstr "কিওয়ার্ড"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "অপারেটর"
|
msgstr "অপারেটর"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "অবজেক্ট"
|
msgstr "অবজেক্ট"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "স্ট্যাটমেন্ট"
|
msgstr "স্ট্যাটমেন্ট"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "বিল্ট-ইন ফাংশন"
|
msgstr "বিল্ট-ইন ফাংশন"
|
||||||
|
|
||||||
@ -695,7 +702,9 @@ msgstr "%(last_updated)s সর্বশেষ পরিবর্তন কর
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s দিয়ে তৈরী।"
|
msgstr ""
|
||||||
|
"<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s দিয়ে "
|
||||||
|
"তৈরী।"
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -722,7 +731,9 @@ msgstr "পরবর্তী অধ্যায়"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Please activate JavaScript to enable the search\n"
|
"Please activate JavaScript to enable the search\n"
|
||||||
" functionality."
|
" functionality."
|
||||||
msgstr "অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n সক্রিয় করুন।"
|
msgstr ""
|
||||||
|
"অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n"
|
||||||
|
" সক্রিয় করুন।"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:32
|
#: sphinx/themes/basic/search.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -730,25 +741,28 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে ক্লিক করুন।\n উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় সকল\n শব্দ নেই সেগুলো বাদ দেয়া হবে।"
|
msgstr ""
|
||||||
|
"এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n"
|
||||||
|
" আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে "
|
||||||
|
"ক্লিক করুন।\n"
|
||||||
|
" উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় "
|
||||||
|
"সকল\n"
|
||||||
|
" শব্দ নেই সেগুলো বাদ দেয়া হবে।"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "খুঁজুন"
|
msgstr "খুঁজুন"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "অনুসন্ধানের ফলাফল"
|
msgstr "অনুসন্ধানের ফলাফল"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -787,33 +801,33 @@ msgstr "C API পরিবর্তন"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "অন্যান্য পরিবর্তন"
|
msgstr "অন্যান্য পরিবর্তন"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "এই শিরোনামের পার্মালিঙ্ক"
|
msgstr "এই শিরোনামের পার্মালিঙ্ক"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "এই সংজ্ঞার পার্মালিঙ্ক"
|
msgstr "এই সংজ্ঞার পার্মালিঙ্ক"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "অনুসন্ধানের ম্যাচগুলো লুকান"
|
msgstr "অনুসন্ধানের ম্যাচগুলো লুকান"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -830,44 +844,59 @@ msgstr ""
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "রিলিজ"
|
msgstr "রিলিজ"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "বিপজ্জনক"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "পাদটীকা"
|
msgstr "পাদটীকা"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "পূর্ববর্তী পাতা হতে চলমান"
|
msgstr "পূর্ববর্তী পাতা হতে চলমান"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "পরবর্তী পাতাতে চলমান"
|
msgstr "পরবর্তী পাতাতে চলমান"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[ছবি]"
|
msgstr "[ছবি]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%B %d, %Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%b %d, %Y"
|
||||||
|
|
||||||
|
#~ msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "ca", "plural_expr": "(n != 1)", "messages": {"Next topic": "Tema seg\u00fcent", "Index": "\u00cdndex", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "", "Copyright": "Copyright", "C API changes": "Canvis a la API de C", "quick access to all modules": "acc\u00e9s r\u00e0pid a tots els m\u00f2duls", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "Global Module Index": "\u00cdndex Global de M\u00f2duls", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "Index – %(key)s": "\u00cdndes – %(key)s", "General Index": "\u00cdndex General", "next chapter": "cap\u00edtol seg\u00fcent", "Search finished, found %s page(s) matching the search query.": "", "previous chapter": "cap\u00edtol anterior", "Permalink to this headline": "Link permanent a aquest t\u00edtol", "About these documents": "Quant a aquests documents", "Preparing search...": "", ", in ": "", "Navigation": "Navegaci\u00f3", "Expand sidebar": "", "the documentation for": "", "Complete Table of Contents": "Taula de Contingut Completa", "Contents": "", "can be huge": "pot ser gegant", "Changes in Version %(version)s — %(docstitle)s": "Canvis a la Versi\u00f3 %(version)s — %(docstitle)s", "Other changes": "Altres canvis", "Hide Search Matches": "Oculta Resultats de Cerca", "Quick search": "Cerca r\u00e0pida", "Show Source": "Mostra Codi Font", "Search": "Cerca", "This Page": "Aquesta P\u00e0gina", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Des d'aqu\u00ed pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el bot\u00f3 \"cerca\". Tingues en compte\nque la cerca inclour\u00e0 totes les paraules que posis. Les p\u00e0gines que no\ntenen totes les paraules no sortir\u00e0n.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "last updated": "", "Collapse sidebar": "", "Go": "Ves a", "Table Of Contents": "Taula de Contingut", "Search within %(docstitle)s": "Cerca dins de %(docstitle)s", "all functions, classes, terms": "totes les funcions, classes, termes", "Please activate JavaScript to enable the search\n functionality.": "Activa JavaScript per utilitzar la funcionalitat\nde cerca.", "Indices and tables:": "\u00cdndexs i taules:", "lists all sections and subsections": "llista totes les seccions i subseccions", "Index pages by letter": "P\u00e0gines d'\u00edndex per lletra", "search": "cerca", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Previous topic": "Tema anterior", "Overview": "Resum", "Last updated on %(last_updated)s.": "\u00daltima actualitzaci\u00f3 el %(last_updated)s.", "Searching": "", "search this documentation": "cerca aquesta documentaci\u00f3", "Automatically generated list of changes in version %(version)s": "Llista de canvis de la versi\u00f3 %(version)s generada autom\u00e0ticament", "Full index on one page": "\u00cdndex complet en una p\u00e0gina", "Enter search terms or a module, class or function name.": "Entra paraules de cerca o el nom d'un m\u00f2dul, classe o funci\u00f3.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\\\"%(path)s\\\">Copyright</a> %(copyright)s.", "Library changes": "Canvis a la llibreria", "Search Page": "P\u00e0gina de Cerca", "Search Results": "Resultats de la Cerca"}});
|
Documentation.addTranslations({"locale": "ca", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\\\"%(path)s\\\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Quant a aquests documents", "Automatically generated list of changes in version %(version)s": "Llista de canvis de la versi\u00f3 %(version)s generada autom\u00e0ticament", "C API changes": "Canvis a la API de C", "Changes in Version %(version)s — %(docstitle)s": "Canvis a la Versi\u00f3 %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Taula de Contingut Completa", "Contents": "", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Entra paraules de cerca o el nom d'un m\u00f2dul, classe o funci\u00f3.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Des d'aqu\u00ed pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el bot\u00f3 \"cerca\". Tingues en compte\nque la cerca inclour\u00e0 totes les paraules que posis. Les p\u00e0gines que no\ntenen totes les paraules no sortir\u00e0n.", "Full index on one page": "\u00cdndex complet en una p\u00e0gina", "General Index": "\u00cdndex General", "Global Module Index": "\u00cdndex Global de M\u00f2duls", "Go": "Ves a", "Hide Search Matches": "Oculta Resultats de Cerca", "Index": "\u00cdndex", "Index – %(key)s": "\u00cdndes – %(key)s", "Index pages by letter": "P\u00e0gines d'\u00edndex per lletra", "Indices and tables:": "\u00cdndexs i taules:", "Last updated on %(last_updated)s.": "\u00daltima actualitzaci\u00f3 el %(last_updated)s.", "Library changes": "Canvis a la llibreria", "Navigation": "Navegaci\u00f3", "Next topic": "Tema seg\u00fcent", "Other changes": "Altres canvis", "Overview": "Resum", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Permalink to this headline": "Link permanent a aquest t\u00edtol", "Please activate JavaScript to enable the search\n functionality.": "Activa JavaScript per utilitzar la funcionalitat\nde cerca.", "Preparing search...": "", "Previous topic": "Tema anterior", "Quick search": "Cerca r\u00e0pida", "Search": "Cerca", "Search Page": "P\u00e0gina de Cerca", "Search Results": "Resultats de la Cerca", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Cerca dins de %(docstitle)s", "Searching": "", "Show Source": "Mostra Codi Font", "Table Of Contents": "Taula de Contingut", "This Page": "Aquesta P\u00e0gina", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "totes les funcions, classes, termes", "can be huge": "pot ser gegant", "last updated": "", "lists all sections and subsections": "llista totes les seccions i subseccions", "next chapter": "cap\u00edtol seg\u00fcent", "previous chapter": "cap\u00edtol anterior", "quick access to all modules": "acc\u00e9s r\u00e0pid a tots els m\u00f2duls", "search": "cerca", "search this documentation": "cerca aquesta documentaci\u00f3", "the documentation for": ""}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,55 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Catalan translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/sphinx-1/language/ca/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Catalan "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/ca/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "%s %s documentació"
|
msgstr "%s %s documentació"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "vegeu %s"
|
msgstr "vegeu %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "vegeu també %s"
|
msgstr "vegeu també %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -58,11 +58,10 @@ msgstr ""
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d de %B de %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -72,64 +71,63 @@ msgstr "Mòduls Interns"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Nivell de mòdul"
|
msgstr "Nivell de mòdul"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d %b, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Índex General"
|
msgstr "Índex General"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "índex"
|
msgstr "índex"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "següent"
|
msgstr "següent"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "anterior"
|
msgstr "anterior"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (a "
|
msgstr " (a "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Autor de la secció:"
|
msgstr "Autor de la secció:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Autor del mòdul: "
|
msgstr "Autor del mòdul: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Autor: "
|
msgstr "Autor: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Paràmetres"
|
msgstr "Paràmetres"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Retorna"
|
msgstr "Retorna"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Tipus de retorn"
|
msgstr "Tipus de retorn"
|
||||||
|
|
||||||
@ -158,12 +156,12 @@ msgstr "%s (tipus de C)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (variable de C)"
|
msgstr "%s (variable de C)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "funció"
|
msgstr "funció"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "membre"
|
msgstr "membre"
|
||||||
|
|
||||||
@ -171,7 +169,7 @@ msgstr "membre"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "macro"
|
msgstr "macro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "tipus"
|
msgstr "tipus"
|
||||||
|
|
||||||
@ -179,59 +177,64 @@ msgstr "tipus"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "variable"
|
msgstr "variable"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Paràmetres"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (tipus de C++)"
|
msgstr "%s (tipus de C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (membre de C++)"
|
msgstr "%s (membre de C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (funció de C++)"
|
msgstr "%s (funció de C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (class de C++)"
|
msgstr "%s (class de C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "class"
|
msgstr "class"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (funció interna)"
|
msgstr "%s() (funció interna)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (mètode %s)"
|
msgstr "%s() (mètode %s)"
|
||||||
@ -246,7 +249,7 @@ msgstr "%s() (class)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (atribut %s)"
|
msgstr "%s (atribut %s)"
|
||||||
@ -255,116 +258,116 @@ msgstr "%s (atribut %s)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "atribut"
|
msgstr "atribut"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Llença"
|
msgstr "Llença"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (al mòdul %s)"
|
msgstr "%s() (al mòdul %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (variable interna)"
|
msgstr "%s (variable interna)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (al mòdul %s)"
|
msgstr "%s (al mòdul %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (classe interna)"
|
msgstr "%s (classe interna)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (class a %s)"
|
msgstr "%s (class a %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (mètode %s.%s)"
|
msgstr "%s() (mètode %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (mètode estàtic %s.%s)"
|
msgstr "%s() (mètode estàtic %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (mètode estàtic %s)"
|
msgstr "%s() (mètode estàtic %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (atribut %s.%s)"
|
msgstr "%s (atribut %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (mòdul)"
|
msgstr "%s (mòdul)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "mòduls"
|
msgstr "mòduls"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Obsolet"
|
msgstr "Obsolet"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "excepció"
|
msgstr "excepció"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "mètode estàtic"
|
msgstr "mètode estàtic"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "mòdul"
|
msgstr "mòdul"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (obsolet)"
|
msgstr " (obsolet)"
|
||||||
|
|
||||||
@ -396,64 +399,64 @@ msgstr "variable d'entorn; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "opció de línia de comandes %s; %s"
|
msgstr "opció de línia de comandes %s; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "variable d'entorn"
|
msgstr "variable d'entorn"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Índex"
|
msgstr "Índex"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Índex de Mòduls"
|
msgstr "Índex de Mòduls"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Pàgina de Cerca"
|
msgstr "Pàgina de Cerca"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Bases: %s"
|
msgstr " Bases: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "àlies de :class:`%s`"
|
msgstr "àlies de :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -462,112 +465,116 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Pendent"
|
msgstr "Pendent"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
msgid "<<original entry>>"
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgstr ""
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(La <<entrada original>> està a %s, línia %d i.)"
|
msgstr "(La <<entrada original>> està a %s, línia %d i.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Atenció"
|
msgstr "Atenció"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Compte"
|
msgstr "Compte"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Perill"
|
msgstr "Perill"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Error"
|
msgstr "Error"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Suggerència"
|
msgstr "Suggerència"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Important"
|
msgstr "Important"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Vegeu també"
|
msgstr "Vegeu també"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Truc"
|
msgstr "Truc"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Avís"
|
msgstr "Avís"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Novetat de la versió %s"
|
msgstr "Novetat de la versió %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Canviat a la versió %s"
|
msgstr "Canviat a la versió %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Obsolet desde la versió %s"
|
msgstr "Obsolet desde la versió %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "paraula clau"
|
msgstr "paraula clau"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "operador"
|
msgstr "operador"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objecte"
|
msgstr "objecte"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "sentència"
|
msgstr "sentència"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "funció interna"
|
msgstr "funció interna"
|
||||||
|
|
||||||
@ -695,7 +702,9 @@ msgstr "Última actualització el %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s."
|
msgstr ""
|
||||||
|
"Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -722,7 +731,9 @@ msgstr "capítol següent"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Please activate JavaScript to enable the search\n"
|
"Please activate JavaScript to enable the search\n"
|
||||||
" functionality."
|
" functionality."
|
||||||
msgstr "Activa JavaScript per utilitzar la funcionalitat\nde cerca."
|
msgstr ""
|
||||||
|
"Activa JavaScript per utilitzar la funcionalitat\n"
|
||||||
|
"de cerca."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:32
|
#: sphinx/themes/basic/search.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -730,25 +741,26 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Des d'aquí pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el botó \"cerca\". Tingues en compte\nque la cerca inclourà totes les paraules que posis. Les pàgines que no\ntenen totes les paraules no sortiràn."
|
msgstr ""
|
||||||
|
"Des d'aquí pots fer cerques en aquests documents. Entra les \n"
|
||||||
|
"paraules de la teva cerca i clica el botó \"cerca\". Tingues en compte\n"
|
||||||
|
"que la cerca inclourà totes les paraules que posis. Les pàgines que no\n"
|
||||||
|
"tenen totes les paraules no sortiràn."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "cerca"
|
msgstr "cerca"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Resultats de la Cerca"
|
msgstr "Resultats de la Cerca"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -787,33 +799,33 @@ msgstr "Canvis a la API de C"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Altres canvis"
|
msgstr "Altres canvis"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Link permanent a aquest títol"
|
msgstr "Link permanent a aquest títol"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Link permanent a aquesta definició"
|
msgstr "Link permanent a aquesta definició"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Oculta Resultats de Cerca"
|
msgstr "Oculta Resultats de Cerca"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -830,44 +842,56 @@ msgstr ""
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Versió"
|
msgstr "Versió"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Perill"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "ve de la pàgina anterior"
|
msgstr "ve de la pàgina anterior"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Continua a la pàgina següent"
|
msgstr "Continua a la pàgina següent"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[imatge]"
|
msgstr "[imatge]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d de %B de %Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d %b, %Y"
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "cs", "plural_expr": "(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2", "messages": {"Next topic": "Dal\u0161\u00ed t\u00e9ma", "Index": "Rejst\u0159\u00edk", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "V\u00edtejte! Toto je", "Copyright": "Ve\u0161ker\u00e1 pr\u00e1va vyhrazena", "C API changes": "Zm\u011bny API", "quick access to all modules": "rychl\u00fd p\u0159\u00edstup ke v\u0161em modul\u016fm", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "Global Module Index": "Celkov\u00fd rejst\u0159\u00edk modul\u016f", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Vyhled\u00e1v\u00e1n\u00ed nenalezlo \u017e\u00e1dn\u00fd odpov\u00eddaj\u00edc\u00ed dokument. Ujist\u011bte se, \u017ee jste v\u0161echna slova zapsal/a spr\u00e1vn\u011b a \u017ee jste vybral/a dostatek kategori\u00ed.", "Index – %(key)s": "Rejst\u0159\u00edk – %(key)s", "General Index": "Obecn\u00fd rejst\u0159\u00edk", "next chapter": "dal\u0161\u00ed kapitola", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed dokon\u010deno, str\u00e1nky odpov\u00eddaj\u00edc\u00ed hledan\u00e9mu v\u00fdrazu: %s.", "previous chapter": "p\u0159edchoz\u00ed kapitola", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "About these documents": "O t\u011bchto dokumentech", "Preparing search...": "Vyhled\u00e1v\u00e1n\u00ed se p\u0159ipravuje...", ", in ": ", v ", "Navigation": "Navigace", "Expand sidebar": "Rozbalit bo\u010dn\u00ed li\u0161tu", "the documentation for": "dokumentace pro", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "can be huge": "m\u016f\u017ee b\u00fdt obrovsk\u00fd", "Changes in Version %(version)s — %(docstitle)s": "Zm\u011bny ve verzi %(version)s — %(docstitle)s", "Other changes": "Ostatn\u00ed zm\u011bny", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Quick search": "Rychl\u00e9 vyhled\u00e1v\u00e1n\u00ed", "Show Source": "Uk\u00e1zat zdroj", "Search": "Vyhled\u00e1v\u00e1n\u00ed", "This Page": "Tato str\u00e1nka", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Toto je vyhled\u00e1vac\u00ed str\u00e1nka. Zadejte kl\u00ed\u010dov\u00e1 slova a klikn\u011bte na \"hledat\". \nVyhled\u00e1v\u00e1n\u00ed automaticky hled\u00e1 v\u0161echna slova, nebudou tedy nalezeny str\u00e1nky obsahuj\u00edc\u00ed jen n\u011bkter\u00e9 z nich.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "last updated": "naposledy aktualizov\u00e1no", "Collapse sidebar": "Sbalit bo\u010dn\u00ed li\u0161tu", "Go": "OK", "Table Of Contents": "Obsah", "Search within %(docstitle)s": "Prohledat %(docstitle)s", "all functions, classes, terms": "v\u0161echny funkce, t\u0159\u00eddy, term\u00edny", "Please activate JavaScript to enable the search\n functionality.": "Pro podporu vyhled\u00e1v\u00e1n\u00ed aktivujte JavaScript.", "Indices and tables:": "Rejst\u0159\u00edky a tabulky:", "lists all sections and subsections": "seznam v\u0161ech sekc\u00ed a podsekc\u00ed", "Index pages by letter": "Rejst\u0159\u00edk podle p\u00edsmene", "search": "hledat", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Previous topic": "P\u0159echoz\u00ed t\u00e9ma", "Overview": "P\u0159ehled", "Last updated on %(last_updated)s.": "Aktualizov\u00e1no dne %(last_updated)s.", "Searching": "Prob\u00edh\u00e1 vyhled\u00e1n\u00ed", "search this documentation": "prohledat tuto dokumentaci", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd seznam zm\u011bn ve verzi %(version)s", "Full index on one page": "Cel\u00fd rejst\u0159\u00edk na jedn\u00e9 str\u00e1nce", "Enter search terms or a module, class or function name.": "Zadejte hledan\u00e9 term\u00edny nebo jm\u00e9no modulu, t\u0159\u00eddy \u010di funkce.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "Library changes": "Zm\u011bny v knihovn\u00e1ch", "Search Page": "Vyhled\u00e1vac\u00ed str\u00e1nka", "Search Results": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed"}});
|
Documentation.addTranslations({"locale": "cs", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", v ", "About these documents": "O t\u011bchto dokumentech", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd seznam zm\u011bn ve verzi %(version)s", "C API changes": "Zm\u011bny API", "Changes in Version %(version)s — %(docstitle)s": "Zm\u011bny ve verzi %(version)s — %(docstitle)s", "Collapse sidebar": "Sbalit bo\u010dn\u00ed li\u0161tu", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Ve\u0161ker\u00e1 pr\u00e1va vyhrazena", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Zadejte hledan\u00e9 term\u00edny nebo jm\u00e9no modulu, t\u0159\u00eddy \u010di funkce.", "Expand sidebar": "Rozbalit bo\u010dn\u00ed li\u0161tu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Toto je vyhled\u00e1vac\u00ed str\u00e1nka. Zadejte kl\u00ed\u010dov\u00e1 slova a klikn\u011bte na \"hledat\". \nVyhled\u00e1v\u00e1n\u00ed automaticky hled\u00e1 v\u0161echna slova, nebudou tedy nalezeny str\u00e1nky obsahuj\u00edc\u00ed jen n\u011bkter\u00e9 z nich.", "Full index on one page": "Cel\u00fd rejst\u0159\u00edk na jedn\u00e9 str\u00e1nce", "General Index": "Obecn\u00fd rejst\u0159\u00edk", "Global Module Index": "Celkov\u00fd rejst\u0159\u00edk modul\u016f", "Go": "OK", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Index": "Rejst\u0159\u00edk", "Index – %(key)s": "Rejst\u0159\u00edk – %(key)s", "Index pages by letter": "Rejst\u0159\u00edk podle p\u00edsmene", "Indices and tables:": "Rejst\u0159\u00edky a tabulky:", "Last updated on %(last_updated)s.": "Aktualizov\u00e1no dne %(last_updated)s.", "Library changes": "Zm\u011bny v knihovn\u00e1ch", "Navigation": "Navigace", "Next topic": "Dal\u0161\u00ed t\u00e9ma", "Other changes": "Ostatn\u00ed zm\u011bny", "Overview": "P\u0159ehled", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pro podporu vyhled\u00e1v\u00e1n\u00ed aktivujte JavaScript.", "Preparing search...": "Vyhled\u00e1v\u00e1n\u00ed se p\u0159ipravuje...", "Previous topic": "P\u0159echoz\u00ed t\u00e9ma", "Quick search": "Rychl\u00e9 vyhled\u00e1v\u00e1n\u00ed", "Search": "Vyhled\u00e1v\u00e1n\u00ed", "Search Page": "Vyhled\u00e1vac\u00ed str\u00e1nka", "Search Results": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed dokon\u010deno, str\u00e1nky odpov\u00eddaj\u00edc\u00ed hledan\u00e9mu v\u00fdrazu: %s.", "Search within %(docstitle)s": "Prohledat %(docstitle)s", "Searching": "Prob\u00edh\u00e1 vyhled\u00e1n\u00ed", "Show Source": "Uk\u00e1zat zdroj", "Table Of Contents": "Obsah", "This Page": "Tato str\u00e1nka", "Welcome! This is": "V\u00edtejte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Vyhled\u00e1v\u00e1n\u00ed nenalezlo \u017e\u00e1dn\u00fd odpov\u00eddaj\u00edc\u00ed dokument. Ujist\u011bte se, \u017ee jste v\u0161echna slova zapsal/a spr\u00e1vn\u011b a \u017ee jste vybral/a dostatek kategori\u00ed.", "all functions, classes, terms": "v\u0161echny funkce, t\u0159\u00eddy, term\u00edny", "can be huge": "m\u016f\u017ee b\u00fdt obrovsk\u00fd", "last updated": "naposledy aktualizov\u00e1no", "lists all sections and subsections": "seznam v\u0161ech sekc\u00ed a podsekc\u00ed", "next chapter": "dal\u0161\u00ed kapitola", "previous chapter": "p\u0159edchoz\u00ed kapitola", "quick access to all modules": "rychl\u00fd p\u0159\u00edstup ke v\u0161em modul\u016fm", "search": "hledat", "search this documentation": "prohledat tuto dokumentaci", "the documentation for": "dokumentace pro"}, "plural_expr": "(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2"});
|
Binary file not shown.
@ -1,56 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Czech translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2008
|
|
||||||
# Vilibald W. <vilibald.wanca@gmail.com>, 2014-2015
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Czech (http://www.transifex.com/projects/p/sphinx-1/language/cs/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Language-Team: Czech "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/cs/)\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "Obr. %s"
|
msgstr "Obr. %s"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "Tabulka %s"
|
msgstr "Tabulka %s"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr "Výpis %s"
|
msgstr "Výpis %s"
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "Dokumentace pro %s %s"
|
msgstr "Dokumentace pro %s %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "viz %s"
|
msgstr "viz %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "viz také %s"
|
msgstr "viz také %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Symboly"
|
msgstr "Symboly"
|
||||||
|
|
||||||
@ -59,11 +58,10 @@ msgstr "Symboly"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d.%m.%Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -73,64 +71,63 @@ msgstr "Vestavěné funkce"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Úroveň modulu"
|
msgstr "Úroveň modulu"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d.%m.%Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Obecný rejstřík"
|
msgstr "Obecný rejstřík"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "rejstřík"
|
msgstr "rejstřík"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "další"
|
msgstr "další"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "předchozí"
|
msgstr "předchozí"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (v "
|
msgstr " (v "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Autor sekce: "
|
msgstr "Autor sekce: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Autor modulu: "
|
msgstr "Autor modulu: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Autor kódu:"
|
msgstr "Autor kódu:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Autor: "
|
msgstr "Autor: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Parametry"
|
msgstr "Parametry"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Vrací"
|
msgstr "Vrací"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Typ návratové hodnoty"
|
msgstr "Typ návratové hodnoty"
|
||||||
|
|
||||||
@ -159,12 +156,12 @@ msgstr "%s (C typ)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C proměnná)"
|
msgstr "%s (C proměnná)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "funkce"
|
msgstr "funkce"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "člen"
|
msgstr "člen"
|
||||||
|
|
||||||
@ -172,7 +169,7 @@ msgstr "člen"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "makro"
|
msgstr "makro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "typ"
|
msgstr "typ"
|
||||||
|
|
||||||
@ -180,59 +177,64 @@ msgstr "typ"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "proměnná"
|
msgstr "proměnná"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Parametry"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Vyvolá"
|
msgstr "Vyvolá"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++ typ)"
|
msgstr "%s (C++ typ)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++ člen)"
|
msgstr "%s (C++ člen)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++ funkce)"
|
msgstr "%s (C++ funkce)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++ třída)"
|
msgstr "%s (C++ třída)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "třída"
|
msgstr "třída"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (vestavěná funkce)"
|
msgstr "%s() (vestavěná funkce)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (metoda %s)"
|
msgstr "%s() (metoda %s)"
|
||||||
@ -247,7 +249,7 @@ msgstr "%s() (třída)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (globální proměnná nebo konstanta)"
|
msgstr "%s (globální proměnná nebo konstanta)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (atribut %s)"
|
msgstr "%s (atribut %s)"
|
||||||
@ -256,116 +258,116 @@ msgstr "%s (atribut %s)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argumenty"
|
msgstr "Argumenty"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "data"
|
msgstr "data"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "atribut"
|
msgstr "atribut"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Proměnné"
|
msgstr "Proměnné"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Vyvolá"
|
msgstr "Vyvolá"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (v modulu %s)"
|
msgstr "%s() (v modulu %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (vestavěná proměnná)"
|
msgstr "%s (vestavěná proměnná)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (v modulu %s)"
|
msgstr "%s (v modulu %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (vestavěná třída)"
|
msgstr "%s (vestavěná třída)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (třída v %s)"
|
msgstr "%s (třída v %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (metoda %s.%s)"
|
msgstr "%s() (metoda %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (statická metoda %s.%s)"
|
msgstr "%s() (statická metoda %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (statická metoda %s)"
|
msgstr "%s() (statická metoda %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (třídní metoda %s.%s)"
|
msgstr "%s() (třídní metoda %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (třídní metoda %s)"
|
msgstr "%s() (třídní metoda %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (atribut %s.%s)"
|
msgstr "%s (atribut %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (modul)"
|
msgstr "%s (modul)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Rejstřík modulů Pythonu"
|
msgstr "Rejstřík modulů Pythonu"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "moduly"
|
msgstr "moduly"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Zastaralé"
|
msgstr "Zastaralé"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "výjimka"
|
msgstr "výjimka"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "metoda"
|
msgstr "metoda"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "třídní metoda"
|
msgstr "třídní metoda"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "statická metoda"
|
msgstr "statická metoda"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "modul"
|
msgstr "modul"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (zastaralé)"
|
msgstr " (zastaralé)"
|
||||||
|
|
||||||
@ -397,64 +399,64 @@ msgstr "proměnná prostředí; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%svolba příkazového řádku; %s"
|
msgstr "%svolba příkazového řádku; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "termín v glosáři"
|
msgstr "termín v glosáři"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "token gramatiky"
|
msgstr "token gramatiky"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "referenční návěstí"
|
msgstr "referenční návěstí"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "proměnná prostředí"
|
msgstr "proměnná prostředí"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "volba programu"
|
msgstr "volba programu"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Rejstřík"
|
msgstr "Rejstřík"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Rejstřík modulů"
|
msgstr "Rejstřík modulů"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Vyhledávací stránka"
|
msgstr "Vyhledávací stránka"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Nadtřídy: %s"
|
msgstr " Nadtřídy: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "alias třídy :class:`%s`"
|
msgstr "alias třídy :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr "[graf: %s]"
|
msgstr "[graf: %s]"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr "[graf]"
|
msgstr "[graf]"
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr "(v %s v%s)"
|
msgstr "(v %s v%s)"
|
||||||
@ -463,112 +465,117 @@ msgstr "(v %s v%s)"
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[zdroj]"
|
msgstr "[zdroj]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Todo"
|
msgstr "Todo"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "původní záznam"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(<<original entry>> se nachází v %s, řádka %d.)"
|
msgstr "(<<original entry>> se nachází v %s, řádka %d.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "původní záznam"
|
msgstr "původní záznam"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[dokumentace]"
|
msgstr "[dokumentace]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Kód modulu"
|
msgstr "Kód modulu"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>Zdrojový kód pro %s</h1>"
|
msgstr "<h1>Zdrojový kód pro %s</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Přehled: kód modulu"
|
msgstr "Přehled: kód modulu"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Všechny moduly s dostupným kódem</h1>"
|
msgstr "<h1>Všechny moduly s dostupným kódem</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Výstraha"
|
msgstr "Výstraha"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Upozornění"
|
msgstr "Upozornění"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Nebezpečí"
|
msgstr "Nebezpečí"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Chyba"
|
msgstr "Chyba"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Rada"
|
msgstr "Rada"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Důležité"
|
msgstr "Důležité"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Poznámka"
|
msgstr "Poznámka"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Viz také"
|
msgstr "Viz také"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Tip"
|
msgstr "Tip"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Varování"
|
msgstr "Varování"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Nové ve verzi %s"
|
msgstr "Nové ve verzi %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Změněno ve verzi %s"
|
msgstr "Změněno ve verzi %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Zastaralé od verze %s"
|
msgstr "Zastaralé od verze %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "klíčové slovo"
|
msgstr "klíčové slovo"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "operátor"
|
msgstr "operátor"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objekt"
|
msgstr "objekt"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "příkaz"
|
msgstr "příkaz"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "vestavěná funkce"
|
msgstr "vestavěná funkce"
|
||||||
|
|
||||||
@ -696,7 +703,9 @@ msgstr "Aktualizováno dne %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Vytvořeno pomocí <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s."
|
msgstr ""
|
||||||
|
"Vytvořeno pomocí <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -731,26 +740,29 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Toto je vyhledávací stránka. Zadejte klíčová slova a klikněte na \"hledat\". \nVyhledávání automaticky hledá všechna slova, nebudou tedy nalezeny stránky obsahující jen některé z nich."
|
msgstr ""
|
||||||
|
"Toto je vyhledávací stránka. Zadejte klíčová slova a klikněte na "
|
||||||
|
"\"hledat\". \n"
|
||||||
|
"Vyhledávání automaticky hledá všechna slova, nebudou tedy nalezeny "
|
||||||
|
"stránky obsahující jen některé z nich."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "hledat"
|
msgstr "hledat"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Výsledky vyhledávání"
|
msgstr "Výsledky vyhledávání"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr "Vyhledávání nenalezlo žádný odpovídající dokument. Ujistěte se, že jste všechna slova zapsal/a správně a že jste vybral/a dostatek kategorií."
|
msgstr ""
|
||||||
|
"Vyhledávání nenalezlo žádný odpovídající dokument. Ujistěte se, že jste "
|
||||||
|
"všechna slova zapsal/a správně a že jste vybral/a dostatek kategorií."
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
msgid "Quick search"
|
msgid "Quick search"
|
||||||
@ -788,33 +800,33 @@ msgstr "Změny API"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Ostatní změny"
|
msgstr "Ostatní změny"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Trvalý odkaz na tento nadpis"
|
msgstr "Trvalý odkaz na tento nadpis"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Trvalý odkaz na tuto definici"
|
msgstr "Trvalý odkaz na tuto definici"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Skrýt výsledky vyhledávání"
|
msgstr "Skrýt výsledky vyhledávání"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr "Probíhá vyhledání"
|
msgstr "Probíhá vyhledání"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr "Vyhledávání se připravuje..."
|
msgstr "Vyhledávání se připravuje..."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr "Vyhledávání dokončeno, stránky odpovídající hledanému výrazu: %s."
|
msgstr "Vyhledávání dokončeno, stránky odpovídající hledanému výrazu: %s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ", v "
|
msgstr ", v "
|
||||||
|
|
||||||
@ -831,44 +843,56 @@ msgstr "Sbalit boční lištu"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Obsah"
|
msgstr "Obsah"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr "Permalink k tomuto kódu"
|
msgstr "Permalink k tomuto kódu"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr "Permalink k tomuto obrázku"
|
msgstr "Permalink k tomuto obrázku"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr "Permalink k této tabulce"
|
msgstr "Permalink k této tabulce"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Vydání"
|
msgstr "Vydání"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Nebezpečí"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Poznámky pod čarou"
|
msgstr "Poznámky pod čarou"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "pokračujte na předchozí stránce"
|
msgstr "pokračujte na předchozí stránce"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Pokračujte na další stránce"
|
msgstr "Pokračujte na další stránce"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr "[obrázek: %s]"
|
msgstr "[obrázek: %s]"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[obrázek]"
|
msgstr "[obrázek]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d.%m.%Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d.%m.%Y"
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "da", "plural_expr": "(n != 1)", "messages": {"Next topic": "N\u00e6ste emne", "Index": "Indeks", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "Velkommen! Dette er", "Copyright": "Ophavsret", "C API changes": "\u00c6ndringer i C-API", "quick access to all modules": "hurtig adgang til alle moduler", "© Copyright %(copyright)s.": "© Ophavsret %(copyright)s.", "Global Module Index": "Globalt modulindeks", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "Index – %(key)s": "Indeks – %(key)s", "General Index": "Generelt indeks", "next chapter": "n\u00e6ste kapitel", "Search finished, found %s page(s) matching the search query.": "", "previous chapter": "forrige kapitel", "Permalink to this headline": "Permalink til denne overskrift", "About these documents": "Om disse dokumenter", "Preparing search...": "Forbereder s\u00f8gning...", ", in ": "", "Navigation": "Navigation", "Expand sidebar": "Udfold sidebj\u00e6lke", "the documentation for": "dokumentationen for", "Complete Table of Contents": "Fuldst\u00e6ndig indholdsfortegnelse", "Contents": "Indhold", "can be huge": "kan v\u00e6re enormt", "Changes in Version %(version)s — %(docstitle)s": "\u00c6ndringer i version %(version)s — %(docstitle)s", "Other changes": "Andre \u00e6ndringer", "Hide Search Matches": "Skjul s\u00f8geresultater", "Quick search": "Hurtig s\u00f8gning", "Show Source": "Vis kilde", "Search": "S\u00f8g", "This Page": "Denne side", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Her fra kan du s\u00f8ge i disse dokumenter. Indtast dine s\u00f8geord\n i boksen nedenfor og klik p\u00e5 \"s\u00f8g\". Bem\u00e6rk at s\u00f8gefunktionen\n automatisk vil s\u00f8ge p\u00e5 alle ordene. Sider, der indeholder\n f\u00e6rre ord, vil ikke indg\u00e5 i resultaterne.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "last updated": "sidst opdateret", "Collapse sidebar": "Sammenfold sidebj\u00e6lke", "Go": "S\u00f8g", "Table Of Contents": "Indholdsfortegnelse", "Search within %(docstitle)s": "S\u00f8g i %(docstitle)s", "all functions, classes, terms": "alle funktioner, klasser, begreber", "Please activate JavaScript to enable the search\n functionality.": "Aktiv\u00e9r venligst JavaScript for at aktivere\n s\u00f8gefunktionalitet.", "Indices and tables:": "Indeks og tabeller:", "lists all sections and subsections": "viser alle afsnit og underafsnit", "Index pages by letter": "Indeks\u00e9r sider efter bogstav", "search": "s\u00f8g", "Permalink to this definition": "Permalink til denne definition", "Previous topic": "Forrige emne", "Overview": "Oversigt", "Last updated on %(last_updated)s.": "Sidst opdateret %(last_updated)s.", "Searching": "S\u00f8ger", "search this documentation": "s\u00f8g i denne dokumentation", "Automatically generated list of changes in version %(version)s": "Automatisk oprettet liste af \u00e6ndringer i version %(version)s", "Full index on one page": "Fuldt indeks p\u00e5 \u00e9n side", "Enter search terms or a module, class or function name.": "Indtast s\u00f8geord eller navnet p\u00e5 et modul, en klasse eller en funktion.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Ophavsret</a> %(copyright)s.", "Library changes": "Biblioteks\u00e6ndringer", "Search Page": "S\u00f8geside", "Search Results": "S\u00f8geresultater"}});
|
Documentation.addTranslations({"locale": "da", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Ophavsret</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Ophavsret %(copyright)s.", ", in ": "", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk oprettet liste af \u00e6ndringer i version %(version)s", "C API changes": "\u00c6ndringer i C-API", "Changes in Version %(version)s — %(docstitle)s": "\u00c6ndringer i version %(version)s — %(docstitle)s", "Collapse sidebar": "Sammenfold sidebj\u00e6lke", "Complete Table of Contents": "Fuldst\u00e6ndig indholdsfortegnelse", "Contents": "Indhold", "Copyright": "Ophavsret", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Indtast s\u00f8geord eller navnet p\u00e5 et modul, en klasse eller en funktion.", "Expand sidebar": "Udfold sidebj\u00e6lke", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Her fra kan du s\u00f8ge i disse dokumenter. Indtast dine s\u00f8geord\n i boksen nedenfor og klik p\u00e5 \"s\u00f8g\". Bem\u00e6rk at s\u00f8gefunktionen\n automatisk vil s\u00f8ge p\u00e5 alle ordene. Sider, der indeholder\n f\u00e6rre ord, vil ikke indg\u00e5 i resultaterne.", "Full index on one page": "Fuldt indeks p\u00e5 \u00e9n side", "General Index": "Generelt indeks", "Global Module Index": "Globalt modulindeks", "Go": "S\u00f8g", "Hide Search Matches": "Skjul s\u00f8geresultater", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeks\u00e9r sider efter bogstav", "Indices and tables:": "Indeks og tabeller:", "Last updated on %(last_updated)s.": "Sidst opdateret %(last_updated)s.", "Library changes": "Biblioteks\u00e6ndringer", "Navigation": "Navigation", "Next topic": "N\u00e6ste emne", "Other changes": "Andre \u00e6ndringer", "Overview": "Oversigt", "Permalink to this definition": "Permalink til denne definition", "Permalink to this headline": "Permalink til denne overskrift", "Please activate JavaScript to enable the search\n functionality.": "Aktiv\u00e9r venligst JavaScript for at aktivere\n s\u00f8gefunktionalitet.", "Preparing search...": "Forbereder s\u00f8gning...", "Previous topic": "Forrige emne", "Quick search": "Hurtig s\u00f8gning", "Search": "S\u00f8g", "Search Page": "S\u00f8geside", "Search Results": "S\u00f8geresultater", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f8g i %(docstitle)s", "Searching": "S\u00f8ger", "Show Source": "Vis kilde", "Table Of Contents": "Indholdsfortegnelse", "This Page": "Denne side", "Welcome! This is": "Velkommen! Dette er", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alle funktioner, klasser, begreber", "can be huge": "kan v\u00e6re enormt", "last updated": "sidst opdateret", "lists all sections and subsections": "viser alle afsnit og underafsnit", "next chapter": "n\u00e6ste kapitel", "previous chapter": "forrige kapitel", "quick access to all modules": "hurtig adgang til alle moduler", "search": "s\u00f8g", "search this documentation": "s\u00f8g i denne dokumentation", "the documentation for": "dokumentationen for"}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,56 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Danish translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# askhl <asklarsen@gmail.com>, 2010-2011
|
|
||||||
# Jakob Lykke Andersen <jakob@caput.dk>, 2014
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Danish (http://www.transifex.com/projects/p/sphinx-1/language/da/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Danish "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/da/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "figur %s"
|
msgstr "figur %s"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "tabel %s"
|
msgstr "tabel %s"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "%s %s dokumentation"
|
msgstr "%s %s dokumentation"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "se %s"
|
msgstr "se %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "se også %s"
|
msgstr "se også %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Symboler"
|
msgstr "Symboler"
|
||||||
|
|
||||||
@ -59,11 +58,10 @@ msgstr "Symboler"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d. %B, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -73,64 +71,63 @@ msgstr "Indbyggede"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Modulniveau"
|
msgstr "Modulniveau"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d. %b, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Generelt indeks"
|
msgstr "Generelt indeks"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "indeks"
|
msgstr "indeks"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "næste"
|
msgstr "næste"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "forrige"
|
msgstr "forrige"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (i "
|
msgstr " (i "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Afsnitsforfatter: "
|
msgstr "Afsnitsforfatter: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Modulforfatter: "
|
msgstr "Modulforfatter: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Kodeforfatter: "
|
msgstr "Kodeforfatter: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Forfatter: "
|
msgstr "Forfatter: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Parametre"
|
msgstr "Parametre"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Returnerer"
|
msgstr "Returnerer"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Returtype"
|
msgstr "Returtype"
|
||||||
|
|
||||||
@ -159,12 +156,12 @@ msgstr "%s (C-type)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C-variabel)"
|
msgstr "%s (C-variabel)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "funktion"
|
msgstr "funktion"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "medlem"
|
msgstr "medlem"
|
||||||
|
|
||||||
@ -172,7 +169,7 @@ msgstr "medlem"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "makro"
|
msgstr "makro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "type"
|
msgstr "type"
|
||||||
|
|
||||||
@ -180,59 +177,64 @@ msgstr "type"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "variabel"
|
msgstr "variabel"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Parametre"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Kaster"
|
msgstr "Kaster"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++-type)"
|
msgstr "%s (C++-type)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++-medlem)"
|
msgstr "%s (C++-medlem)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++-funktion)"
|
msgstr "%s (C++-funktion)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++-klasse)"
|
msgstr "%s (C++-klasse)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "klasse"
|
msgstr "klasse"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (indbygget funktion)"
|
msgstr "%s() (indbygget funktion)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (metode i %s)"
|
msgstr "%s() (metode i %s)"
|
||||||
@ -247,7 +249,7 @@ msgstr "%s() (klasse)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (global variabel eller konstant)"
|
msgstr "%s (global variabel eller konstant)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (attribut i %s)"
|
msgstr "%s (attribut i %s)"
|
||||||
@ -256,116 +258,116 @@ msgstr "%s (attribut i %s)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Parametre"
|
msgstr "Parametre"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "data"
|
msgstr "data"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "attribut"
|
msgstr "attribut"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Variable"
|
msgstr "Variable"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Rejser"
|
msgstr "Rejser"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (i modulet %s)"
|
msgstr "%s() (i modulet %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (indbygget variabel)"
|
msgstr "%s (indbygget variabel)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (i modulet %s)"
|
msgstr "%s (i modulet %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (indbygget klasse)"
|
msgstr "%s (indbygget klasse)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (klasse i %s)"
|
msgstr "%s (klasse i %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (metode i %s.%s)"
|
msgstr "%s() (metode i %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (statisk metode i %s.%s)"
|
msgstr "%s() (statisk metode i %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (statisk metode i %s)"
|
msgstr "%s() (statisk metode i %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (klassemetode i %s.%s)"
|
msgstr "%s() (klassemetode i %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (klassemetode i %s)"
|
msgstr "%s() (klassemetode i %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (attribut i %s.%s)"
|
msgstr "%s (attribut i %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (modul)"
|
msgstr "%s (modul)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Python-modulindeks"
|
msgstr "Python-modulindeks"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "moduler"
|
msgstr "moduler"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Forældet"
|
msgstr "Forældet"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "undtagelse"
|
msgstr "undtagelse"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "metode"
|
msgstr "metode"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "klassemetode"
|
msgstr "klassemetode"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "statisk metode"
|
msgstr "statisk metode"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "modul"
|
msgstr "modul"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (forældet)"
|
msgstr " (forældet)"
|
||||||
|
|
||||||
@ -397,64 +399,64 @@ msgstr "miljøvariabel; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%skommandolinjetilvalg; %s"
|
msgstr "%skommandolinjetilvalg; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "begreb i ordliste"
|
msgstr "begreb i ordliste"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "grammatisk element"
|
msgstr "grammatisk element"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "referenceetiket"
|
msgstr "referenceetiket"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "miljøvariabel"
|
msgstr "miljøvariabel"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "programtilvalg"
|
msgstr "programtilvalg"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Indeks"
|
msgstr "Indeks"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Modulindeks"
|
msgstr "Modulindeks"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Søgeside"
|
msgstr "Søgeside"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Baser: %s"
|
msgstr " Baser: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "alias for :class:`%s`"
|
msgstr "alias for :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -463,112 +465,117 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[kilde]"
|
msgstr "[kilde]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Todo"
|
msgstr "Todo"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "oprindeligt punkt"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(Det <<oprindelige punkt>> befinder sig i %s, linje %d.)"
|
msgstr "(Det <<oprindelige punkt>> befinder sig i %s, linje %d.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "oprindeligt punkt"
|
msgstr "oprindeligt punkt"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[dok]"
|
msgstr "[dok]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Modulkode"
|
msgstr "Modulkode"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>Kildekode for %s</h1>"
|
msgstr "<h1>Kildekode for %s</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Oversigt: modulkode"
|
msgstr "Oversigt: modulkode"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Alle moduler, der er kode tilgængelig for</h1>"
|
msgstr "<h1>Alle moduler, der er kode tilgængelig for</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Vær opmærksom"
|
msgstr "Vær opmærksom"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Forsigtig"
|
msgstr "Forsigtig"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Fare"
|
msgstr "Fare"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Fejl"
|
msgstr "Fejl"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Fif"
|
msgstr "Fif"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Vigtigt"
|
msgstr "Vigtigt"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Bemærk"
|
msgstr "Bemærk"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Se også"
|
msgstr "Se også"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Tip"
|
msgstr "Tip"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Advarsel"
|
msgstr "Advarsel"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Ny i version %s"
|
msgstr "Ny i version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Ændret i version %s"
|
msgstr "Ændret i version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Forældet siden version %s"
|
msgstr "Forældet siden version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "nøgleord"
|
msgstr "nøgleord"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "operator"
|
msgstr "operator"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objekt"
|
msgstr "objekt"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "erklæring"
|
msgstr "erklæring"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "indbygget funktion"
|
msgstr "indbygget funktion"
|
||||||
|
|
||||||
@ -696,7 +703,9 @@ msgstr "Sidst opdateret %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s."
|
msgstr ""
|
||||||
|
"Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -723,7 +732,9 @@ msgstr "næste kapitel"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Please activate JavaScript to enable the search\n"
|
"Please activate JavaScript to enable the search\n"
|
||||||
" functionality."
|
" functionality."
|
||||||
msgstr "Aktivér venligst JavaScript for at aktivere\n søgefunktionalitet."
|
msgstr ""
|
||||||
|
"Aktivér venligst JavaScript for at aktivere\n"
|
||||||
|
" søgefunktionalitet."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:32
|
#: sphinx/themes/basic/search.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -731,25 +742,26 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Her fra kan du søge i disse dokumenter. Indtast dine søgeord\n i boksen nedenfor og klik på \"søg\". Bemærk at søgefunktionen\n automatisk vil søge på alle ordene. Sider, der indeholder\n færre ord, vil ikke indgå i resultaterne."
|
msgstr ""
|
||||||
|
"Her fra kan du søge i disse dokumenter. Indtast dine søgeord\n"
|
||||||
|
" i boksen nedenfor og klik på \"søg\". Bemærk at søgefunktionen\n"
|
||||||
|
" automatisk vil søge på alle ordene. Sider, der indeholder\n"
|
||||||
|
" færre ord, vil ikke indgå i resultaterne."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "søg"
|
msgstr "søg"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Søgeresultater"
|
msgstr "Søgeresultater"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -788,33 +800,33 @@ msgstr "Ændringer i C-API"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Andre ændringer"
|
msgstr "Andre ændringer"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Permalink til denne overskrift"
|
msgstr "Permalink til denne overskrift"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Permalink til denne definition"
|
msgstr "Permalink til denne definition"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Skjul søgeresultater"
|
msgstr "Skjul søgeresultater"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr "Søger"
|
msgstr "Søger"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr "Forbereder søgning..."
|
msgstr "Forbereder søgning..."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -831,44 +843,56 @@ msgstr "Sammenfold sidebjælke"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Indhold"
|
msgstr "Indhold"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Udgave"
|
msgstr "Udgave"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Fare"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Fodnoter"
|
msgstr "Fodnoter"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "fortsat fra forrige side"
|
msgstr "fortsat fra forrige side"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Fortsættes på næste side"
|
msgstr "Fortsættes på næste side"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[billede]"
|
msgstr "[billede]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d. %B, %Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d. %b, %Y"
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "de", "plural_expr": "(n != 1)", "messages": {"Next topic": "N\u00e4chstes Thema", "Index": "Stichwortverzeichnis", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "Willkommen! Dies ist", "Copyright": "Copyright", "C API changes": "C API-\u00c4nderungen", "quick access to all modules": "schneller Zugriff auf alle Module", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "Global Module Index": "Globaler Modulindex", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle W\u00f6rter richtig geschrieben sind und gen\u00fcgend Kategorien ausgew\u00e4hlt sind.", "Index – %(key)s": "Stichwortverzeichnis – %(key)s", "General Index": "Stichwortverzeichnis", "next chapter": "n\u00e4chstes Kapitel", "Search finished, found %s page(s) matching the search query.": "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden.", "previous chapter": "vorheriges Kapitel", "Permalink to this headline": "Link zu dieser \u00dcberschrift", "About these documents": "\u00dcber dieses Dokument", "Preparing search...": "Suche wird vorbereitet...", ", in ": ", in ", "Navigation": "Navigation", "Expand sidebar": "Seitenleiste ausklappen", "the documentation for": "die Dokumentation f\u00fcr", "Complete Table of Contents": "Vollst\u00e4ndiges Inhaltsverzeichnis", "Contents": "Inhalt", "can be huge": "kann gro\u00df sein", "Changes in Version %(version)s — %(docstitle)s": "\u00c4nderungen in Version %(version)s — %(docstitle)s", "Other changes": "Andere \u00c4nderungen", "Hide Search Matches": "Suchergebnisse ausblenden", "Quick search": "Schnellsuche", "Show Source": "Quellcode anzeigen", "Search": "Suche", "This Page": "Diese Seite", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Von hier aus k\u00f6nnen Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erstellt.", "last updated": "zuletzt aktualisiert", "Collapse sidebar": "Seitenleiste einklappen", "Go": "Los", "Table Of Contents": "Inhalt", "Search within %(docstitle)s": "Suche in %(docstitle)s", "all functions, classes, terms": "alle Funktionen, Klassen, Begriffe", "Please activate JavaScript to enable the search\n functionality.": "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen.", "Indices and tables:": "Verzeichnisse und Tabellen:", "lists all sections and subsections": "Liste aller Kapitel und Unterkapitel", "Index pages by letter": "Stichwortverzeichnis nach Anfangsbuchstabe", "search": "suchen", "Permalink to this definition": "Link zu dieser Definition", "Previous topic": "Vorheriges Thema", "Overview": "\u00dcbersicht", "Last updated on %(last_updated)s.": "Zuletzt aktualisiert am %(last_updated)s.", "Searching": "Suchen", "search this documentation": "durchsuche diese Dokumentation", "Automatically generated list of changes in version %(version)s": "Automatisch generierte Liste der \u00c4nderungen in Version %(version)s", "Full index on one page": "Gesamtes Stichwortverzeichnis auf einer Seite", "Enter search terms or a module, class or function name.": "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen ein.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "Library changes": "Bibliotheks-\u00c4nderungen", "Search Page": "Suche", "Search Results": "Suchergebnisse"}});
|
Documentation.addTranslations({"locale": "de", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "\u00dcber dieses Dokument", "Automatically generated list of changes in version %(version)s": "Automatisch generierte Liste der \u00c4nderungen in Version %(version)s", "C API changes": "C API-\u00c4nderungen", "Changes in Version %(version)s — %(docstitle)s": "\u00c4nderungen in Version %(version)s — %(docstitle)s", "Collapse sidebar": "Seitenleiste einklappen", "Complete Table of Contents": "Vollst\u00e4ndiges Inhaltsverzeichnis", "Contents": "Inhalt", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erstellt.", "Enter search terms or a module, class or function name.": "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen ein.", "Expand sidebar": "Seitenleiste ausklappen", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Von hier aus k\u00f6nnen Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste.", "Full index on one page": "Gesamtes Stichwortverzeichnis auf einer Seite", "General Index": "Stichwortverzeichnis", "Global Module Index": "Globaler Modulindex", "Go": "Los", "Hide Search Matches": "Suchergebnisse ausblenden", "Index": "Stichwortverzeichnis", "Index – %(key)s": "Stichwortverzeichnis – %(key)s", "Index pages by letter": "Stichwortverzeichnis nach Anfangsbuchstabe", "Indices and tables:": "Verzeichnisse und Tabellen:", "Last updated on %(last_updated)s.": "Zuletzt aktualisiert am %(last_updated)s.", "Library changes": "Bibliotheks-\u00c4nderungen", "Navigation": "Navigation", "Next topic": "N\u00e4chstes Thema", "Other changes": "Andere \u00c4nderungen", "Overview": "\u00dcbersicht", "Permalink to this definition": "Link zu dieser Definition", "Permalink to this headline": "Link zu dieser \u00dcberschrift", "Please activate JavaScript to enable the search\n functionality.": "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen.", "Preparing search...": "Suche wird vorbereitet...", "Previous topic": "Vorheriges Thema", "Quick search": "Schnellsuche", "Search": "Suche", "Search Page": "Suche", "Search Results": "Suchergebnisse", "Search finished, found %s page(s) matching the search query.": "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden.", "Search within %(docstitle)s": "Suche in %(docstitle)s", "Searching": "Suchen", "Show Source": "Quellcode anzeigen", "Table Of Contents": "Inhalt", "This Page": "Diese Seite", "Welcome! This is": "Willkommen! Dies ist", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle W\u00f6rter richtig geschrieben sind und gen\u00fcgend Kategorien ausgew\u00e4hlt sind.", "all functions, classes, terms": "alle Funktionen, Klassen, Begriffe", "can be huge": "kann gro\u00df sein", "last updated": "zuletzt aktualisiert", "lists all sections and subsections": "Liste aller Kapitel und Unterkapitel", "next chapter": "n\u00e4chstes Kapitel", "previous chapter": "vorheriges Kapitel", "quick access to all modules": "schneller Zugriff auf alle Module", "search": "suchen", "search this documentation": "durchsuche diese Dokumentation", "the documentation for": "die Dokumentation f\u00fcr"}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,55 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# German translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# Georg Brandl <g.brandl@gmx.net>, 2013-2015
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: German (http://www.transifex.com/projects/p/sphinx-1/language/de/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: German "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/de/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "Abb. %s"
|
msgstr "Abb. %s"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "Tab. %s"
|
msgstr "Tab. %s"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr "Quellcode %s"
|
msgstr "Quellcode %s"
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "%s %s Dokumentation"
|
msgstr "%s %s Dokumentation"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "siehe %s"
|
msgstr "siehe %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "siehe auch %s"
|
msgstr "siehe auch %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Sonderzeichen"
|
msgstr "Sonderzeichen"
|
||||||
|
|
||||||
@ -58,11 +58,10 @@ msgstr "Sonderzeichen"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d.%m.%Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -72,64 +71,63 @@ msgstr "Builtins"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Modulebene"
|
msgstr "Modulebene"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d.%m.%Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Stichwortverzeichnis"
|
msgstr "Stichwortverzeichnis"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "Index"
|
msgstr "Index"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "weiter"
|
msgstr "weiter"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "zurück"
|
msgstr "zurück"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (in "
|
msgstr " (in "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Autor des Abschnitts: "
|
msgstr "Autor des Abschnitts: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Autor des Moduls: "
|
msgstr "Autor des Moduls: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Autor des Quellcode: "
|
msgstr "Autor des Quellcode: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Autor: "
|
msgstr "Autor: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s-%s"
|
msgstr "%s-%s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Parameter"
|
msgstr "Parameter"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Rückgabe"
|
msgstr "Rückgabe"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Rückgabetyp"
|
msgstr "Rückgabetyp"
|
||||||
|
|
||||||
@ -158,12 +156,12 @@ msgstr "%s (C-Typ)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C-Variable)"
|
msgstr "%s (C-Variable)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "Funktion"
|
msgstr "Funktion"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "Member"
|
msgstr "Member"
|
||||||
|
|
||||||
@ -171,7 +169,7 @@ msgstr "Member"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "Makro"
|
msgstr "Makro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "Typ"
|
msgstr "Typ"
|
||||||
|
|
||||||
@ -179,59 +177,64 @@ msgstr "Typ"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "Variable"
|
msgstr "Variable"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Parameter"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Wirft"
|
msgstr "Wirft"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++-Typ)"
|
msgstr "%s (C++-Typ)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++-Member)"
|
msgstr "%s (C++-Member)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++-Funktion)"
|
msgstr "%s (C++-Funktion)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++-Klasse)"
|
msgstr "%s (C++-Klasse)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr "%s (C++-Aufzählung)"
|
msgstr "%s (C++-Aufzählung)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr "%s (C++-Enumerator)"
|
msgstr "%s (C++-Enumerator)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "Klasse"
|
msgstr "Klasse"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr "Aufzählung"
|
msgstr "Aufzählung"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr "Enumerator"
|
msgstr "Enumerator"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (Standard-Funktion)"
|
msgstr "%s() (Standard-Funktion)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (Methode von %s)"
|
msgstr "%s() (Methode von %s)"
|
||||||
@ -246,7 +249,7 @@ msgstr "%s() (Klasse)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (globale Variable oder Konstante)"
|
msgstr "%s (globale Variable oder Konstante)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (Attribut von %s)"
|
msgstr "%s (Attribut von %s)"
|
||||||
@ -255,116 +258,116 @@ msgstr "%s (Attribut von %s)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Parameter"
|
msgstr "Parameter"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "Wert"
|
msgstr "Wert"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "Attribut"
|
msgstr "Attribut"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Variablen"
|
msgstr "Variablen"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Verursacht"
|
msgstr "Verursacht"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (im Modul %s)"
|
msgstr "%s() (im Modul %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (Standard-Variable)"
|
msgstr "%s (Standard-Variable)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (in Modul %s)"
|
msgstr "%s (in Modul %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (Builtin-Klasse)"
|
msgstr "%s (Builtin-Klasse)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (Klasse in %s)"
|
msgstr "%s (Klasse in %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (Methode von %s.%s)"
|
msgstr "%s() (Methode von %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (statische Methode von %s.%s)"
|
msgstr "%s() (statische Methode von %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (statische Methode von %s)"
|
msgstr "%s() (statische Methode von %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (Klassenmethode von %s.%s)"
|
msgstr "%s() (Klassenmethode von %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (Klassenmethode von %s)"
|
msgstr "%s() (Klassenmethode von %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (Attribut von %s.%s)"
|
msgstr "%s (Attribut von %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (Modul)"
|
msgstr "%s (Modul)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Python-Modulindex"
|
msgstr "Python-Modulindex"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "Module"
|
msgstr "Module"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Veraltet"
|
msgstr "Veraltet"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "Exception"
|
msgstr "Exception"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "Methode"
|
msgstr "Methode"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "Klassenmethode"
|
msgstr "Klassenmethode"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "statische Methode"
|
msgstr "statische Methode"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "Modul"
|
msgstr "Modul"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (veraltet)"
|
msgstr " (veraltet)"
|
||||||
|
|
||||||
@ -396,64 +399,64 @@ msgstr "Umgebungsvariable; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%sKommandozeilenoption; %s"
|
msgstr "%sKommandozeilenoption; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "Glossareintrag"
|
msgstr "Glossareintrag"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "Grammatik-Token"
|
msgstr "Grammatik-Token"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "Referenz-Label"
|
msgstr "Referenz-Label"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "Umgebungsvariable"
|
msgstr "Umgebungsvariable"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "Programmoption"
|
msgstr "Programmoption"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Stichwortverzeichnis"
|
msgstr "Stichwortverzeichnis"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Modulindex"
|
msgstr "Modulindex"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Suche"
|
msgstr "Suche"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Basisklassen: %s"
|
msgstr " Basisklassen: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "Alias von :class:`%s`"
|
msgstr "Alias von :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr "[Diagramm: %s]"
|
msgstr "[Diagramm: %s]"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr "[Diagramm]"
|
msgstr "[Diagramm]"
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr "(in %s v%s)"
|
msgstr "(in %s v%s)"
|
||||||
@ -462,112 +465,117 @@ msgstr "(in %s v%s)"
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[Quellcode]"
|
msgstr "[Quellcode]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Zu tun"
|
msgstr "Zu tun"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "ursprüngliche Eintrag"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(Der <<ursprüngliche Eintrag>> steht in %s, Zeile %d.)"
|
msgstr "(Der <<ursprüngliche Eintrag>> steht in %s, Zeile %d.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "ursprüngliche Eintrag"
|
msgstr "ursprüngliche Eintrag"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[Doku]"
|
msgstr "[Doku]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Modul-Quellcode"
|
msgstr "Modul-Quellcode"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>Quellcode für %s</h1>"
|
msgstr "<h1>Quellcode für %s</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Überblick: Modul-Quellcode"
|
msgstr "Überblick: Modul-Quellcode"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Alle Module, für die Quellcode verfügbar ist</h1>"
|
msgstr "<h1>Alle Module, für die Quellcode verfügbar ist</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Achtung"
|
msgstr "Achtung"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Vorsicht"
|
msgstr "Vorsicht"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Gefahr"
|
msgstr "Gefahr"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Fehler"
|
msgstr "Fehler"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Hinweis"
|
msgstr "Hinweis"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Wichtig"
|
msgstr "Wichtig"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Bemerkung"
|
msgstr "Bemerkung"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Siehe auch"
|
msgstr "Siehe auch"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Tipp"
|
msgstr "Tipp"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Warnung"
|
msgstr "Warnung"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Neu in Version %s"
|
msgstr "Neu in Version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Geändert in Version %s"
|
msgstr "Geändert in Version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Veraltet ab Version %s"
|
msgstr "Veraltet ab Version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "Schlüsselwort"
|
msgstr "Schlüsselwort"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "Operator"
|
msgstr "Operator"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "Anweisung"
|
msgstr "Anweisung"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "Builtin-Funktion"
|
msgstr "Builtin-Funktion"
|
||||||
|
|
||||||
@ -588,7 +596,9 @@ msgstr "Los"
|
|||||||
|
|
||||||
#: sphinx/themes/agogo/layout.html:59 sphinx/themes/basic/searchbox.html:20
|
#: sphinx/themes/agogo/layout.html:59 sphinx/themes/basic/searchbox.html:20
|
||||||
msgid "Enter search terms or a module, class or function name."
|
msgid "Enter search terms or a module, class or function name."
|
||||||
msgstr "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen ein."
|
msgstr ""
|
||||||
|
"Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen "
|
||||||
|
"ein."
|
||||||
|
|
||||||
#: sphinx/themes/agogo/layout.html:84 sphinx/themes/basic/sourcelink.html:15
|
#: sphinx/themes/agogo/layout.html:84 sphinx/themes/basic/sourcelink.html:15
|
||||||
msgid "Show Source"
|
msgid "Show Source"
|
||||||
@ -695,7 +705,9 @@ msgstr "Zuletzt aktualisiert am %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erstellt."
|
msgstr ""
|
||||||
|
"Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s "
|
||||||
|
"erstellt."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -730,26 +742,30 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Von hier aus können Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste."
|
msgstr ""
|
||||||
|
"Von hier aus können Sie die Dokumentation durchsuchen. Geben Sie Ihre "
|
||||||
|
"Suchbegriffe in das untenstehende Feld ein und klicken Sie auf "
|
||||||
|
"\"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach "
|
||||||
|
"allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen "
|
||||||
|
"nicht in der Ergebnisliste."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "suchen"
|
msgstr "suchen"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Suchergebnisse"
|
msgstr "Suchergebnisse"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind."
|
msgstr ""
|
||||||
|
"Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle "
|
||||||
|
"Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind."
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
msgid "Quick search"
|
msgid "Quick search"
|
||||||
@ -787,33 +803,33 @@ msgstr "C API-Änderungen"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Andere Änderungen"
|
msgstr "Andere Änderungen"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Link zu dieser Überschrift"
|
msgstr "Link zu dieser Überschrift"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Link zu dieser Definition"
|
msgstr "Link zu dieser Definition"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Suchergebnisse ausblenden"
|
msgstr "Suchergebnisse ausblenden"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr "Suchen"
|
msgstr "Suchen"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr "Suche wird vorbereitet..."
|
msgstr "Suche wird vorbereitet..."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden."
|
msgstr "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ", in "
|
msgstr ", in "
|
||||||
|
|
||||||
@ -830,44 +846,56 @@ msgstr "Seitenleiste einklappen"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Inhalt"
|
msgstr "Inhalt"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr "Link zu diesem Quellcode"
|
msgstr "Link zu diesem Quellcode"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr "Link zu diesem Bild"
|
msgstr "Link zu diesem Bild"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr "Link zu dieser Tabelle"
|
msgstr "Link zu dieser Tabelle"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Release"
|
msgstr "Release"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Gefahr"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Fußnoten"
|
msgstr "Fußnoten"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "Fortsetzung der vorherigen Seite"
|
msgstr "Fortsetzung der vorherigen Seite"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Fortsetzung auf der nächsten Seite"
|
msgstr "Fortsetzung auf der nächsten Seite"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr "[Bild: %s]"
|
msgstr "[Bild: %s]"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[Bild]"
|
msgstr "[Bild]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d.%m.%Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d.%m.%Y"
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "es", "plural_expr": "(n != 1)", "messages": {"Next topic": "Pr\u00f3ximo tema", "Index": "\u00cdndice", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "\u00a1Bienvenido! Este es", "Copyright": "Copyright", "C API changes": "Cambios en la API C", "quick access to all modules": "acceso r\u00e1pido a todos los m\u00f3dulos", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Su b\u00fasqueda no coincide con ning\u00fan documentos. Por favor, aseg\u00farese de que todas las palabras est\u00e9n correctamente escritas y que usted all\u00e1 seleccionado las suficientes categor\u00edas.", "Index – %(key)s": "\u00cdndice – %(key)s", "General Index": "\u00cdndice General", "next chapter": "pr\u00f3ximo cap\u00edtulo", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, encontr\u00f3 %s p\u00e1gina(s) acorde con la consulta de b\u00fasqueda.", "previous chapter": "cap\u00edtulo anterior", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "About these documents": "Sobre este documento", "Preparing search...": "Preparando b\u00fasqueda...", ", in ": ", en ", "Navigation": "Navegaci\u00f3n", "Expand sidebar": "Expandir barra lateral", "the documentation for": "la documentaci\u00f3n para", "Complete Table of Contents": "\u00cdndice de contenidos completo", "Contents": "Contenidos", "can be huge": "puede ser muy grande", "Changes in Version %(version)s — %(docstitle)s": "Cambios en la versi\u00f3n %(version)s — %(docstitle)s", "Other changes": "Otros cambios", "Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Quick search": "B\u00fasqueda r\u00e1pida", "Show Source": "Mostrar el c\u00f3digo", "Search": "B\u00fasqueda", "This Page": "Esta p\u00e1gina", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Este es el di\u00e1logo de b\u00fasqueda. Introduce los t\u00e9rminos en el\n di\u00e1logo siguiente y pulsa \"buscar\". Note que el asistente buscar\u00e1 \n autom\u00e1ticamente todas las palabras. Las p\u00e1ginas que contengan \n menos palabras no aparecer\u00e1n en la lista de resultados.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "last updated": "actualizado por \u00faltima vez el", "Collapse sidebar": "Contraer barra lateral", "Go": "Ir a", "Table Of Contents": "Tabla de Contenidos", "Search within %(docstitle)s": "Buscar en %(docstitle)s", "all functions, classes, terms": "todas las funciones, clases, t\u00e9rminos", "Please activate JavaScript to enable the search\n functionality.": "Por favor, active JavaScript para habilitar la funcionalidad\n de b\u00fasqueda.", "Indices and tables:": "\u00cdndices y tablas:", "lists all sections and subsections": "muestra todas las secciones y subsecciones", "Index pages by letter": "\u00cdndice alfab\u00e9tico de p\u00e1ginas", "search": "buscar", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Previous topic": "Tema anterior", "Overview": "Resumen", "Last updated on %(last_updated)s.": "Actualizado por \u00faltima vez en %(last_updated)s.", "Searching": "Buscando", "search this documentation": "buscar en esta documentaci\u00f3n", "Automatically generated list of changes in version %(version)s": "Lista de cambios generada autom\u00e1ticamente en la versi\u00f3n %(version)s", "Full index on one page": "\u00cdndice completo en una p\u00e1gina", "Enter search terms or a module, class or function name.": "Introduzca los t\u00e9rminos de b\u00fasqueda o un nombre de m\u00f3dulo, clase o funci\u00f3n.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\\\"%(path)s\\\">Copyright</a> %(copyright)s.", "Library changes": "Cambios en la biblioteca", "Search Page": "P\u00e1gina de B\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda"}});
|
Documentation.addTranslations({"locale": "es", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\\\"%(path)s\\\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", en ", "About these documents": "Sobre este documento", "Automatically generated list of changes in version %(version)s": "Lista de cambios generada autom\u00e1ticamente en la versi\u00f3n %(version)s", "C API changes": "Cambios en la API C", "Changes in Version %(version)s — %(docstitle)s": "Cambios en la versi\u00f3n %(version)s — %(docstitle)s", "Collapse sidebar": "Contraer barra lateral", "Complete Table of Contents": "\u00cdndice de contenidos completo", "Contents": "Contenidos", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Introduzca los t\u00e9rminos de b\u00fasqueda o un nombre de m\u00f3dulo, clase o funci\u00f3n.", "Expand sidebar": "Expandir barra lateral", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Este es el di\u00e1logo de b\u00fasqueda. Introduce los t\u00e9rminos en el\n di\u00e1logo siguiente y pulsa \"buscar\". Note que el asistente buscar\u00e1 \n autom\u00e1ticamente todas las palabras. Las p\u00e1ginas que contengan \n menos palabras no aparecer\u00e1n en la lista de resultados.", "Full index on one page": "\u00cdndice completo en una p\u00e1gina", "General Index": "\u00cdndice General", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir a", "Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "\u00cdndice alfab\u00e9tico de p\u00e1ginas", "Indices and tables:": "\u00cdndices y tablas:", "Last updated on %(last_updated)s.": "Actualizado por \u00faltima vez en %(last_updated)s.", "Library changes": "Cambios en la biblioteca", "Navigation": "Navegaci\u00f3n", "Next topic": "Pr\u00f3ximo tema", "Other changes": "Otros cambios", "Overview": "Resumen", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, active JavaScript para habilitar la funcionalidad\n de b\u00fasqueda.", "Preparing search...": "Preparando b\u00fasqueda...", "Previous topic": "Tema anterior", "Quick search": "B\u00fasqueda r\u00e1pida", "Search": "B\u00fasqueda", "Search Page": "P\u00e1gina de B\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, encontr\u00f3 %s p\u00e1gina(s) acorde con la consulta de b\u00fasqueda.", "Search within %(docstitle)s": "Buscar en %(docstitle)s", "Searching": "Buscando", "Show Source": "Mostrar el c\u00f3digo", "Table Of Contents": "Tabla de Contenidos", "This Page": "Esta p\u00e1gina", "Welcome! This is": "\u00a1Bienvenido! Este es", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Su b\u00fasqueda no coincide con ning\u00fan documentos. Por favor, aseg\u00farese de que todas las palabras est\u00e9n correctamente escritas y que usted all\u00e1 seleccionado las suficientes categor\u00edas.", "all functions, classes, terms": "todas las funciones, clases, t\u00e9rminos", "can be huge": "puede ser muy grande", "last updated": "actualizado por \u00faltima vez el", "lists all sections and subsections": "muestra todas las secciones y subsecciones", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acceso r\u00e1pido a todos los m\u00f3dulos", "search": "buscar", "search this documentation": "buscar en esta documentaci\u00f3n", "the documentation for": "la documentaci\u00f3n para"}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,56 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Spanish translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# Guillem Borrell <guillem@torroja.dmt.upm.es>, 2011
|
|
||||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2013-2015
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Spanish (http://www.transifex.com/projects/p/sphinx-1/language/es/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Spanish "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/es/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "Figura %s"
|
msgstr "Figura %s"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "Tabla %s"
|
msgstr "Tabla %s"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr "Lista %s"
|
msgstr "Lista %s"
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "documentación de %s - %s"
|
msgstr "documentación de %s - %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "ver %s"
|
msgstr "ver %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "ver también %s"
|
msgstr "ver también %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Símbolos"
|
msgstr "Símbolos"
|
||||||
|
|
||||||
@ -59,11 +58,10 @@ msgstr "Símbolos"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d de %B de %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -73,64 +71,63 @@ msgstr "Funciones incorporadas"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Nivel de módulo"
|
msgstr "Nivel de módulo"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d de %B de %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Índice General"
|
msgstr "Índice General"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "índice"
|
msgstr "índice"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "siguiente"
|
msgstr "siguiente"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "anterior"
|
msgstr "anterior"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (en "
|
msgstr " (en "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Autor de la sección: "
|
msgstr "Autor de la sección: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Autor del módulo: "
|
msgstr "Autor del módulo: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Código del autor: "
|
msgstr "Código del autor: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Autor: "
|
msgstr "Autor: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Parámetros"
|
msgstr "Parámetros"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Devuelve"
|
msgstr "Devuelve"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Tipo del valor devuelto"
|
msgstr "Tipo del valor devuelto"
|
||||||
|
|
||||||
@ -159,12 +156,12 @@ msgstr "%s (tipo C)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (variable C)"
|
msgstr "%s (variable C)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "función"
|
msgstr "función"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "miembro"
|
msgstr "miembro"
|
||||||
|
|
||||||
@ -172,7 +169,7 @@ msgstr "miembro"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "macro"
|
msgstr "macro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "tipo"
|
msgstr "tipo"
|
||||||
|
|
||||||
@ -180,59 +177,64 @@ msgstr "tipo"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "variable"
|
msgstr "variable"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Parámetros"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Lanzamientos"
|
msgstr "Lanzamientos"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (tipo C++)"
|
msgstr "%s (tipo C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (miembro C++)"
|
msgstr "%s (miembro C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (función C++)"
|
msgstr "%s (función C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (clase C++)"
|
msgstr "%s (clase C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr "%s (enum de C++)"
|
msgstr "%s (enum de C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr "%s (enumeración de C++)"
|
msgstr "%s (enumeración de C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "clase"
|
msgstr "clase"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr "enum"
|
msgstr "enum"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr "enumeración"
|
msgstr "enumeración"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (función incorporada)"
|
msgstr "%s() (función incorporada)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (método de %s)"
|
msgstr "%s() (método de %s)"
|
||||||
@ -247,7 +249,7 @@ msgstr "%s() (clase)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (variable global o constante)"
|
msgstr "%s (variable global o constante)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (atributo de %s)"
|
msgstr "%s (atributo de %s)"
|
||||||
@ -256,116 +258,116 @@ msgstr "%s (atributo de %s)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argumentos"
|
msgstr "Argumentos"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "dato"
|
msgstr "dato"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "atributo"
|
msgstr "atributo"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Variables"
|
msgstr "Variables"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Muestra"
|
msgstr "Muestra"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (en el módulo %s)"
|
msgstr "%s() (en el módulo %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (variable incorporada)"
|
msgstr "%s (variable incorporada)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (en el módulo %s)"
|
msgstr "%s (en el módulo %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (clase incorporada)"
|
msgstr "%s (clase incorporada)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (clase en %s)"
|
msgstr "%s (clase en %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (método de %s.%s)"
|
msgstr "%s() (método de %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (método estático de %s.%s)"
|
msgstr "%s() (método estático de %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (método estático de %s)"
|
msgstr "%s() (método estático de %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (método de clase de %s.%s)"
|
msgstr "%s() (método de clase de %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (método de clase de %s)"
|
msgstr "%s() (método de clase de %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (atributo de %s.%s)"
|
msgstr "%s (atributo de %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (módulo)"
|
msgstr "%s (módulo)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Índice de Módulos Python"
|
msgstr "Índice de Módulos Python"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "módulos"
|
msgstr "módulos"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Obsoleto"
|
msgstr "Obsoleto"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "excepción"
|
msgstr "excepción"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "método"
|
msgstr "método"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "método de la clase"
|
msgstr "método de la clase"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "método estático"
|
msgstr "método estático"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "módulo"
|
msgstr "módulo"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (obsoleto)"
|
msgstr " (obsoleto)"
|
||||||
|
|
||||||
@ -397,64 +399,64 @@ msgstr "variables de entorno; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%sopción en línea de comandos; %s"
|
msgstr "%sopción en línea de comandos; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "termino de glosario"
|
msgstr "termino de glosario"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "gramática simbólica"
|
msgstr "gramática simbólica"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "etiqueta de referencia"
|
msgstr "etiqueta de referencia"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "variables de entorno"
|
msgstr "variables de entorno"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "opción de programa"
|
msgstr "opción de programa"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Índice"
|
msgstr "Índice"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Índice de Módulos"
|
msgstr "Índice de Módulos"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Página de Búsqueda"
|
msgstr "Página de Búsqueda"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Clases base: %s"
|
msgstr " Clases base: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "alias de :class:`%s`"
|
msgstr "alias de :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr "[gráfica: %s]"
|
msgstr "[gráfica: %s]"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr "[gráfica]"
|
msgstr "[gráfica]"
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr "(en %s versión %s)"
|
msgstr "(en %s versión %s)"
|
||||||
@ -463,112 +465,117 @@ msgstr "(en %s versión %s)"
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[fuente]"
|
msgstr "[fuente]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Por hacer"
|
msgstr "Por hacer"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "entrada original"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(El <<entrada original>> se encuentra en %s, en la línea %d.)"
|
msgstr "(El <<entrada original>> se encuentra en %s, en la línea %d.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "entrada original"
|
msgstr "entrada original"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[documentos]"
|
msgstr "[documentos]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Código de módulo"
|
msgstr "Código de módulo"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>Código fuente para %s</h1>"
|
msgstr "<h1>Código fuente para %s</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Resumen: código de modulo"
|
msgstr "Resumen: código de modulo"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Todos los módulos para los cuales disponen código</h1>"
|
msgstr "<h1>Todos los módulos para los cuales disponen código</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Atención"
|
msgstr "Atención"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Prudencia"
|
msgstr "Prudencia"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Peligro"
|
msgstr "Peligro"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Error"
|
msgstr "Error"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Consejo"
|
msgstr "Consejo"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Importante"
|
msgstr "Importante"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Ver también"
|
msgstr "Ver también"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Truco"
|
msgstr "Truco"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Advertencia"
|
msgstr "Advertencia"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Nuevo en la versión %s"
|
msgstr "Nuevo en la versión %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Distinto en la versión %s"
|
msgstr "Distinto en la versión %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Obsoleto desde la versión %s"
|
msgstr "Obsoleto desde la versión %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "palabra clave"
|
msgstr "palabra clave"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "operador"
|
msgstr "operador"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objeto"
|
msgstr "objeto"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "sentencia"
|
msgstr "sentencia"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "función incorporada"
|
msgstr "función incorporada"
|
||||||
|
|
||||||
@ -589,7 +596,9 @@ msgstr "Ir a"
|
|||||||
|
|
||||||
#: sphinx/themes/agogo/layout.html:59 sphinx/themes/basic/searchbox.html:20
|
#: sphinx/themes/agogo/layout.html:59 sphinx/themes/basic/searchbox.html:20
|
||||||
msgid "Enter search terms or a module, class or function name."
|
msgid "Enter search terms or a module, class or function name."
|
||||||
msgstr "Introduzca los términos de búsqueda o un nombre de módulo, clase o función."
|
msgstr ""
|
||||||
|
"Introduzca los términos de búsqueda o un nombre de módulo, clase o "
|
||||||
|
"función."
|
||||||
|
|
||||||
#: sphinx/themes/agogo/layout.html:84 sphinx/themes/basic/sourcelink.html:15
|
#: sphinx/themes/agogo/layout.html:84 sphinx/themes/basic/sourcelink.html:15
|
||||||
msgid "Show Source"
|
msgid "Show Source"
|
||||||
@ -696,7 +705,9 @@ msgstr "Actualizado por última vez en %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s."
|
msgstr ""
|
||||||
|
"Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -723,7 +734,9 @@ msgstr "próximo capítulo"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Please activate JavaScript to enable the search\n"
|
"Please activate JavaScript to enable the search\n"
|
||||||
" functionality."
|
" functionality."
|
||||||
msgstr "Por favor, active JavaScript para habilitar la funcionalidad\n de búsqueda."
|
msgstr ""
|
||||||
|
"Por favor, active JavaScript para habilitar la funcionalidad\n"
|
||||||
|
" de búsqueda."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:32
|
#: sphinx/themes/basic/search.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -731,26 +744,30 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Este es el diálogo de búsqueda. Introduce los términos en el\n diálogo siguiente y pulsa \"buscar\". Note que el asistente buscará \n automáticamente todas las palabras. Las páginas que contengan \n menos palabras no aparecerán en la lista de resultados."
|
msgstr ""
|
||||||
|
"Este es el diálogo de búsqueda. Introduce los términos en el\n"
|
||||||
|
" diálogo siguiente y pulsa \"buscar\". Note que el asistente buscará \n"
|
||||||
|
" automáticamente todas las palabras. Las páginas que contengan \n"
|
||||||
|
" menos palabras no aparecerán en la lista de resultados."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "buscar"
|
msgstr "buscar"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Resultados de la búsqueda"
|
msgstr "Resultados de la búsqueda"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr "Su búsqueda no coincide con ningún documentos. Por favor, asegúrese de que todas las palabras estén correctamente escritas y que usted allá seleccionado las suficientes categorías."
|
msgstr ""
|
||||||
|
"Su búsqueda no coincide con ningún documentos. Por favor, asegúrese de "
|
||||||
|
"que todas las palabras estén correctamente escritas y que usted allá "
|
||||||
|
"seleccionado las suficientes categorías."
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
msgid "Quick search"
|
msgid "Quick search"
|
||||||
@ -788,33 +805,35 @@ msgstr "Cambios en la API C"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Otros cambios"
|
msgstr "Otros cambios"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Enlazar permanentemente con este título"
|
msgstr "Enlazar permanentemente con este título"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Enlazar permanentemente con esta definición"
|
msgstr "Enlazar permanentemente con esta definición"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Ocultar coincidencias de la búsqueda"
|
msgstr "Ocultar coincidencias de la búsqueda"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr "Buscando"
|
msgstr "Buscando"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr "Preparando búsqueda..."
|
msgstr "Preparando búsqueda..."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr "Búsqueda finalizada, encontró %s página(s) acorde con la consulta de búsqueda."
|
msgstr ""
|
||||||
|
"Búsqueda finalizada, encontró %s página(s) acorde con la consulta de "
|
||||||
|
"búsqueda."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ", en "
|
msgstr ", en "
|
||||||
|
|
||||||
@ -831,44 +850,56 @@ msgstr "Contraer barra lateral"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Contenidos"
|
msgstr "Contenidos"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr "Enlace permanente a este código fuente"
|
msgstr "Enlace permanente a este código fuente"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr "Enlace permanente a esta imagen"
|
msgstr "Enlace permanente a esta imagen"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr "Enlace permanente a esta tabla"
|
msgstr "Enlace permanente a esta tabla"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Publicación"
|
msgstr "Publicación"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Peligro"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Notas a pie de página"
|
msgstr "Notas a pie de página"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "proviene de la página anterior"
|
msgstr "proviene de la página anterior"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Continúa en la página siguiente"
|
msgstr "Continúa en la página siguiente"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr "[imagen: %s]"
|
msgstr "[imagen: %s]"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[imagen]"
|
msgstr "[imagen]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d de %B de %Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d de %B de %Y"
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "et", "plural_expr": "(n != 1)", "messages": {"Next topic": "J\u00e4rgmine teema", "Index": "Indeks", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "Tervitused! See on", "Copyright": "Autori\u00f5igus", "C API changes": "C API muutused", "quick access to all modules": "kiire ligip\u00e4\u00e4s k\u00f5igile moodulitele", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(copyright)s.", "Global Module Index": "Globaalne moodulite indeks", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid.", "Index – %(key)s": "Indeks – %(key)s", "General Index": "\u00dcldindeks", "next chapter": "j\u00e4rgmine jaotis", "Search finished, found %s page(s) matching the search query.": "Otsingu tulemusena leiti %s leht(e).", "previous chapter": "eelmine jaotis", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale", "About these documents": "Info selle dokumentatsiooni kohta", "Preparing search...": "Otsingu ettevalmistamine...", ", in ": "", "Navigation": "Navigatsioon", "Expand sidebar": "N\u00e4ita k\u00fclgriba", "the documentation for": "dokumentatsioon projektile", "Complete Table of Contents": "T\u00e4ielik sisukord", "Contents": "Sisukord", "can be huge": "v\u00f5ib olla v\u00e4ga suur", "Changes in Version %(version)s — %(docstitle)s": "Muutused versioonis %(version)s — %(docstitle)s", "Other changes": "\u00dclej\u00e4\u00e4nud muutused", "Hide Search Matches": "Varja otsingu tulemused", "Quick search": "Kiirotsing", "Show Source": "N\u00e4ita l\u00e4htekoodi", "Search": "Otsing", "This Page": "K\u00e4esolev leht", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Selle vormi abil saab otsida k\u00e4esolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsis\u00f5nad ning kl\u00f5psa \"Otsi\". Tasub t\u00e4hele panna, et otsingu tulemuses kuvatakse k\u00f5iki otsis\u00f5nasid sisaldavaid lehti.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: %(sphinx_version)s).", "last updated": "viimati uuendatud", "Collapse sidebar": "Varja k\u00fclgriba", "Go": "Otsi", "Table Of Contents": "Sisukord", "Search within %(docstitle)s": "Otsi %(docstitle)s piires", "all functions, classes, terms": "k\u00f5ik funktsioonid, klassid ja terminid", "Please activate JavaScript to enable the search\n functionality.": "Otsingu v\u00f5imaldamiseks tuleb aktiveerida JavaScript.", "Indices and tables:": "Indeksid ja tabelid", "lists all sections and subsections": "toob v\u00e4lja k\u00f5ik sektsioonid ja alamsektsioonid", "Index pages by letter": "Indeksi lehek\u00fcljed algust\u00e4he kaupa", "search": "otsi", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Previous topic": "Eelmine teema", "Overview": "\u00dclevaade", "Last updated on %(last_updated)s.": "Viimati uuendatud %(last_updated)s.", "Searching": "Otsimine", "search this documentation": "otsi sellest dokumentatsioonist", "Automatically generated list of changes in version %(version)s": "Automaatselt genereeritud nimekiri versiooni %(version)s muutustest", "Full index on one page": "T\u00e4isindeks \u00fchel lehel", "Enter search terms or a module, class or function name.": "Sisesta otsingus\u00f5na v\u00f5i mooduli/klassi/funktsiooni nimi.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Autori\u00f5igus</a> %(copyright)s.", "Library changes": "Teegi muutused", "Search Page": "Otsinguleht", "Search Results": "Otsingu tulemused"}});
|
Documentation.addTranslations({"locale": "et", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Autori\u00f5igus</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(copyright)s.", ", in ": "", "About these documents": "Info selle dokumentatsiooni kohta", "Automatically generated list of changes in version %(version)s": "Automaatselt genereeritud nimekiri versiooni %(version)s muutustest", "C API changes": "C API muutused", "Changes in Version %(version)s — %(docstitle)s": "Muutused versioonis %(version)s — %(docstitle)s", "Collapse sidebar": "Varja k\u00fclgriba", "Complete Table of Contents": "T\u00e4ielik sisukord", "Contents": "Sisukord", "Copyright": "Autori\u00f5igus", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: %(sphinx_version)s).", "Enter search terms or a module, class or function name.": "Sisesta otsingus\u00f5na v\u00f5i mooduli/klassi/funktsiooni nimi.", "Expand sidebar": "N\u00e4ita k\u00fclgriba", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Selle vormi abil saab otsida k\u00e4esolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsis\u00f5nad ning kl\u00f5psa \"Otsi\". Tasub t\u00e4hele panna, et otsingu tulemuses kuvatakse k\u00f5iki otsis\u00f5nasid sisaldavaid lehti.", "Full index on one page": "T\u00e4isindeks \u00fchel lehel", "General Index": "\u00dcldindeks", "Global Module Index": "Globaalne moodulite indeks", "Go": "Otsi", "Hide Search Matches": "Varja otsingu tulemused", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeksi lehek\u00fcljed algust\u00e4he kaupa", "Indices and tables:": "Indeksid ja tabelid", "Last updated on %(last_updated)s.": "Viimati uuendatud %(last_updated)s.", "Library changes": "Teegi muutused", "Navigation": "Navigatsioon", "Next topic": "J\u00e4rgmine teema", "Other changes": "\u00dclej\u00e4\u00e4nud muutused", "Overview": "\u00dclevaade", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale", "Please activate JavaScript to enable the search\n functionality.": "Otsingu v\u00f5imaldamiseks tuleb aktiveerida JavaScript.", "Preparing search...": "Otsingu ettevalmistamine...", "Previous topic": "Eelmine teema", "Quick search": "Kiirotsing", "Search": "Otsing", "Search Page": "Otsinguleht", "Search Results": "Otsingu tulemused", "Search finished, found %s page(s) matching the search query.": "Otsingu tulemusena leiti %s leht(e).", "Search within %(docstitle)s": "Otsi %(docstitle)s piires", "Searching": "Otsimine", "Show Source": "N\u00e4ita l\u00e4htekoodi", "Table Of Contents": "Sisukord", "This Page": "K\u00e4esolev leht", "Welcome! This is": "Tervitused! See on", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid.", "all functions, classes, terms": "k\u00f5ik funktsioonid, klassid ja terminid", "can be huge": "v\u00f5ib olla v\u00e4ga suur", "last updated": "viimati uuendatud", "lists all sections and subsections": "toob v\u00e4lja k\u00f5ik sektsioonid ja alamsektsioonid", "next chapter": "j\u00e4rgmine jaotis", "previous chapter": "eelmine jaotis", "quick access to all modules": "kiire ligip\u00e4\u00e4s k\u00f5igile moodulitele", "search": "otsi", "search this documentation": "otsi sellest dokumentatsioonist", "the documentation for": "dokumentatsioon projektile"}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,58 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Estonian translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# Aivar Annamaa <aivar.annamaa@gmail.com>, 2011
|
|
||||||
# Ivar Smolin <okul at linux ee>, 2012
|
|
||||||
# Ivar Smolin <okul@linux.ee>, 2013-2015
|
|
||||||
# Luc Saffre <luc.saffre@gmail.com>, 2015
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Estonian (http://www.transifex.com/projects/p/sphinx-1/language/et/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: et\n"
|
"Language: et\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Estonian "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/et/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "Joonis %s"
|
msgstr "Joonis %s"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "Tabel %s"
|
msgstr "Tabel %s"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr "Nimekiri %s"
|
msgstr "Nimekiri %s"
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "%s %s dokumentatsioon"
|
msgstr "%s %s dokumentatsioon"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "vaata %s"
|
msgstr "vaata %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "vaata ka %s"
|
msgstr "vaata ka %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Sümbolid"
|
msgstr "Sümbolid"
|
||||||
|
|
||||||
@ -61,11 +58,10 @@ msgstr "Sümbolid"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Pythoni täiustusettepanekud; PEP %s"
|
msgstr "Pythoni täiustusettepanekud; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d. %B %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -75,64 +71,63 @@ msgstr "Sisseehitatud"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Mooduli tase"
|
msgstr "Mooduli tase"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d. %b %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Üldindeks"
|
msgstr "Üldindeks"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "indeks"
|
msgstr "indeks"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "järgmine"
|
msgstr "järgmine"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "eelmine"
|
msgstr "eelmine"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (pealkirjas "
|
msgstr " (pealkirjas "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Sektsiooni autor:"
|
msgstr "Sektsiooni autor:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Mooduli autor:"
|
msgstr "Mooduli autor:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Koodi autor:"
|
msgstr "Koodi autor:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Autor: "
|
msgstr "Autor: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Parameetrid"
|
msgstr "Parameetrid"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Tagastab"
|
msgstr "Tagastab"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Tagastustüüp"
|
msgstr "Tagastustüüp"
|
||||||
|
|
||||||
@ -161,12 +156,12 @@ msgstr "%s (C tüüp)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C muutuja)"
|
msgstr "%s (C muutuja)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "funktsioon"
|
msgstr "funktsioon"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "liige"
|
msgstr "liige"
|
||||||
|
|
||||||
@ -174,7 +169,7 @@ msgstr "liige"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "makro"
|
msgstr "makro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "tüüp"
|
msgstr "tüüp"
|
||||||
|
|
||||||
@ -182,59 +177,64 @@ msgstr "tüüp"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "muutuja"
|
msgstr "muutuja"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Parameetrid"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++ tüüp)"
|
msgstr "%s (C++ tüüp)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++ liige)"
|
msgstr "%s (C++ liige)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++ funktsioon)"
|
msgstr "%s (C++ funktsioon)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++ klass)"
|
msgstr "%s (C++ klass)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "klass"
|
msgstr "klass"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (sisseehitatud funktsioon)"
|
msgstr "%s() (sisseehitatud funktsioon)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (%s meetod)"
|
msgstr "%s() (%s meetod)"
|
||||||
@ -249,7 +249,7 @@ msgstr "%s() (klass)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (globaalmuutuja või konstant)"
|
msgstr "%s (globaalmuutuja või konstant)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (%s atribuut)"
|
msgstr "%s (%s atribuut)"
|
||||||
@ -258,116 +258,116 @@ msgstr "%s (%s atribuut)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argumendid"
|
msgstr "Argumendid"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "andmed"
|
msgstr "andmed"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "atribuut"
|
msgstr "atribuut"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Muutujad"
|
msgstr "Muutujad"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (moodulis %s)"
|
msgstr "%s() (moodulis %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (sisseehitatud muutuja)"
|
msgstr "%s (sisseehitatud muutuja)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (moodulis %s)"
|
msgstr "%s (moodulis %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (sisseehitatud klass)"
|
msgstr "%s (sisseehitatud klass)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (klass moodulis %s)"
|
msgstr "%s (klass moodulis %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (%s.%s meetod)"
|
msgstr "%s() (%s.%s meetod)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (%s.%s staatiline meetod)"
|
msgstr "%s() (%s.%s staatiline meetod)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (%s staatiline meetod)"
|
msgstr "%s() (%s staatiline meetod)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (klassi %s.%s meetod)"
|
msgstr "%s() (klassi %s.%s meetod)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (klassi %s meetod)"
|
msgstr "%s() (klassi %s meetod)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (%s.%s atribuut)"
|
msgstr "%s (%s.%s atribuut)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (moodul)"
|
msgstr "%s (moodul)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Pythoni moodulite indeks"
|
msgstr "Pythoni moodulite indeks"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "moodulid"
|
msgstr "moodulid"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Iganenud"
|
msgstr "Iganenud"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "erind"
|
msgstr "erind"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "meetod"
|
msgstr "meetod"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "klassi meetod"
|
msgstr "klassi meetod"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "staatiline meetod"
|
msgstr "staatiline meetod"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "moodul"
|
msgstr "moodul"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (iganenud)"
|
msgstr " (iganenud)"
|
||||||
|
|
||||||
@ -399,64 +399,64 @@ msgstr "keskkonnamuutuja; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%s käsurea valik; %s"
|
msgstr "%s käsurea valik; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "sõnastiku termin"
|
msgstr "sõnastiku termin"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "grammatika märk"
|
msgstr "grammatika märk"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "viite pealkiri"
|
msgstr "viite pealkiri"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "keskkonnamuutuja"
|
msgstr "keskkonnamuutuja"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "programmi valik"
|
msgstr "programmi valik"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Indeks"
|
msgstr "Indeks"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Mooduli indeks"
|
msgstr "Mooduli indeks"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Otsinguleht"
|
msgstr "Otsinguleht"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Pärineb: %s"
|
msgstr " Pärineb: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "klassi :class:`%s` sünonüüm"
|
msgstr "klassi :class:`%s` sünonüüm"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr "[joonis: %s]"
|
msgstr "[joonis: %s]"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr "[joonis]"
|
msgstr "[joonis]"
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -465,112 +465,117 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[lähtekood]"
|
msgstr "[lähtekood]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Teha"
|
msgstr "Teha"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "algne kirje"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(<<Algne kirje>> asub failis %s real %d.)"
|
msgstr "(<<Algne kirje>> asub failis %s real %d.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "algne kirje"
|
msgstr "algne kirje"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[dokumentatsioon]"
|
msgstr "[dokumentatsioon]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Mooduli kood"
|
msgstr "Mooduli kood"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>%s lähtekood</h1>"
|
msgstr "<h1>%s lähtekood</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Ülevaade: mooduli kood"
|
msgstr "Ülevaade: mooduli kood"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Kõik lähtekoodiga moodulid</h1>"
|
msgstr "<h1>Kõik lähtekoodiga moodulid</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Tähelepanu"
|
msgstr "Tähelepanu"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Ettevaatust"
|
msgstr "Ettevaatust"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Oht"
|
msgstr "Oht"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Viga"
|
msgstr "Viga"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Vihje"
|
msgstr "Vihje"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Tähtis"
|
msgstr "Tähtis"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Märkus"
|
msgstr "Märkus"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Vaata ka"
|
msgstr "Vaata ka"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Nõuanne"
|
msgstr "Nõuanne"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Hoiatus"
|
msgstr "Hoiatus"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Uus versioonis %s"
|
msgstr "Uus versioonis %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Muudetud versioonis %s"
|
msgstr "Muudetud versioonis %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Iganenud alates versioonist %s"
|
msgstr "Iganenud alates versioonist %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "võtmesõna"
|
msgstr "võtmesõna"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "operaator"
|
msgstr "operaator"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objekt"
|
msgstr "objekt"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "lause"
|
msgstr "lause"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "sisseehitatud funktsioon"
|
msgstr "sisseehitatud funktsioon"
|
||||||
|
|
||||||
@ -698,7 +703,9 @@ msgstr "Viimati uuendatud %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: %(sphinx_version)s)."
|
msgstr ""
|
||||||
|
"Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: "
|
||||||
|
"%(sphinx_version)s)."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -733,26 +740,29 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Selle vormi abil saab otsida käesolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsisõnad ning klõpsa \"Otsi\". Tasub tähele panna, et otsingu tulemuses kuvatakse kõiki otsisõnasid sisaldavaid lehti."
|
msgstr ""
|
||||||
|
"Selle vormi abil saab otsida käesolevast dokumentatsioonist. Sisesta "
|
||||||
|
"allolevasse lahtrisse otsisõnad ning klõpsa \"Otsi\". Tasub tähele panna,"
|
||||||
|
" et otsingu tulemuses kuvatakse kõiki otsisõnasid sisaldavaid lehti."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "otsi"
|
msgstr "otsi"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Otsingu tulemused"
|
msgstr "Otsingu tulemused"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr "Sinu otsingule ei vastanud ükski dokument. Palun veendu, et kõik sisestatud sõnad on õigesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid."
|
msgstr ""
|
||||||
|
"Sinu otsingule ei vastanud ükski dokument. Palun veendu, et kõik "
|
||||||
|
"sisestatud sõnad on õigesti kirjutatud ja sa oled valikud piisaval hulgal"
|
||||||
|
" kategooriaid."
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
msgid "Quick search"
|
msgid "Quick search"
|
||||||
@ -790,33 +800,33 @@ msgstr "C API muutused"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Ülejäänud muutused"
|
msgstr "Ülejäänud muutused"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Püsiviit sellele pealkirjale"
|
msgstr "Püsiviit sellele pealkirjale"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Püsiviit sellele definitsioonile"
|
msgstr "Püsiviit sellele definitsioonile"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Varja otsingu tulemused"
|
msgstr "Varja otsingu tulemused"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr "Otsimine"
|
msgstr "Otsimine"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr "Otsingu ettevalmistamine..."
|
msgstr "Otsingu ettevalmistamine..."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr "Otsingu tulemusena leiti %s leht(e)."
|
msgstr "Otsingu tulemusena leiti %s leht(e)."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -833,44 +843,56 @@ msgstr "Varja külgriba"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Sisukord"
|
msgstr "Sisukord"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr "Püsiviit sellele programmikoodile"
|
msgstr "Püsiviit sellele programmikoodile"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr "Püsiviit sellele pildile"
|
msgstr "Püsiviit sellele pildile"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr "Püsiviit sellele tabelile"
|
msgstr "Püsiviit sellele tabelile"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Redaktsioon"
|
msgstr "Redaktsioon"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Oht"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Joonealused märkused"
|
msgstr "Joonealused märkused"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "jätk eelmisele leheküljele"
|
msgstr "jätk eelmisele leheküljele"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Jätkub järgmisel lehel"
|
msgstr "Jätkub järgmisel lehel"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr "[pilt: %s]"
|
msgstr "[pilt: %s]"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[pilt]"
|
msgstr "[pilt]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d. %B %Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d. %b %Y"
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "eu", "plural_expr": "(n != 1)", "messages": {"Next topic": "Hurrengo gaia", "Index": "Indizea", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "", "Copyright": "Copyright", "C API changes": "C API aldaketak", "quick access to all modules": "modulu guztietara atzipen azkarra", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "Global Module Index": "Modulu indize globala", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "Index – %(key)s": "Indizea – %(key)s", "General Index": "Indize orokorra", "next chapter": "hurrengo kapitulua", "Search finished, found %s page(s) matching the search query.": "", "previous chapter": "aurreko kapitulua", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra", "About these documents": "Dokumentu hauen inguruan", "Preparing search...": "", ", in ": "", "Navigation": "Nabigazioa", "Expand sidebar": "Alboko barra luzatu", "the documentation for": "", "Complete Table of Contents": "Eduki taula osoa", "Contents": "Edukiak", "can be huge": "handia izan daiteke", "Changes in Version %(version)s — %(docstitle)s": "%(version)s bertsioko aldaketak — %(docstitle)s", "Other changes": "Beste aldaketak", "Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Quick search": "Bilaketa azkarra", "Show Source": "Iturburua ikusi", "Search": "Bilatu", "This Page": "Orri hau", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erabiliz sortutakoa.", "last updated": "", "Collapse sidebar": "Alboko barra tolestu", "Go": "Joan", "Table Of Contents": "Eduki taula", "Search within %(docstitle)s": "Bilatu %(docstitle)s(e)n", "all functions, classes, terms": "funtzio, klase, termino guztiak", "Please activate JavaScript to enable the search\n functionality.": "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko.", "Indices and tables:": "Indizeak eta taulak:", "lists all sections and subsections": "atal eta azpiatal guztiak zerrendatu", "Index pages by letter": "Indize orriak hizkika", "search": "bilatu", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Previous topic": "Aurreko gaia", "Overview": "Gainbegirada", "Last updated on %(last_updated)s.": "Azken aldaketa: %(last_updated)s.", "Searching": "", "search this documentation": "dokumentazio honetan bilatu", "Automatically generated list of changes in version %(version)s": "Automatikoki sortutako %(version)s bertsioaren aldaketen zerrenda", "Full index on one page": "Indize guztia orri batean", "Enter search terms or a module, class or function name.": "Sartu bilaketa terminoa edo modulu, klase edo funtzioaren izena.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "Library changes": "Liburutegi aldaketak", "Search Page": "Bilaketa orria", "Search Results": "Bilaketa emaitzak"}});
|
Documentation.addTranslations({"locale": "eu", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Dokumentu hauen inguruan", "Automatically generated list of changes in version %(version)s": "Automatikoki sortutako %(version)s bertsioaren aldaketen zerrenda", "C API changes": "C API aldaketak", "Changes in Version %(version)s — %(docstitle)s": "%(version)s bertsioko aldaketak — %(docstitle)s", "Collapse sidebar": "Alboko barra tolestu", "Complete Table of Contents": "Eduki taula osoa", "Contents": "Edukiak", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erabiliz sortutakoa.", "Enter search terms or a module, class or function name.": "Sartu bilaketa terminoa edo modulu, klase edo funtzioaren izena.", "Expand sidebar": "Alboko barra luzatu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko.", "Full index on one page": "Indize guztia orri batean", "General Index": "Indize orokorra", "Global Module Index": "Modulu indize globala", "Go": "Joan", "Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Index": "Indizea", "Index – %(key)s": "Indizea – %(key)s", "Index pages by letter": "Indize orriak hizkika", "Indices and tables:": "Indizeak eta taulak:", "Last updated on %(last_updated)s.": "Azken aldaketa: %(last_updated)s.", "Library changes": "Liburutegi aldaketak", "Navigation": "Nabigazioa", "Next topic": "Hurrengo gaia", "Other changes": "Beste aldaketak", "Overview": "Gainbegirada", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra", "Please activate JavaScript to enable the search\n functionality.": "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko.", "Preparing search...": "", "Previous topic": "Aurreko gaia", "Quick search": "Bilaketa azkarra", "Search": "Bilatu", "Search Page": "Bilaketa orria", "Search Results": "Bilaketa emaitzak", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Bilatu %(docstitle)s(e)n", "Searching": "", "Show Source": "Iturburua ikusi", "Table Of Contents": "Eduki taula", "This Page": "Orri hau", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "funtzio, klase, termino guztiak", "can be huge": "handia izan daiteke", "last updated": "", "lists all sections and subsections": "atal eta azpiatal guztiak zerrendatu", "next chapter": "hurrengo kapitulua", "previous chapter": "aurreko kapitulua", "quick access to all modules": "modulu guztietara atzipen azkarra", "search": "bilatu", "search this documentation": "dokumentazio honetan bilatu", "the documentation for": ""}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,55 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Basque translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# Ales Zabala Alava <shagi@gisa-elkartea.org>, 2011
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Basque (http://www.transifex.com/projects/p/sphinx-1/language/eu/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: eu\n"
|
"Language: eu\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Basque "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/eu/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "%s %s dokumentazioa"
|
msgstr "%s %s dokumentazioa"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "%s ikusi"
|
msgstr "%s ikusi"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "ikusi %s baita ere"
|
msgstr "ikusi %s baita ere"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -58,11 +58,10 @@ msgstr ""
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Hobekuntza Proposamena; PEP %s"
|
msgstr "Python Hobekuntza Proposamena; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%Y %B %d"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -72,64 +71,63 @@ msgstr ""
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Modulu maila"
|
msgstr "Modulu maila"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%Y %b %d"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Indize orokorra"
|
msgstr "Indize orokorra"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "indizea"
|
msgstr "indizea"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "hurrengoa"
|
msgstr "hurrengoa"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "aurrekoa"
|
msgstr "aurrekoa"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (hemen: "
|
msgstr " (hemen: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Atalaren egilea: "
|
msgstr "Atalaren egilea: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Moduluaren egilea: "
|
msgstr "Moduluaren egilea: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Kodearen egilea: "
|
msgstr "Kodearen egilea: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Egilea:"
|
msgstr "Egilea:"
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Parametroak"
|
msgstr "Parametroak"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Itzultzen du"
|
msgstr "Itzultzen du"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Itzulketa mota"
|
msgstr "Itzulketa mota"
|
||||||
|
|
||||||
@ -158,12 +156,12 @@ msgstr "%s (C mota)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C aldagaia)"
|
msgstr "%s (C aldagaia)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "funtzioa"
|
msgstr "funtzioa"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "partaidea"
|
msgstr "partaidea"
|
||||||
|
|
||||||
@ -171,7 +169,7 @@ msgstr "partaidea"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "makroa"
|
msgstr "makroa"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "mota"
|
msgstr "mota"
|
||||||
|
|
||||||
@ -179,59 +177,64 @@ msgstr "mota"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "aldagaia"
|
msgstr "aldagaia"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Parametroak"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Jaurtitzen du"
|
msgstr "Jaurtitzen du"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++ mota)"
|
msgstr "%s (C++ mota)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++ partaidea)"
|
msgstr "%s (C++ partaidea)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++ funtzioa)"
|
msgstr "%s (C++ funtzioa)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++ klasea)"
|
msgstr "%s (C++ klasea)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "klasea"
|
msgstr "klasea"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (%s metodoa)"
|
msgstr "%s() (%s metodoa)"
|
||||||
@ -246,7 +249,7 @@ msgstr "%s() (klasea)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (aldagai globala edo konstantea)"
|
msgstr "%s (aldagai globala edo konstantea)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (%s atributua)"
|
msgstr "%s (%s atributua)"
|
||||||
@ -255,116 +258,116 @@ msgstr "%s (%s atributua)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argumentuak"
|
msgstr "Argumentuak"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "datuak"
|
msgstr "datuak"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "atributua"
|
msgstr "atributua"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Aldagaiak"
|
msgstr "Aldagaiak"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Goratzen du"
|
msgstr "Goratzen du"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (%s moduluan)"
|
msgstr "%s() (%s moduluan)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (%s moduluan)"
|
msgstr "%s (%s moduluan)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (klasea %s-(e)n)"
|
msgstr "%s (klasea %s-(e)n)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (%s.%s metodoa)"
|
msgstr "%s() (%s.%s metodoa)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (%s.%s metodo estatikoa)"
|
msgstr "%s() (%s.%s metodo estatikoa)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (%s metodo estatikoa)"
|
msgstr "%s() (%s metodo estatikoa)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (%s.%s klaseko metodoa)"
|
msgstr "%s() (%s.%s klaseko metodoa)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (%s klaseko metodoa)"
|
msgstr "%s() (%s klaseko metodoa)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (%s.%s atributua)"
|
msgstr "%s (%s.%s atributua)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (modulua)"
|
msgstr "%s (modulua)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Python moduluen indizea"
|
msgstr "Python moduluen indizea"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "moduluak"
|
msgstr "moduluak"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Zaharkitua"
|
msgstr "Zaharkitua"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "salbuespena"
|
msgstr "salbuespena"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "metodoa"
|
msgstr "metodoa"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "klaseko metodoa"
|
msgstr "klaseko metodoa"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "metodo estatikoa"
|
msgstr "metodo estatikoa"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "modulua"
|
msgstr "modulua"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (zaharkitua)"
|
msgstr " (zaharkitua)"
|
||||||
|
|
||||||
@ -396,64 +399,64 @@ msgstr "inguruneko aldagaia; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%skomando lerroko aukera; %s"
|
msgstr "%skomando lerroko aukera; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "glosarioko terminoa"
|
msgstr "glosarioko terminoa"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "gramatikako token-a"
|
msgstr "gramatikako token-a"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "erreferentzia etiketa"
|
msgstr "erreferentzia etiketa"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "inguruneko aldagaia"
|
msgstr "inguruneko aldagaia"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "programako aukera"
|
msgstr "programako aukera"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Indizea"
|
msgstr "Indizea"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Moduluen indizea"
|
msgstr "Moduluen indizea"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Bilaketa orria"
|
msgstr "Bilaketa orria"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -462,112 +465,117 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[iturburua]"
|
msgstr "[iturburua]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Egitekoa"
|
msgstr "Egitekoa"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
|
#, fuzzy
|
||||||
|
msgid "<<original entry>>"
|
||||||
|
msgstr "jatorrizko sarrera"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "jatorrizko sarrera"
|
msgstr "jatorrizko sarrera"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[dokumentazioa]"
|
msgstr "[dokumentazioa]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Moduluko kodea"
|
msgstr "Moduluko kodea"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>%s(r)en iturburu kodea</h1>"
|
msgstr "<h1>%s(r)en iturburu kodea</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Gainbegirada: moduluko kodea"
|
msgstr "Gainbegirada: moduluko kodea"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Kodea eskuragarri duten modulu guztiak</h1>"
|
msgstr "<h1>Kodea eskuragarri duten modulu guztiak</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Adi"
|
msgstr "Adi"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Kontuz"
|
msgstr "Kontuz"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Arriskua"
|
msgstr "Arriskua"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Errorea"
|
msgstr "Errorea"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Argibidea"
|
msgstr "Argibidea"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Garrantzitsua"
|
msgstr "Garrantzitsua"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Ikusi baita ere"
|
msgstr "Ikusi baita ere"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Iradokizuna"
|
msgstr "Iradokizuna"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Kontuz"
|
msgstr "Kontuz"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Berria %s bertsioan"
|
msgstr "Berria %s bertsioan"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "%s bertsioan aldatuta"
|
msgstr "%s bertsioan aldatuta"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "%s bertsiotik aurrera zaharkituta"
|
msgstr "%s bertsiotik aurrera zaharkituta"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "gako-hitza"
|
msgstr "gako-hitza"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "eragiketa"
|
msgstr "eragiketa"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objetua"
|
msgstr "objetua"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "sententzia"
|
msgstr "sententzia"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -695,7 +703,9 @@ msgstr "Azken aldaketa: %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erabiliz sortutakoa."
|
msgstr ""
|
||||||
|
"<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erabiliz"
|
||||||
|
" sortutakoa."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -730,25 +740,26 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko."
|
msgstr ""
|
||||||
|
"Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\n"
|
||||||
|
"ondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\n"
|
||||||
|
"hitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \n"
|
||||||
|
"emaitzen zerrendan agertuko."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "bilatu"
|
msgstr "bilatu"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Bilaketa emaitzak"
|
msgstr "Bilaketa emaitzak"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -787,33 +798,33 @@ msgstr "C API aldaketak"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Beste aldaketak"
|
msgstr "Beste aldaketak"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Goiburu honetarako esteka iraunkorra"
|
msgstr "Goiburu honetarako esteka iraunkorra"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Definizio honetarako esteka iraunkorra"
|
msgstr "Definizio honetarako esteka iraunkorra"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Bilaketa bat-etortzeak ezkutatu"
|
msgstr "Bilaketa bat-etortzeak ezkutatu"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -830,44 +841,59 @@ msgstr "Alboko barra tolestu"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Edukiak"
|
msgstr "Edukiak"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Argitalpena"
|
msgstr "Argitalpena"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Arriskua"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Oin-oharrak"
|
msgstr "Oin-oharrak"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "aurreko orritik jarraitzen du"
|
msgstr "aurreko orritik jarraitzen du"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Hurrengo orrian jarraitzen du"
|
msgstr "Hurrengo orrian jarraitzen du"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[irudia]"
|
msgstr "[irudia]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%Y %B %d"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%Y %b %d"
|
||||||
|
|
||||||
|
#~ msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -1,54 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Persian translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Persian (http://www.transifex.com/projects/p/sphinx-1/language/fa/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: fa\n"
|
"Language: fa\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Language-Team: Persian "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/fa/)\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -57,10 +58,9 @@ msgstr ""
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
@ -71,64 +71,63 @@ msgstr "درونی سازی"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "در سطح ماژول"
|
msgstr "در سطح ماژول"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "فهرست کلی"
|
msgstr "فهرست کلی"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "فهرست"
|
msgstr "فهرست"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "بعدی"
|
msgstr "بعدی"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "قبلی"
|
msgstr "قبلی"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr ":نویسنده این بخش"
|
msgstr ":نویسنده این بخش"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "نویسنده این ماژول:"
|
msgstr "نویسنده این ماژول:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr ":نویسنده"
|
msgstr ":نویسنده"
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "پارامترها"
|
msgstr "پارامترها"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "نوع برگشتی"
|
msgstr "نوع برگشتی"
|
||||||
|
|
||||||
@ -157,12 +156,12 @@ msgstr "%s (C نوع)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C متغیر)"
|
msgstr "%s (C متغیر)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -170,7 +169,7 @@ msgstr ""
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -178,59 +177,64 @@ msgstr ""
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "پارامترها"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (توابع درونی)"
|
msgstr "%s() (توابع درونی)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (%s متد)"
|
msgstr "%s() (%s متد)"
|
||||||
@ -245,7 +249,7 @@ msgstr ""
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (%s مشخصه)"
|
msgstr "%s (%s مشخصه)"
|
||||||
@ -254,116 +258,116 @@ msgstr "%s (%s مشخصه)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "برانگیختن"
|
msgstr "برانگیختن"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (در ماژول %s)"
|
msgstr "%s() (در ماژول %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (متغیر درونی)"
|
msgstr "%s (متغیر درونی)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (در ماژول %s)"
|
msgstr "%s (در ماژول %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (کلاس درونی)"
|
msgstr "%s (کلاس درونی)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (کلاس در %s)"
|
msgstr "%s (کلاس در %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (%s.%s متد)"
|
msgstr "%s() (%s.%s متد)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (%s.%s متد استاتیک)"
|
msgstr "%s() (%s.%s متد استاتیک)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (%s متد استاتیک)"
|
msgstr "%s() (%s متد استاتیک)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (%s.%s مشخصه)"
|
msgstr "%s (%s.%s مشخصه)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (ماژول)"
|
msgstr "%s (ماژول)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "ماژول ها"
|
msgstr "ماژول ها"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "منسوخ شده"
|
msgstr "منسوخ شده"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "استثناء"
|
msgstr "استثناء"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "ماژول"
|
msgstr "ماژول"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -395,64 +399,64 @@ msgstr "%s متغیرهای عمومی؛"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%sگزینه خط فرمان; %s"
|
msgstr "%sگزینه خط فرمان; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "فهرست"
|
msgstr "فهرست"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "فهرست ماژول ها"
|
msgstr "فهرست ماژول ها"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "صفحه جستجو"
|
msgstr "صفحه جستجو"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -461,112 +465,116 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "در دست انجام"
|
msgstr "در دست انجام"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
msgid "<<original entry>>"
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "دقت"
|
msgstr "دقت"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "ملاحظه"
|
msgstr "ملاحظه"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "خطر"
|
msgstr "خطر"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "خطا"
|
msgstr "خطا"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "تذکر"
|
msgstr "تذکر"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "مهم"
|
msgstr "مهم"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "توجه"
|
msgstr "توجه"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "همچنین ملاحظه نمائید"
|
msgstr "همچنین ملاحظه نمائید"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "نکته"
|
msgstr "نکته"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "هشدار"
|
msgstr "هشدار"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "جدید در نسخه %s"
|
msgstr "جدید در نسخه %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "تغییر داده شده در نسخه %s"
|
msgstr "تغییر داده شده در نسخه %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "منسوخ شده از نسخه %s"
|
msgstr "منسوخ شده از نسخه %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "کلمه کلیدی"
|
msgstr "کلمه کلیدی"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "عملگر"
|
msgstr "عملگر"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "شیء"
|
msgstr "شیء"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "گذاره"
|
msgstr "گذاره"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "توابع درونی"
|
msgstr "توابع درونی"
|
||||||
|
|
||||||
@ -694,7 +702,9 @@ msgstr ". %(last_updated)s آخرین بروز رسانی در"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ". <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s ایجاد شده با"
|
msgstr ""
|
||||||
|
". <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s ایجاد "
|
||||||
|
"شده با"
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -731,23 +741,20 @@ msgid ""
|
|||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "جستجو"
|
msgstr "جستجو"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "نتایج جستجو"
|
msgstr "نتایج جستجو"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -786,33 +793,33 @@ msgstr "C API تغییرات"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "دگر تغییرات"
|
msgstr "دگر تغییرات"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "لینک ثابت به این سر مقاله"
|
msgstr "لینک ثابت به این سر مقاله"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "لینک ثابت به این تعریف"
|
msgstr "لینک ثابت به این تعریف"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "عدم نمایش نتایج یافت شده"
|
msgstr "عدم نمایش نتایج یافت شده"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -829,44 +836,59 @@ msgstr ""
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "انتشار"
|
msgstr "انتشار"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "خطر"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "fi", "plural_expr": "(n != 1)", "messages": {"Next topic": ">>", "Index": "Sis\u00e4llysluettelo", "%(filename)s — %(docstitle)s": "", "Welcome! This is": "", "Copyright": "", "C API changes": "", "quick access to all modules": "", "© Copyright %(copyright)s.": "", "Global Module Index": "Yleinen moduulien sis\u00e4llysluettelo", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "Index – %(key)s": "", "General Index": "Yleinen sis\u00e4llysluettelo", "next chapter": ">>", "Search finished, found %s page(s) matching the search query.": "", "previous chapter": "<<", "Permalink to this headline": "", "About these documents": "Tietoja t\u00e4st\u00e4 documentist\u00e4", "Preparing search...": "", ", in ": "", "Navigation": "Navikointi", "Expand sidebar": "", "the documentation for": "", "Complete Table of Contents": "", "Contents": "", "can be huge": "voi olla iso", "Changes in Version %(version)s — %(docstitle)s": "Muutos versiosta %(version)s — %(docstitle)s", "Other changes": "", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Quick search": "Pikahaku", "Show Source": "N\u00e4yt\u00e4 l\u00e4hdekoodina", "Search": "Etsi", "This Page": "T\u00e4m\u00e4 sivu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Anna hakusanat kokonaan, osasanoilla ei haeta.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "last updated": "", "Collapse sidebar": "", "Go": "Siirry", "Table Of Contents": "Sis\u00e4llysluettelo", "Search within %(docstitle)s": "", "all functions, classes, terms": "", "Please activate JavaScript to enable the search\n functionality.": "Javascript pit\u00e4\u00e4 olla sallittu, jotta etsint\u00e4 toimii.", "Indices and tables:": "", "lists all sections and subsections": "", "Index pages by letter": "Hakemisto aakkostus sivuttain", "search": "etsi", "Permalink to this definition": "", "Previous topic": "<<", "Overview": "Yhteenveto", "Last updated on %(last_updated)s.": "", "Searching": "", "search this documentation": "", "Automatically generated list of changes in version %(version)s": "Automaattisesti luotu muutoshistoria alkaen versiosta %(version)s", "Full index on one page": "Hakemisto yhten\u00e4 luettelona", "Enter search terms or a module, class or function name.": "Anna etsitt\u00e4v\u00e4 termi tai moduuli, luokka tai funktio", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "Library changes": "", "Search Page": "Etsi sivu", "Search Results": "Etsinn\u00e4n tulos"}});
|
Documentation.addTranslations({"locale": "fi", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Tietoja t\u00e4st\u00e4 documentist\u00e4", "Automatically generated list of changes in version %(version)s": "Automaattisesti luotu muutoshistoria alkaen versiosta %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "Muutos versiosta %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "Anna etsitt\u00e4v\u00e4 termi tai moduuli, luokka tai funktio", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Anna hakusanat kokonaan, osasanoilla ei haeta.", "Full index on one page": "Hakemisto yhten\u00e4 luettelona", "General Index": "Yleinen sis\u00e4llysluettelo", "Global Module Index": "Yleinen moduulien sis\u00e4llysluettelo", "Go": "Siirry", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Index": "Sis\u00e4llysluettelo", "Index – %(key)s": "", "Index pages by letter": "Hakemisto aakkostus sivuttain", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "Navikointi", "Next topic": ">>", "Other changes": "", "Overview": "Yhteenveto", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "Javascript pit\u00e4\u00e4 olla sallittu, jotta etsint\u00e4 toimii.", "Preparing search...": "", "Previous topic": "<<", "Quick search": "Pikahaku", "Search": "Etsi", "Search Page": "Etsi sivu", "Search Results": "Etsinn\u00e4n tulos", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "N\u00e4yt\u00e4 l\u00e4hdekoodina", "Table Of Contents": "Sis\u00e4llysluettelo", "This Page": "T\u00e4m\u00e4 sivu", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "voi olla iso", "last updated": "", "lists all sections and subsections": "", "next chapter": ">>", "previous chapter": "<<", "quick access to all modules": "", "search": "etsi", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,55 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Finnish translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/sphinx-1/language/fi/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Finnish "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/fi/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -58,11 +58,10 @@ msgstr ""
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d.%m.%Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -72,64 +71,63 @@ msgstr ""
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Moduulitaso"
|
msgstr "Moduulitaso"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d.%m.%Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Yleinen sisällysluettelo"
|
msgstr "Yleinen sisällysluettelo"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "hakemisto"
|
msgstr "hakemisto"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr ">"
|
msgstr ">"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "<"
|
msgstr "<"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Luvun kirjoittaja: "
|
msgstr "Luvun kirjoittaja: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Moduulin kirjoittaja: "
|
msgstr "Moduulin kirjoittaja: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Tekijä: "
|
msgstr "Tekijä: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -158,12 +156,12 @@ msgstr ""
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -171,7 +169,7 @@ msgstr ""
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -179,59 +177,63 @@ msgstr ""
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -246,7 +248,7 @@ msgstr ""
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -255,116 +257,116 @@ msgstr ""
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (moduuli)"
|
msgstr "%s (moduuli)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "moduulit"
|
msgstr "moduulit"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Poistettu"
|
msgstr "Poistettu"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "moduuli"
|
msgstr "moduuli"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (poistettu)"
|
msgstr " (poistettu)"
|
||||||
|
|
||||||
@ -396,64 +398,64 @@ msgstr ""
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Sisällysluettelo"
|
msgstr "Sisällysluettelo"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Moduuli sisällysluettelo"
|
msgstr "Moduuli sisällysluettelo"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Etsi sivu"
|
msgstr "Etsi sivu"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -462,112 +464,116 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Tehtävä vielä"
|
msgstr "Tehtävä vielä"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
msgid "<<original entry>>"
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Huom"
|
msgstr "Huom"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Varoitus"
|
msgstr "Varoitus"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Vaara"
|
msgstr "Vaara"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Virhe"
|
msgstr "Virhe"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Vihje"
|
msgstr "Vihje"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Tärkeä"
|
msgstr "Tärkeä"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Muista"
|
msgstr "Muista"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Katso myös"
|
msgstr "Katso myös"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Vihje"
|
msgstr "Vihje"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Varoitus"
|
msgstr "Varoitus"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Uusi versiossa %s"
|
msgstr "Uusi versiossa %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Muutettu versiossa %s"
|
msgstr "Muutettu versiossa %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Poistettu versiosta %s alkaen"
|
msgstr "Poistettu versiosta %s alkaen"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -732,23 +738,20 @@ msgid ""
|
|||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Anna hakusanat kokonaan, osasanoilla ei haeta."
|
msgstr "Anna hakusanat kokonaan, osasanoilla ei haeta."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "etsi"
|
msgstr "etsi"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Etsinnän tulos"
|
msgstr "Etsinnän tulos"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -787,33 +790,33 @@ msgstr ""
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Piilota löydetyt"
|
msgstr "Piilota löydetyt"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -830,44 +833,59 @@ msgstr ""
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Vaara"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d.%m.%Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d.%m.%Y"
|
||||||
|
|
||||||
|
#~ msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "fr", "plural_expr": "(n > 1)", "messages": {"Next topic": "Sujet suivant", "Index": "Index", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "Bienvenue ! Ceci est", "Copyright": "Copyright", "C API changes": "Modifications de l'API C", "quick access to all modules": "acc\u00e8s rapide \u00e0 l'ensemble des modules", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "Global Module Index": "Index g\u00e9n\u00e9ral des modules", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. Veuillez v\u00e9rifier que les mots sont correctement orthographi\u00e9s et que vous avez s\u00e9lectionn\u00e9 assez de cat\u00e9gories.", "Index – %(key)s": "Index – %(key)s", "General Index": "Index g\u00e9n\u00e9ral", "next chapter": "Chapitre suivant", "Search finished, found %s page(s) matching the search query.": "La recherche est finie, %s page(s) trouv\u00e9e(s) qui corresponde(nt) \u00e0 la recherche.", "previous chapter": "Chapitre pr\u00e9c\u00e9dent", "Permalink to this headline": "Lien permanent vers ce titre", "About these documents": "\u00c0 propos de ces documents", "Preparing search...": "Pr\u00e9paration de la recherche...", ", in ": ", dans", "Navigation": "Navigation", "Expand sidebar": "Agrandir la barre lat\u00e9rale", "the documentation for": "la documentation pour", "Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te", "Contents": "Contenu", "can be huge": "peut \u00eatre \u00e9norme", "Changes in Version %(version)s — %(docstitle)s": "Modifications dans la version %(version)s — %(docstitle)s", "Other changes": "Autres modifications", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Quick search": "Recherche rapide", "Show Source": "Montrer le code source", "Search": "Recherche", "This Page": "Cette page", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalit\u00e9 de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'appara\u00eetront pas dans la liste des r\u00e9sultats.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u00e9\u00e9 avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "last updated": "derni\u00e8re modification", "Collapse sidebar": "R\u00e9duire la barre lat\u00e9rale", "Go": "Go", "Table Of Contents": "Table des Mati\u00e8res", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "all functions, classes, terms": "toutes les fonctions, classes, termes", "Please activate JavaScript to enable the search\n functionality.": "Veuillez activer le JavaScript pour que la recherche fonctionne.", "Indices and tables:": "Indices et Tables :", "lists all sections and subsections": "lister l'ensemble des sections et sous-sections", "Index pages by letter": "Indexer les pages par lettre", "search": "rechercher", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Previous topic": "Sujet pr\u00e9c\u00e9dent", "Overview": "R\u00e9sum\u00e9", "Last updated on %(last_updated)s.": "Mis \u00e0 jour le %(last_updated)s.", "Searching": "Recherche en cours", "search this documentation": "rechercher dans cette documentation", "Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s", "Full index on one page": "Index complet sur une seule page", "Enter search terms or a module, class or function name.": "Saisissez un mot clef ou un nom de module, classe ou fonction.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "Library changes": "Modifications de la biblioth\u00e8que", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche"}});
|
Documentation.addTranslations({"locale": "fr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", dans", "About these documents": "\u00c0 propos de ces documents", "Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s", "C API changes": "Modifications de l'API C", "Changes in Version %(version)s — %(docstitle)s": "Modifications dans la version %(version)s — %(docstitle)s", "Collapse sidebar": "R\u00e9duire la barre lat\u00e9rale", "Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te", "Contents": "Contenu", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u00e9\u00e9 avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Saisissez un mot clef ou un nom de module, classe ou fonction.", "Expand sidebar": "Agrandir la barre lat\u00e9rale", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalit\u00e9 de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'appara\u00eetront pas dans la liste des r\u00e9sultats.", "Full index on one page": "Index complet sur une seule page", "General Index": "Index g\u00e9n\u00e9ral", "Global Module Index": "Index g\u00e9n\u00e9ral des modules", "Go": "Go", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexer les pages par lettre", "Indices and tables:": "Indices et Tables :", "Last updated on %(last_updated)s.": "Mis \u00e0 jour le %(last_updated)s.", "Library changes": "Modifications de la biblioth\u00e8que", "Navigation": "Navigation", "Next topic": "Sujet suivant", "Other changes": "Autres modifications", "Overview": "R\u00e9sum\u00e9", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Permalink to this headline": "Lien permanent vers ce titre", "Please activate JavaScript to enable the search\n functionality.": "Veuillez activer le JavaScript pour que la recherche fonctionne.", "Preparing search...": "Pr\u00e9paration de la recherche...", "Previous topic": "Sujet pr\u00e9c\u00e9dent", "Quick search": "Recherche rapide", "Search": "Recherche", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche", "Search finished, found %s page(s) matching the search query.": "La recherche est finie, %s page(s) trouv\u00e9e(s) qui corresponde(nt) \u00e0 la recherche.", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "Searching": "Recherche en cours", "Show Source": "Montrer le code source", "Table Of Contents": "Table des Mati\u00e8res", "This Page": "Cette page", "Welcome! This is": "Bienvenue ! Ceci est", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. Veuillez v\u00e9rifier que les mots sont correctement orthographi\u00e9s et que vous avez s\u00e9lectionn\u00e9 assez de cat\u00e9gories.", "all functions, classes, terms": "toutes les fonctions, classes, termes", "can be huge": "peut \u00eatre \u00e9norme", "last updated": "derni\u00e8re modification", "lists all sections and subsections": "lister l'ensemble des sections et sous-sections", "next chapter": "Chapitre suivant", "previous chapter": "Chapitre pr\u00e9c\u00e9dent", "quick access to all modules": "acc\u00e8s rapide \u00e0 l'ensemble des modules", "search": "rechercher", "search this documentation": "rechercher dans cette documentation", "the documentation for": "la documentation pour"}, "plural_expr": "(n > 1)"});
|
Binary file not shown.
@ -1,62 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# French translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# Christophe kryskool <christophe.chauvet@gmail.com>, 2013
|
|
||||||
# Larlet davidbgk <larlet@gmail.com>, 2008
|
|
||||||
# fgallaire <fgallaire@gmail.com>, 2010
|
|
||||||
# Georg Brandl <g.brandl@gmx.net>, 2014
|
|
||||||
# Jean-Daniel Browne <jeandaniel.browne@gmail.com>, 2010
|
|
||||||
# Lilian Besson <naereen@crans.org>, 2013-2014
|
|
||||||
# Nikolaj van Omme <nikolaj.van.omme@gmail.com>, 2014-2015
|
|
||||||
# Sebastien Douche <sdouche@gmail.com>, 2008
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: French (http://www.transifex.com/projects/p/sphinx-1/language/fr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Language-Team: French "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/fr/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "Fig. %s"
|
msgstr "Fig. %s"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "Tableau %s"
|
msgstr "Tableau %s"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr "Code source %s"
|
msgstr "Code source %s"
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "documentation %s %s"
|
msgstr "documentation %s %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "voir %s"
|
msgstr "voir %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "voir aussi %s"
|
msgstr "voir aussi %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Symboles"
|
msgstr "Symboles"
|
||||||
|
|
||||||
@ -65,11 +58,10 @@ msgstr "Symboles"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d %B %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -79,64 +71,63 @@ msgstr "Fonctions de base"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Module"
|
msgstr "Module"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d %b %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Index général"
|
msgstr "Index général"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "index"
|
msgstr "index"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "suivant"
|
msgstr "suivant"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "précédent"
|
msgstr "précédent"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr "(dans"
|
msgstr "(dans"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Auteur de la section : "
|
msgstr "Auteur de la section : "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Auteur du module : "
|
msgstr "Auteur du module : "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Auteur du code :"
|
msgstr "Auteur du code :"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Auteur : "
|
msgstr "Auteur : "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Paramètres"
|
msgstr "Paramètres"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Retourne"
|
msgstr "Retourne"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Type retourné"
|
msgstr "Type retourné"
|
||||||
|
|
||||||
@ -165,12 +156,12 @@ msgstr "%s (type C)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (variable C)"
|
msgstr "%s (variable C)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "fonction"
|
msgstr "fonction"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "membre"
|
msgstr "membre"
|
||||||
|
|
||||||
@ -178,7 +169,7 @@ msgstr "membre"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "macro"
|
msgstr "macro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "type"
|
msgstr "type"
|
||||||
|
|
||||||
@ -186,59 +177,64 @@ msgstr "type"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "variable"
|
msgstr "variable"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Paramètres"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Déclenche"
|
msgstr "Déclenche"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (type C++)"
|
msgstr "%s (type C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (membre C++)"
|
msgstr "%s (membre C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (fonction C++)"
|
msgstr "%s (fonction C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (classe C++)"
|
msgstr "%s (classe C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr "%s (énumération C++)"
|
msgstr "%s (énumération C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr "%s (énumérateur C++)"
|
msgstr "%s (énumérateur C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "classe"
|
msgstr "classe"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr "énumération"
|
msgstr "énumération"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr "énumérateur"
|
msgstr "énumérateur"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (fonction de base)"
|
msgstr "%s() (fonction de base)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (méthode %s)"
|
msgstr "%s() (méthode %s)"
|
||||||
@ -253,7 +249,7 @@ msgstr "%s() (classe)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (variable globale ou constante)"
|
msgstr "%s (variable globale ou constante)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (attribut %s)"
|
msgstr "%s (attribut %s)"
|
||||||
@ -262,116 +258,116 @@ msgstr "%s (attribut %s)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Arguments"
|
msgstr "Arguments"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "données"
|
msgstr "données"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "attribut"
|
msgstr "attribut"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Variables"
|
msgstr "Variables"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Lève"
|
msgstr "Lève"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (dans le module %s)"
|
msgstr "%s() (dans le module %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (variable de base)"
|
msgstr "%s (variable de base)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (dans le module %s)"
|
msgstr "%s (dans le module %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (classe de base)"
|
msgstr "%s (classe de base)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (classe dans %s)"
|
msgstr "%s (classe dans %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (méthode %s.%s)"
|
msgstr "%s() (méthode %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (méthode statique %s.%s)"
|
msgstr "%s() (méthode statique %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (méthode statique %s)"
|
msgstr "%s() (méthode statique %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (méthode de la classe %s.%s)"
|
msgstr "%s() (méthode de la classe %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (méthode de la classe %s)"
|
msgstr "%s() (méthode de la classe %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (attribut %s.%s)"
|
msgstr "%s (attribut %s.%s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (module)"
|
msgstr "%s (module)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Index des modules Python"
|
msgstr "Index des modules Python"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "modules"
|
msgstr "modules"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Obsolète"
|
msgstr "Obsolète"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "exception"
|
msgstr "exception"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "méthode"
|
msgstr "méthode"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "méthode de classe"
|
msgstr "méthode de classe"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "méthode statique"
|
msgstr "méthode statique"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "module"
|
msgstr "module"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (obsolète)"
|
msgstr " (obsolète)"
|
||||||
|
|
||||||
@ -403,64 +399,64 @@ msgstr "variable d'environnement; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%s option de ligne de commande; %s"
|
msgstr "%s option de ligne de commande; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "terme du glossaire"
|
msgstr "terme du glossaire"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "élément de grammaire"
|
msgstr "élément de grammaire"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "étiquette de référence"
|
msgstr "étiquette de référence"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "variable d'environnement"
|
msgstr "variable d'environnement"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "option du programme"
|
msgstr "option du programme"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Index"
|
msgstr "Index"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Index du module"
|
msgstr "Index du module"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Page de recherche"
|
msgstr "Page de recherche"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr "Bases: %s"
|
msgstr "Bases: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "alias de :class:`%s`"
|
msgstr "alias de :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr "[graphe: %s]"
|
msgstr "[graphe: %s]"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr "[graphe]"
|
msgstr "[graphe]"
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr "(disponible dans %s v%s)"
|
msgstr "(disponible dans %s v%s)"
|
||||||
@ -469,112 +465,117 @@ msgstr "(disponible dans %s v%s)"
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[source]"
|
msgstr "[source]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "À faire"
|
msgstr "À faire"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "entrée originale"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(L'<<entrée orginale>> se trouve dans %s, à la ligne %d.)"
|
msgstr "(L'<<entrée orginale>> se trouve dans %s, à la ligne %d.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "entrée originale"
|
msgstr "entrée originale"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[docs]"
|
msgstr "[docs]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Code du module"
|
msgstr "Code du module"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>Code source de %s</h1>"
|
msgstr "<h1>Code source de %s</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Vue d'ensemble : code du module"
|
msgstr "Vue d'ensemble : code du module"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Modules pour lesquels le code est disponible</h1>"
|
msgstr "<h1>Modules pour lesquels le code est disponible</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Attention"
|
msgstr "Attention"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Prudence"
|
msgstr "Prudence"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Danger"
|
msgstr "Danger"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Erreur"
|
msgstr "Erreur"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Indice"
|
msgstr "Indice"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Important"
|
msgstr "Important"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Voir aussi"
|
msgstr "Voir aussi"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Astuce"
|
msgstr "Astuce"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Avertissement"
|
msgstr "Avertissement"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Nouveau dans la version %s"
|
msgstr "Nouveau dans la version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Modifié dans la version %s"
|
msgstr "Modifié dans la version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Obsolète depuis la version %s"
|
msgstr "Obsolète depuis la version %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "mot-clé"
|
msgstr "mot-clé"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "opérateur"
|
msgstr "opérateur"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objet"
|
msgstr "objet"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "état"
|
msgstr "état"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "fonction de base"
|
msgstr "fonction de base"
|
||||||
|
|
||||||
@ -702,7 +703,9 @@ msgstr "Mis à jour le %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Créé avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s."
|
msgstr ""
|
||||||
|
"Créé avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -737,26 +740,32 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalité de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'apparaîtront pas dans la liste des résultats."
|
msgstr ""
|
||||||
|
"Vous pouvez effectuer une recherche au sein des documents. Saisissez les "
|
||||||
|
"termes\n"
|
||||||
|
"de votre recherche dans le champs ci-dessous et cliquez sur "
|
||||||
|
"\"rechercher\". Notez que la fonctionnalité de recherche\n"
|
||||||
|
"va automatiquement chercher l'ensemble des mots. Les pages\n"
|
||||||
|
"contenant moins de mots n'apparaîtront pas dans la liste des résultats."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "rechercher"
|
msgstr "rechercher"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Résultats de la recherche"
|
msgstr "Résultats de la recherche"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr "Votre recherche ne correspond à aucun document. Veuillez vérifier que les mots sont correctement orthographiés et que vous avez sélectionné assez de catégories."
|
msgstr ""
|
||||||
|
"Votre recherche ne correspond à aucun document. Veuillez vérifier que les"
|
||||||
|
" mots sont correctement orthographiés et que vous avez sélectionné assez "
|
||||||
|
"de catégories."
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
msgid "Quick search"
|
msgid "Quick search"
|
||||||
@ -794,33 +803,35 @@ msgstr "Modifications de l'API C"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Autres modifications"
|
msgstr "Autres modifications"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Lien permanent vers ce titre"
|
msgstr "Lien permanent vers ce titre"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Lien permanent vers cette définition"
|
msgstr "Lien permanent vers cette définition"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Cacher les résultats de la recherche"
|
msgstr "Cacher les résultats de la recherche"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr "Recherche en cours"
|
msgstr "Recherche en cours"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr "Préparation de la recherche..."
|
msgstr "Préparation de la recherche..."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr "La recherche est finie, %s page(s) trouvée(s) qui corresponde(nt) à la recherche."
|
msgstr ""
|
||||||
|
"La recherche est finie, %s page(s) trouvée(s) qui corresponde(nt) à la "
|
||||||
|
"recherche."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ", dans"
|
msgstr ", dans"
|
||||||
|
|
||||||
@ -837,44 +848,56 @@ msgstr "Réduire la barre latérale"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Contenu"
|
msgstr "Contenu"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr "Lien permanent vers ce code"
|
msgstr "Lien permanent vers ce code"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr "Lien permanent vers cette image"
|
msgstr "Lien permanent vers cette image"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr "Lien permanent vers ce tableau"
|
msgstr "Lien permanent vers ce tableau"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Version"
|
msgstr "Version"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Danger"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Notes de bas de page"
|
msgstr "Notes de bas de page"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "Suite de la page précédente"
|
msgstr "Suite de la page précédente"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "Suite sur la page suivante"
|
msgstr "Suite sur la page suivante"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr "[image: %s]"
|
msgstr "[image: %s]"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[image]"
|
msgstr "[image]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d %B %Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d %b %Y"
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -1,55 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Hebrew translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Hebrew (http://www.transifex.com/projects/p/sphinx-1/language/he/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Hebrew "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/he/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "תיעוד %s %s"
|
msgstr "תיעוד %s %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "ראה %s"
|
msgstr "ראה %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "ראה גם %s"
|
msgstr "ראה גם %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -58,10 +58,9 @@ msgstr ""
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
@ -72,64 +71,63 @@ msgstr ""
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "רמת המודול"
|
msgstr "רמת המודול"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "אינדקס"
|
msgstr "אינדקס"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "הבא"
|
msgstr "הבא"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "הקודם"
|
msgstr "הקודם"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr "(בתוך"
|
msgstr "(בתוך"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "מחבר הקטע:"
|
msgstr "מחבר הקטע:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "מחבר המודול:"
|
msgstr "מחבר המודול:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "מחבר הקוד:"
|
msgstr "מחבר הקוד:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "מחבר:"
|
msgstr "מחבר:"
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "פרמטרים"
|
msgstr "פרמטרים"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -158,12 +156,12 @@ msgstr ""
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "פונקציה"
|
msgstr "פונקציה"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -171,7 +169,7 @@ msgstr ""
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "מאקרו"
|
msgstr "מאקרו"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -179,59 +177,64 @@ msgstr ""
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "משתנה"
|
msgstr "משתנה"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "פרמטרים"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (פונקציית C++)"
|
msgstr "%s (פונקציית C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (מחלקת C++)"
|
msgstr "%s (מחלקת C++)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "מחלקה"
|
msgstr "מחלקה"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -246,7 +249,7 @@ msgstr ""
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -255,116 +258,116 @@ msgstr ""
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "משתנים"
|
msgstr "משתנים"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "מודול"
|
msgstr "מודול"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -396,64 +399,64 @@ msgstr "משתנה סביבה; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%sאופציית שורת הפקודה ; %s"
|
msgstr "%sאופציית שורת הפקודה ; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "משתנה סביבה"
|
msgstr "משתנה סביבה"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "אינדקס"
|
msgstr "אינדקס"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "מודול אינדקס"
|
msgstr "מודול אינדקס"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "דף חיפוש"
|
msgstr "דף חיפוש"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -462,112 +465,117 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[מקור]"
|
msgstr "[מקור]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "לעשות"
|
msgstr "לעשות"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "הטקסט המקורי"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(ה <<הרשומה המקורית>> ממוקמת ב %s, שורה %d.)"
|
msgstr "(ה <<הרשומה המקורית>> ממוקמת ב %s, שורה %d.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "הטקסט המקורי"
|
msgstr "הטקסט המקורי"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[תיעוד]"
|
msgstr "[תיעוד]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>הראה קוד מקור ל %s</h1>"
|
msgstr "<h1>הראה קוד מקור ל %s</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>כל המודולים שיש להם קוד זמין</h1>"
|
msgstr "<h1>כל המודולים שיש להם קוד זמין</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "תשומת לב"
|
msgstr "תשומת לב"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "זהירות"
|
msgstr "זהירות"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "סכנה"
|
msgstr "סכנה"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "שגיאה"
|
msgstr "שגיאה"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "רמז"
|
msgstr "רמז"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "חשוב"
|
msgstr "חשוב"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "הערה"
|
msgstr "הערה"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "ראה גם"
|
msgstr "ראה גם"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "טיפ"
|
msgstr "טיפ"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "אזהרה"
|
msgstr "אזהרה"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "חדש בגרסה %s"
|
msgstr "חדש בגרסה %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "השתנה בגרסה %s"
|
msgstr "השתנה בגרסה %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr " לא מומלץ לשימוש מגרסה %s"
|
msgstr " לא מומלץ לשימוש מגרסה %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "מילת מפתח"
|
msgstr "מילת מפתח"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -722,7 +730,9 @@ msgstr "פרק הבא"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Please activate JavaScript to enable the search\n"
|
"Please activate JavaScript to enable the search\n"
|
||||||
" functionality."
|
" functionality."
|
||||||
msgstr "אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n החיפוש."
|
msgstr ""
|
||||||
|
"אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n"
|
||||||
|
" החיפוש."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:32
|
#: sphinx/themes/basic/search.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -732,23 +742,20 @@ msgid ""
|
|||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "חיפוש"
|
msgstr "חיפוש"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "תוצאות החיפוש"
|
msgstr "תוצאות החיפוש"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -787,33 +794,33 @@ msgstr ""
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "שינויים אחרים"
|
msgstr "שינויים אחרים"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "קישור קבוע לכותרת זו"
|
msgstr "קישור קבוע לכותרת זו"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "קישור קבוע להגדרה זו"
|
msgstr "קישור קבוע להגדרה זו"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "הסתר תוצאות חיפוש"
|
msgstr "הסתר תוצאות חיפוש"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -830,44 +837,56 @@ msgstr "כווץ סרגל צד"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "תוכן"
|
msgstr "תוכן"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "מהדורה"
|
msgstr "מהדורה"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "סכנה"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "הערות שוליים"
|
msgstr "הערות שוליים"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "המשך מעמוד קודם"
|
msgstr "המשך מעמוד קודם"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "המשך בעמוד הבא"
|
msgstr "המשך בעמוד הבא"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[תמונה]"
|
msgstr "[תמונה]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "hr", "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2", "messages": {"Next topic": "Slijede\u0107a tema", "Index": "Abecedni popis", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "", "Copyright": "Sva prava zadr\u017eana", "C API changes": "C API changes", "quick access to all modules": "brz dostup do svih modulov", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", "Global Module Index": "Op\u0107eniti popis modula", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "Index – %(key)s": "Index – %(key)s", "General Index": "Opceniti abecedni indeks", "next chapter": "slijede\u0107e poglavje", "Search finished, found %s page(s) matching the search query.": "", "previous chapter": "Prija\u0161nje poglavje", "Permalink to this headline": "Link na taj naslov", "About these documents": "O ovim dokumentima", "Preparing search...": "", ", in ": "", "Navigation": "Navigacija", "Expand sidebar": "", "the documentation for": "", "Complete Table of Contents": "Potpuna tabela sadr\u017eaja", "Contents": "", "can be huge": "mo\u017ee biti veliko", "Changes in Version %(version)s — %(docstitle)s": "Changes in Version %(version)s — %(docstitle)s", "Other changes": "Ostale promjene", "Hide Search Matches": "Sakrij rezultate pretrage", "Quick search": "Brzo pretra\u017eivanje", "Show Source": "Prika\u017ei izvorni kod", "Search": "Tra\u017ei", "This Page": "Trenutna stranica", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Izra\u0111eno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "last updated": "", "Collapse sidebar": "", "Go": "Naprijed", "Table Of Contents": "Pregled sadr\u017eaja", "Search within %(docstitle)s": "Tra\u017ei izme\u0111u %(docstitle)s", "all functions, classes, terms": "sve funkcije, razredi, izrazi", "Please activate JavaScript to enable the search\n functionality.": "Molimo omogu\u0107ite JavaScript\n za djelovanje tra\u017eilice.", "Indices and tables:": "Kazala i tabele:", "lists all sections and subsections": "prika\u017ei sve sekcije i podsekcije", "Index pages by letter": "Indeksiraj stranice po slovu", "search": "tra\u017ei", "Permalink to this definition": "Link na tu definiciju", "Previous topic": "Prija\u0161nja tema", "Overview": "Pregled", "Last updated on %(last_updated)s.": "Zadnji put a\u017eurirano %(last_updated)s.", "Searching": "", "search this documentation": "tra\u017ei po dokumentaciji", "Automatically generated list of changes in version %(version)s": "Automatically generated list of changes in version %(version)s", "Full index on one page": "Potpun indeks na jednoj strani", "Enter search terms or a module, class or function name.": "Unesi ime modula, razreda ili funkcije.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Sva prava zadr\u017eana</a> %(copyright)s.", "Library changes": "Library changes", "Search Page": "Tra\u017eilica", "Search Results": "Rezultati pretrage"}});
|
Documentation.addTranslations({"locale": "hr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Sva prava zadr\u017eana</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", ", in ": "", "About these documents": "O ovim dokumentima", "Automatically generated list of changes in version %(version)s": "Automatically generated list of changes in version %(version)s", "C API changes": "C API changes", "Changes in Version %(version)s — %(docstitle)s": "Changes in Version %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Potpuna tabela sadr\u017eaja", "Contents": "", "Copyright": "Sva prava zadr\u017eana", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Izra\u0111eno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Unesi ime modula, razreda ili funkcije.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.", "Full index on one page": "Potpun indeks na jednoj strani", "General Index": "Opceniti abecedni indeks", "Global Module Index": "Op\u0107eniti popis modula", "Go": "Naprijed", "Hide Search Matches": "Sakrij rezultate pretrage", "Index": "Abecedni popis", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indeksiraj stranice po slovu", "Indices and tables:": "Kazala i tabele:", "Last updated on %(last_updated)s.": "Zadnji put a\u017eurirano %(last_updated)s.", "Library changes": "Library changes", "Navigation": "Navigacija", "Next topic": "Slijede\u0107a tema", "Other changes": "Ostale promjene", "Overview": "Pregled", "Permalink to this definition": "Link na tu definiciju", "Permalink to this headline": "Link na taj naslov", "Please activate JavaScript to enable the search\n functionality.": "Molimo omogu\u0107ite JavaScript\n za djelovanje tra\u017eilice.", "Preparing search...": "", "Previous topic": "Prija\u0161nja tema", "Quick search": "Brzo pretra\u017eivanje", "Search": "Tra\u017ei", "Search Page": "Tra\u017eilica", "Search Results": "Rezultati pretrage", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Tra\u017ei izme\u0111u %(docstitle)s", "Searching": "", "Show Source": "Prika\u017ei izvorni kod", "Table Of Contents": "Pregled sadr\u017eaja", "This Page": "Trenutna stranica", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "sve funkcije, razredi, izrazi", "can be huge": "mo\u017ee biti veliko", "last updated": "", "lists all sections and subsections": "prika\u017ei sve sekcije i podsekcije", "next chapter": "slijede\u0107e poglavje", "previous chapter": "Prija\u0161nje poglavje", "quick access to all modules": "brz dostup do svih modulov", "search": "tra\u017ei", "search this documentation": "tra\u017ei po dokumentaciji", "the documentation for": ""}, "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2"});
|
Binary file not shown.
@ -1,55 +1,56 @@
|
|||||||
# Translations template for Sphinx.
|
# Croatian translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# Mario Šarić, 2015
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Croatian (http://www.transifex.com/projects/p/sphinx-1/language/hr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"Language-Team: Croatian "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/hr/)\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "Sl. %s"
|
msgstr "Sl. %s"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "Tablica %s"
|
msgstr "Tablica %s"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr "Ispis %s"
|
msgstr "Ispis %s"
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "%s %s dokumentacija"
|
msgstr "%s %s dokumentacija"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "pogledajte %s"
|
msgstr "pogledajte %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "također pogledajte %s"
|
msgstr "također pogledajte %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Simboli"
|
msgstr "Simboli"
|
||||||
|
|
||||||
@ -58,11 +59,10 @@ msgstr "Simboli"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Enhancement Proposals; PEP %s"
|
msgstr "Python Enhancement Proposals; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d %B, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -72,64 +72,63 @@ msgstr "Ugrađeni dijelovi"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Nivo modula"
|
msgstr "Nivo modula"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%d %b, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Opceniti abecedni indeks"
|
msgstr "Opceniti abecedni indeks"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "abecedni indeks"
|
msgstr "abecedni indeks"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "naprijed"
|
msgstr "naprijed"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "nazad"
|
msgstr "nazad"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " (u "
|
msgstr " (u "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Autor sekcije: "
|
msgstr "Autor sekcije: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Autor modula: "
|
msgstr "Autor modula: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Autor koda:"
|
msgstr "Autor koda:"
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Autor:"
|
msgstr "Autor:"
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Parametri"
|
msgstr "Parametri"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Vraća"
|
msgstr "Vraća"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Vraća tip"
|
msgstr "Vraća tip"
|
||||||
|
|
||||||
@ -158,12 +157,12 @@ msgstr "%s (C tip)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C varijabla)"
|
msgstr "%s (C varijabla)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "funkcija"
|
msgstr "funkcija"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "član"
|
msgstr "član"
|
||||||
|
|
||||||
@ -171,7 +170,7 @@ msgstr "član"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "makro"
|
msgstr "makro"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "tip"
|
msgstr "tip"
|
||||||
|
|
||||||
@ -179,59 +178,64 @@ msgstr "tip"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "varijabla"
|
msgstr "varijabla"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Parametri"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Baca (iznimke)"
|
msgstr "Baca (iznimke)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++ tip)"
|
msgstr "%s (C++ tip)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++ član)"
|
msgstr "%s (C++ član)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++ funkcija)"
|
msgstr "%s (C++ funkcija)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++ razred)"
|
msgstr "%s (C++ razred)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr "%s (C++ enum)"
|
msgstr "%s (C++ enum)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr "%s (C++ enumerator)"
|
msgstr "%s (C++ enumerator)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "razred"
|
msgstr "razred"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr "enum"
|
msgstr "enum"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr "enumerator"
|
msgstr "enumerator"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (ugrađene funkcije)"
|
msgstr "%s() (ugrađene funkcije)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (%s metoda)"
|
msgstr "%s() (%s metoda)"
|
||||||
@ -246,7 +250,7 @@ msgstr "%s() (razred)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (%s atribut)"
|
msgstr "%s (%s atribut)"
|
||||||
@ -255,116 +259,116 @@ msgstr "%s (%s atribut)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "atribut"
|
msgstr "atribut"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Podiže"
|
msgstr "Podiže"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (u modulu %s)"
|
msgstr "%s() (u modulu %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (ugrađene variable)"
|
msgstr "%s (ugrađene variable)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (u modulu %s)"
|
msgstr "%s (u modulu %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (ugrađen razred)"
|
msgstr "%s (ugrađen razred)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (razred u %s)"
|
msgstr "%s (razred u %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (%s.%s metoda)"
|
msgstr "%s() (%s.%s metoda)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (%s.%s statična metoda)"
|
msgstr "%s() (%s.%s statična metoda)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (%s statična metoda)"
|
msgstr "%s() (%s statična metoda)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (%s.%s atribut)"
|
msgstr "%s (%s.%s atribut)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (modul)"
|
msgstr "%s (modul)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "Moduli"
|
msgstr "Moduli"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Zastarjelo"
|
msgstr "Zastarjelo"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "izuzetak"
|
msgstr "izuzetak"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "statična metoda"
|
msgstr "statična metoda"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "modul"
|
msgstr "modul"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (zastarjelo)"
|
msgstr " (zastarjelo)"
|
||||||
|
|
||||||
@ -396,64 +400,64 @@ msgstr "varijabla okruženja; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%scommand line parameter; %s"
|
msgstr "%scommand line parameter; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "varijabla okruženja"
|
msgstr "varijabla okruženja"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Abecedni popis"
|
msgstr "Abecedni popis"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Popis modula"
|
msgstr "Popis modula"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Tražilica"
|
msgstr "Tražilica"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Osnove: %s"
|
msgstr " Osnove: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "nadimak za :class:`%s`"
|
msgstr "nadimak za :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -462,112 +466,116 @@ msgstr ""
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Todo"
|
msgstr "Todo"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
msgid "<<original entry>>"
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Pozor"
|
msgstr "Pozor"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Pažnja"
|
msgstr "Pažnja"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Opasnost"
|
msgstr "Opasnost"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Greška"
|
msgstr "Greška"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Savjet"
|
msgstr "Savjet"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Važno"
|
msgstr "Važno"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Napomena"
|
msgstr "Napomena"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Pogledaj i"
|
msgstr "Pogledaj i"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Savjet"
|
msgstr "Savjet"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Upozorenje"
|
msgstr "Upozorenje"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Novo u verziji %s"
|
msgstr "Novo u verziji %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "Promijenjeno u verziji %s"
|
msgstr "Promijenjeno u verziji %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Zastarijelo od verzije %s"
|
msgstr "Zastarijelo od verzije %s"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "ključna riječ"
|
msgstr "ključna riječ"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "operator"
|
msgstr "operator"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objekt"
|
msgstr "objekt"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "izjava"
|
msgstr "izjava"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "ugrađen funkcije"
|
msgstr "ugrađen funkcije"
|
||||||
|
|
||||||
@ -695,7 +703,9 @@ msgstr "Zadnji put ažurirano %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "Izrađeno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s."
|
msgstr ""
|
||||||
|
"Izrađeno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -722,7 +732,9 @@ msgstr "slijedeće poglavje"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Please activate JavaScript to enable the search\n"
|
"Please activate JavaScript to enable the search\n"
|
||||||
" functionality."
|
" functionality."
|
||||||
msgstr "Molimo omogućite JavaScript\n za djelovanje tražilice."
|
msgstr ""
|
||||||
|
"Molimo omogućite JavaScript\n"
|
||||||
|
" za djelovanje tražilice."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:32
|
#: sphinx/themes/basic/search.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -730,25 +742,26 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list."
|
msgstr ""
|
||||||
|
"From here you can search these documents. Enter your search\n"
|
||||||
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
|
" function will automatically search for all of the words. Pages\n"
|
||||||
|
" containing fewer words won't appear in the result list."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "traži"
|
msgstr "traži"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Rezultati pretrage"
|
msgstr "Rezultati pretrage"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
@ -787,33 +800,33 @@ msgstr "C API changes"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Ostale promjene"
|
msgstr "Ostale promjene"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Link na taj naslov"
|
msgstr "Link na taj naslov"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Link na tu definiciju"
|
msgstr "Link na tu definiciju"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Sakrij rezultate pretrage"
|
msgstr "Sakrij rezultate pretrage"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -830,44 +843,59 @@ msgstr ""
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Distribucija"
|
msgstr "Distribucija"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Opasnost"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "nastavak sa prethodne stranice"
|
msgstr "nastavak sa prethodne stranice"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "nastavak na slijedećoj stranici"
|
msgstr "nastavak na slijedećoj stranici"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[slika]"
|
msgstr "[slika]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%d %B, %Y"
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%d %b, %Y"
|
||||||
|
|
||||||
|
#~ msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "hu", "plural_expr": "(n != 1)", "messages": {"Next topic": "K\u00f6vetkez\u0151 t\u00e9mak\u00f6r", "Index": "T\u00e1rgymutat\u00f3", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "\u00dcdv\u00f6z\u00f6lj\u00fck! Ez a", "Copyright": "Minden jog fenntartva", "C API changes": "C API v\u00e1ltoz\u00e1sok", "quick access to all modules": "gyors hozz\u00e1f\u00e9r\u00e9s az \u00f6sszes modulhoz", "© Copyright %(copyright)s.": "© Minden jog fenntartva %(copyright)s.", "Global Module Index": "Teljes modul t\u00e1rgymutat\u00f3", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A keres\u00e9se nem hozott eredm\u00e9nyt. Ellen\u0151rizze, a megadott kulcsszavakat \u00e9s azt, hogy megfelel\u0151 sz\u00e1m\u00fa kateg\u00f3ria van-e kiv\u00e1lasztva.", "Index – %(key)s": "T\u00e1rgymutat\u00f3 – %(key)s", "General Index": "\u00c1ltal\u00e1nos t\u00e1rgymutat\u00f3", "next chapter": "k\u00f6vetkez\u0151 fejezet", "Search finished, found %s page(s) matching the search query.": "A keres\u00e9s befejez\u0151d\u00f6tt, %s oldal egyezik a keres\u00e9si fel\u00e9teleknek.", "previous chapter": "el\u0151z\u0151 fejezet", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre", "About these documents": "N\u00e9vjegy ezekr\u0151l a dokumentumokr\u00f3l", "Preparing search...": "Felk\u00e9sz\u00fcl\u00e9s a keres\u00e9sre...", ", in ": ", ", "Navigation": "Navig\u00e1ci\u00f3", "Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa", "the documentation for": "dokument\u00e1ci\u00f3", "Complete Table of Contents": "Teljes tartalomjegyz\u00e9k", "Contents": "Tartalom", "can be huge": "nagy lehet", "Changes in Version %(version)s — %(docstitle)s": "V\u00e1ltoz\u00e1sok a(z) %(version)s v\u00e1ltozatban — %(docstitle)s", "Other changes": "Egy\u00e9b v\u00e1ltoz\u00e1sok", "Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Quick search": "Gyorskeres\u00e9s", "Show Source": "Forr\u00e1s megtekint\u00e9se", "Search": "Keres\u00e9s", "This Page": "Ez az Oldal", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Err\u0151l az oldalr\u00f3l ind\u00edthatja keres\u00e9seit. \u00cdrja be a kulcsszavakat\n az al\u00e1bbi sz\u00f6vegdobozba, majd kattintson a \"keres\u00e9s\" gombra.\n \u00dcgyeljen arra, hogy a keres\u00e9s megadott kulcsszavak mindegyik\u00e9t\n figyelembe veszi, \u00edgy azok az oldalak, melyek nem tartalmazz\u00e1k az\n \u00f6sszes kifejez\u00e9st, nem jelennek meg a tal\u00e1lati list\u00e1ban.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s haszn\u00e1lat\u00e1val k\u00e9sz\u00fclt.", "last updated": "utolj\u00e1ra friss\u00edtve", "Collapse sidebar": "Oldals\u00e1v \u00f6sszez\u00e1r\u00e1sa", "Go": "Ok", "Table Of Contents": "Tartalomjegyz\u00e9k", "Search within %(docstitle)s": "Keres\u00e9s k\u00f6zt\u00fck: %(docstitle)s", "all functions, classes, terms": "\u00f6sszes funkci\u00f3, oszt\u00e1ly \u00e9s kifejez\u00e9s", "Please activate JavaScript to enable the search\n functionality.": "K\u00e9rem enged\u00e9lyezze a JavaScriptet a keres\u0151 funkci\u00f3\n haszn\u00e1lat\u00e1hoz.", "Indices and tables:": "T\u00e1rgymutat\u00f3 \u00e9s t\u00e1bl\u00e1zatok", "lists all sections and subsections": "kilist\u00e1zza az \u00f6sszes fejezetet \u00e9s alfejezetet", "Index pages by letter": "Oldalak ABC sorrendben", "search": "keres\u00e9s", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Previous topic": "El\u0151z\u0151 t\u00e9mak\u00f6r", "Overview": "\u00c1ttekint\u00e9s", "Last updated on %(last_updated)s.": "Utols\u00f3 friss\u00edt\u00e9s %(last_updated)s.", "Searching": "Keres\u00e9s folyamatban", "search this documentation": "keres\u00e9s ebben a dokument\u00e1ci\u00f3ban", "Automatically generated list of changes in version %(version)s": "Automatikusan gener\u00e1lt v\u00e1ltoz\u00e1slista a(z) %(version)s v\u00e1ltozathoz", "Full index on one page": "Teljes t\u00e1rgymutat\u00f3 egy oldalon", "Enter search terms or a module, class or function name.": "Adjon meg egy keresend\u0151 kifejez\u00e9st, modul, oszt\u00e1ly vagy funkci\u00f3 nevet.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Minden jog fenntartva</a> %(copyright)s.", "Library changes": "K\u00f6nyvt\u00e1r v\u00e1ltoz\u00e1sok", "Search Page": "Keres\u00e9s", "Search Results": "Keres\u00e9si Eredm\u00e9nyek"}});
|
Documentation.addTranslations({"locale": "hu", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Minden jog fenntartva</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Minden jog fenntartva %(copyright)s.", ", in ": ", ", "About these documents": "N\u00e9vjegy ezekr\u0151l a dokumentumokr\u00f3l", "Automatically generated list of changes in version %(version)s": "Automatikusan gener\u00e1lt v\u00e1ltoz\u00e1slista a(z) %(version)s v\u00e1ltozathoz", "C API changes": "C API v\u00e1ltoz\u00e1sok", "Changes in Version %(version)s — %(docstitle)s": "V\u00e1ltoz\u00e1sok a(z) %(version)s v\u00e1ltozatban — %(docstitle)s", "Collapse sidebar": "Oldals\u00e1v \u00f6sszez\u00e1r\u00e1sa", "Complete Table of Contents": "Teljes tartalomjegyz\u00e9k", "Contents": "Tartalom", "Copyright": "Minden jog fenntartva", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s haszn\u00e1lat\u00e1val k\u00e9sz\u00fclt.", "Enter search terms or a module, class or function name.": "Adjon meg egy keresend\u0151 kifejez\u00e9st, modul, oszt\u00e1ly vagy funkci\u00f3 nevet.", "Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Err\u0151l az oldalr\u00f3l ind\u00edthatja keres\u00e9seit. \u00cdrja be a kulcsszavakat\n az al\u00e1bbi sz\u00f6vegdobozba, majd kattintson a \"keres\u00e9s\" gombra.\n \u00dcgyeljen arra, hogy a keres\u00e9s megadott kulcsszavak mindegyik\u00e9t\n figyelembe veszi, \u00edgy azok az oldalak, melyek nem tartalmazz\u00e1k az\n \u00f6sszes kifejez\u00e9st, nem jelennek meg a tal\u00e1lati list\u00e1ban.", "Full index on one page": "Teljes t\u00e1rgymutat\u00f3 egy oldalon", "General Index": "\u00c1ltal\u00e1nos t\u00e1rgymutat\u00f3", "Global Module Index": "Teljes modul t\u00e1rgymutat\u00f3", "Go": "Ok", "Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Index": "T\u00e1rgymutat\u00f3", "Index – %(key)s": "T\u00e1rgymutat\u00f3 – %(key)s", "Index pages by letter": "Oldalak ABC sorrendben", "Indices and tables:": "T\u00e1rgymutat\u00f3 \u00e9s t\u00e1bl\u00e1zatok", "Last updated on %(last_updated)s.": "Utols\u00f3 friss\u00edt\u00e9s %(last_updated)s.", "Library changes": "K\u00f6nyvt\u00e1r v\u00e1ltoz\u00e1sok", "Navigation": "Navig\u00e1ci\u00f3", "Next topic": "K\u00f6vetkez\u0151 t\u00e9mak\u00f6r", "Other changes": "Egy\u00e9b v\u00e1ltoz\u00e1sok", "Overview": "\u00c1ttekint\u00e9s", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre", "Please activate JavaScript to enable the search\n functionality.": "K\u00e9rem enged\u00e9lyezze a JavaScriptet a keres\u0151 funkci\u00f3\n haszn\u00e1lat\u00e1hoz.", "Preparing search...": "Felk\u00e9sz\u00fcl\u00e9s a keres\u00e9sre...", "Previous topic": "El\u0151z\u0151 t\u00e9mak\u00f6r", "Quick search": "Gyorskeres\u00e9s", "Search": "Keres\u00e9s", "Search Page": "Keres\u00e9s", "Search Results": "Keres\u00e9si Eredm\u00e9nyek", "Search finished, found %s page(s) matching the search query.": "A keres\u00e9s befejez\u0151d\u00f6tt, %s oldal egyezik a keres\u00e9si fel\u00e9teleknek.", "Search within %(docstitle)s": "Keres\u00e9s k\u00f6zt\u00fck: %(docstitle)s", "Searching": "Keres\u00e9s folyamatban", "Show Source": "Forr\u00e1s megtekint\u00e9se", "Table Of Contents": "Tartalomjegyz\u00e9k", "This Page": "Ez az Oldal", "Welcome! This is": "\u00dcdv\u00f6z\u00f6lj\u00fck! Ez a", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A keres\u00e9se nem hozott eredm\u00e9nyt. Ellen\u0151rizze, a megadott kulcsszavakat \u00e9s azt, hogy megfelel\u0151 sz\u00e1m\u00fa kateg\u00f3ria van-e kiv\u00e1lasztva.", "all functions, classes, terms": "\u00f6sszes funkci\u00f3, oszt\u00e1ly \u00e9s kifejez\u00e9s", "can be huge": "nagy lehet", "last updated": "utolj\u00e1ra friss\u00edtve", "lists all sections and subsections": "kilist\u00e1zza az \u00f6sszes fejezetet \u00e9s alfejezetet", "next chapter": "k\u00f6vetkez\u0151 fejezet", "previous chapter": "el\u0151z\u0151 fejezet", "quick access to all modules": "gyors hozz\u00e1f\u00e9r\u00e9s az \u00f6sszes modulhoz", "search": "keres\u00e9s", "search this documentation": "keres\u00e9s ebben a dokument\u00e1ci\u00f3ban", "the documentation for": "dokument\u00e1ci\u00f3"}, "plural_expr": "(n != 1)"});
|
Binary file not shown.
@ -1,56 +1,55 @@
|
|||||||
# Translations template for Sphinx.
|
# Hungarian translations for Sphinx.
|
||||||
# Copyright (C) 2015 ORGANIZATION
|
# Copyright (C) 2016 ORGANIZATION
|
||||||
# This file is distributed under the same license as the Sphinx project.
|
# This file is distributed under the same license as the Sphinx project.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||||
# Translators:
|
#
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011
|
|
||||||
# szunyog <szunyog@gmail.com>, 2013,2015
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Sphinx\n"
|
"Project-Id-Version: Sphinx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2015-03-08 23:31+0900\n"
|
"POT-Creation-Date: 2016-02-14 22:15+0900\n"
|
||||||
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
"PO-Revision-Date: 2015-03-08 14:35+0000\n"
|
||||||
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
"Last-Translator: Takayuki Shimizukawa <shimizukawa@gmail.com>\n"
|
||||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/sphinx-1/language/hu/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Generated-By: Babel 1.3\n"
|
|
||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Language-Team: Hungarian "
|
||||||
|
"(http://www.transifex.com/projects/p/sphinx-1/language/hu/)\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.2.0\n"
|
||||||
|
|
||||||
#: sphinx/config.py:80
|
#: sphinx/config.py:84
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Fig. %s"
|
msgid "Fig. %s"
|
||||||
msgstr "%s. ábra"
|
msgstr "%s. ábra"
|
||||||
|
|
||||||
#: sphinx/config.py:81
|
#: sphinx/config.py:85
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Table %s"
|
msgid "Table %s"
|
||||||
msgstr "%s. táblázat"
|
msgstr "%s. táblázat"
|
||||||
|
|
||||||
#: sphinx/config.py:82
|
#: sphinx/config.py:86
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Listing %s"
|
msgid "Listing %s"
|
||||||
msgstr "%s. felsorlás"
|
msgstr "%s. felsorlás"
|
||||||
|
|
||||||
#: sphinx/config.py:89
|
#: sphinx/config.py:93
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s documentation"
|
msgid "%s %s documentation"
|
||||||
msgstr "%s %s dokumentáció"
|
msgstr "%s %s dokumentáció"
|
||||||
|
|
||||||
#: sphinx/environment.py:1880
|
#: sphinx/environment.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see %s"
|
msgid "see %s"
|
||||||
msgstr "lásd %s"
|
msgstr "lásd %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1883
|
#: sphinx/environment.py:1819
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "see also %s"
|
msgid "see also %s"
|
||||||
msgstr "lásd még %s"
|
msgstr "lásd még %s"
|
||||||
|
|
||||||
#: sphinx/environment.py:1941
|
#: sphinx/environment.py:1879
|
||||||
msgid "Symbols"
|
msgid "Symbols"
|
||||||
msgstr "Szimbólumok"
|
msgstr "Szimbólumok"
|
||||||
|
|
||||||
@ -59,11 +58,10 @@ msgstr "Szimbólumok"
|
|||||||
msgid "Python Enhancement Proposals; PEP %s"
|
msgid "Python Enhancement Proposals; PEP %s"
|
||||||
msgstr "Python Fejlesztési Javaslatok; PEP %s"
|
msgstr "Python Fejlesztési Javaslatok; PEP %s"
|
||||||
|
|
||||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||||
#, python-format
|
msgid "MMMM dd, YYYY"
|
||||||
msgid "%B %d, %Y"
|
msgstr ""
|
||||||
msgstr "%Y. %m. %d."
|
|
||||||
|
|
||||||
#: sphinx/builders/changes.py:75
|
#: sphinx/builders/changes.py:75
|
||||||
msgid "Builtins"
|
msgid "Builtins"
|
||||||
@ -73,64 +71,63 @@ msgstr "Beépített"
|
|||||||
msgid "Module level"
|
msgid "Module level"
|
||||||
msgstr "Modul szint"
|
msgstr "Modul szint"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:291
|
#: sphinx/builders/html.py:295
|
||||||
#, python-format
|
msgid "MMM dd, YYYY"
|
||||||
msgid "%b %d, %Y"
|
msgstr ""
|
||||||
msgstr "%b %d, %Y"
|
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310 sphinx/themes/basic/defindex.html:30
|
#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30
|
||||||
msgid "General Index"
|
msgid "General Index"
|
||||||
msgstr "Általános tárgymutató"
|
msgstr "Általános tárgymutató"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:310
|
#: sphinx/builders/html.py:315
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr "nyitóoldal"
|
msgstr "nyitóoldal"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:371
|
#: sphinx/builders/html.py:376
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "következő"
|
msgstr "következő"
|
||||||
|
|
||||||
#: sphinx/builders/html.py:380
|
#: sphinx/builders/html.py:385
|
||||||
msgid "previous"
|
msgid "previous"
|
||||||
msgstr "előző"
|
msgstr "előző"
|
||||||
|
|
||||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||||
msgid " (in "
|
msgid " (in "
|
||||||
msgstr " ("
|
msgstr " ("
|
||||||
|
|
||||||
#: sphinx/directives/other.py:150
|
#: sphinx/directives/other.py:149
|
||||||
msgid "Section author: "
|
msgid "Section author: "
|
||||||
msgstr "Fejezet szerző: "
|
msgstr "Fejezet szerző: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:152
|
#: sphinx/directives/other.py:151
|
||||||
msgid "Module author: "
|
msgid "Module author: "
|
||||||
msgstr "Modul szerző: "
|
msgstr "Modul szerző: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:154
|
#: sphinx/directives/other.py:153
|
||||||
msgid "Code author: "
|
msgid "Code author: "
|
||||||
msgstr "Kód szerző: "
|
msgstr "Kód szerző: "
|
||||||
|
|
||||||
#: sphinx/directives/other.py:156
|
#: sphinx/directives/other.py:155
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr "Szerző: "
|
msgstr "Szerző: "
|
||||||
|
|
||||||
#: sphinx/domains/__init__.py:273
|
#: sphinx/domains/__init__.py:275
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s %s"
|
msgid "%s %s"
|
||||||
msgstr "%s %s"
|
msgstr "%s %s"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||||
#: sphinx/domains/python.py:122
|
#: sphinx/domains/python.py:124
|
||||||
msgid "Parameters"
|
msgid "Parameters"
|
||||||
msgstr "Paraméterek"
|
msgstr "Paraméterek"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||||
msgid "Returns"
|
msgid "Returns"
|
||||||
msgstr "Visszatérési érték"
|
msgstr "Visszatérési érték"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||||
#: sphinx/domains/python.py:136
|
#: sphinx/domains/python.py:138
|
||||||
msgid "Return type"
|
msgid "Return type"
|
||||||
msgstr "Visszatérés típusa"
|
msgstr "Visszatérés típusa"
|
||||||
|
|
||||||
@ -159,12 +156,12 @@ msgstr "%s (C típus)"
|
|||||||
msgid "%s (C variable)"
|
msgid "%s (C variable)"
|
||||||
msgstr "%s (C változó)"
|
msgstr "%s (C változó)"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||||
msgid "function"
|
msgid "function"
|
||||||
msgstr "függvény"
|
msgstr "függvény"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||||
msgid "member"
|
msgid "member"
|
||||||
msgstr "tag"
|
msgstr "tag"
|
||||||
|
|
||||||
@ -172,7 +169,7 @@ msgstr "tag"
|
|||||||
msgid "macro"
|
msgid "macro"
|
||||||
msgstr "makró"
|
msgstr "makró"
|
||||||
|
|
||||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||||
msgid "type"
|
msgid "type"
|
||||||
msgstr "típus"
|
msgstr "típus"
|
||||||
|
|
||||||
@ -180,59 +177,64 @@ msgstr "típus"
|
|||||||
msgid "variable"
|
msgid "variable"
|
||||||
msgstr "változó"
|
msgstr "változó"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2411 sphinx/domains/javascript.py:125
|
#: sphinx/domains/cpp.py:3608
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Template Parameters"
|
||||||
|
msgstr "Paraméterek"
|
||||||
|
|
||||||
|
#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125
|
||||||
msgid "Throws"
|
msgid "Throws"
|
||||||
msgstr "Dob"
|
msgstr "Dob"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2518
|
#: sphinx/domains/cpp.py:3733
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ type)"
|
msgid "%s (C++ type)"
|
||||||
msgstr "%s (C++ típus)"
|
msgstr "%s (C++ típus)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2531
|
#: sphinx/domains/cpp.py:3744
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ member)"
|
msgid "%s (C++ member)"
|
||||||
msgstr "%s (C++ tagváltozó)"
|
msgstr "%s (C++ tagváltozó)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2543
|
#: sphinx/domains/cpp.py:3755
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ function)"
|
msgid "%s (C++ function)"
|
||||||
msgstr "%s (C++ függvény)"
|
msgstr "%s (C++ függvény)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2555
|
#: sphinx/domains/cpp.py:3766
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ class)"
|
msgid "%s (C++ class)"
|
||||||
msgstr "%s (C++ osztály)"
|
msgstr "%s (C++ osztály)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2579
|
#: sphinx/domains/cpp.py:3786
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enum)"
|
msgid "%s (C++ enum)"
|
||||||
msgstr "%s (C++ enumeráció)"
|
msgstr "%s (C++ enumeráció)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2617
|
#: sphinx/domains/cpp.py:3816
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (C++ enumerator)"
|
msgid "%s (C++ enumerator)"
|
||||||
msgstr "%s (C++ enumerátor)"
|
msgstr "%s (C++ enumerátor)"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||||
#: sphinx/domains/python.py:589
|
#: sphinx/domains/python.py:591
|
||||||
msgid "class"
|
msgid "class"
|
||||||
msgstr "osztály"
|
msgstr "osztály"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2683
|
#: sphinx/domains/cpp.py:3956
|
||||||
msgid "enum"
|
msgid "enum"
|
||||||
msgstr "enumeráció"
|
msgstr "enumeráció"
|
||||||
|
|
||||||
#: sphinx/domains/cpp.py:2684
|
#: sphinx/domains/cpp.py:3957
|
||||||
msgid "enumerator"
|
msgid "enumerator"
|
||||||
msgstr "enumerátor"
|
msgstr "enumerátor"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (built-in function)"
|
msgid "%s() (built-in function)"
|
||||||
msgstr "%s() (beépített függvény)"
|
msgstr "%s() (beépített függvény)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s method)"
|
msgid "%s() (%s method)"
|
||||||
msgstr "%s() (%s metódus)"
|
msgstr "%s() (%s metódus)"
|
||||||
@ -247,7 +249,7 @@ msgstr "%s() (osztály)"
|
|||||||
msgid "%s (global variable or constant)"
|
msgid "%s (global variable or constant)"
|
||||||
msgstr "%s (globális változó vagy konstans)"
|
msgstr "%s (globális változó vagy konstans)"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s attribute)"
|
msgid "%s (%s attribute)"
|
||||||
msgstr "%s (%s attribútum)"
|
msgstr "%s (%s attribútum)"
|
||||||
@ -256,116 +258,116 @@ msgstr "%s (%s attribútum)"
|
|||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argumentum"
|
msgstr "Argumentum"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||||
msgid "data"
|
msgid "data"
|
||||||
msgstr "adat"
|
msgstr "adat"
|
||||||
|
|
||||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||||
msgid "attribute"
|
msgid "attribute"
|
||||||
msgstr "attribútum"
|
msgstr "attribútum"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:127
|
#: sphinx/domains/python.py:129
|
||||||
msgid "Variables"
|
msgid "Variables"
|
||||||
msgstr "Változók"
|
msgstr "Változók"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:131
|
#: sphinx/domains/python.py:133
|
||||||
msgid "Raises"
|
msgid "Raises"
|
||||||
msgstr "Elmel"
|
msgstr "Elmel"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (in module %s)"
|
msgid "%s() (in module %s)"
|
||||||
msgstr "%s() (%s modulban)"
|
msgstr "%s() (%s modulban)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:284
|
#: sphinx/domains/python.py:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in variable)"
|
msgid "%s (built-in variable)"
|
||||||
msgstr "%s (beépített változó)"
|
msgstr "%s (beépített változó)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (in module %s)"
|
msgid "%s (in module %s)"
|
||||||
msgstr "%s (%s modulban)"
|
msgstr "%s (%s modulban)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:301
|
#: sphinx/domains/python.py:303
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (built-in class)"
|
msgid "%s (built-in class)"
|
||||||
msgstr "%s (beépített osztály)"
|
msgstr "%s (beépített osztály)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:302
|
#: sphinx/domains/python.py:304
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (class in %s)"
|
msgid "%s (class in %s)"
|
||||||
msgstr "%s (osztály %s)"
|
msgstr "%s (osztály %s)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:342
|
#: sphinx/domains/python.py:344
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s method)"
|
msgid "%s() (%s.%s method)"
|
||||||
msgstr "%s() (%s.%s metódus)"
|
msgstr "%s() (%s.%s metódus)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:354
|
#: sphinx/domains/python.py:356
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s static method)"
|
msgid "%s() (%s.%s static method)"
|
||||||
msgstr "%s() (%s.%s statikus metódus)"
|
msgstr "%s() (%s.%s statikus metódus)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:357
|
#: sphinx/domains/python.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s static method)"
|
msgid "%s() (%s static method)"
|
||||||
msgstr "%s() (%s statikus metódus)"
|
msgstr "%s() (%s statikus metódus)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:367
|
#: sphinx/domains/python.py:369
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s.%s class method)"
|
msgid "%s() (%s.%s class method)"
|
||||||
msgstr "%s() (%s.%s osztály metódus)"
|
msgstr "%s() (%s.%s osztály metódus)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:370
|
#: sphinx/domains/python.py:372
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s() (%s class method)"
|
msgid "%s() (%s class method)"
|
||||||
msgstr "%s() (%s osztály metódus)"
|
msgstr "%s() (%s osztály metódus)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:380
|
#: sphinx/domains/python.py:382
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (%s.%s attribute)"
|
msgid "%s (%s.%s attribute)"
|
||||||
msgstr "%s (%s.%s attribútum)"
|
msgstr "%s (%s.%s attribútum)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:461
|
#: sphinx/domains/python.py:463
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%s (module)"
|
msgid "%s (module)"
|
||||||
msgstr "%s (modul)"
|
msgstr "%s (modul)"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:518
|
#: sphinx/domains/python.py:520
|
||||||
msgid "Python Module Index"
|
msgid "Python Module Index"
|
||||||
msgstr "Python Modul Mutató"
|
msgstr "Python Modul Mutató"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:519
|
#: sphinx/domains/python.py:521
|
||||||
msgid "modules"
|
msgid "modules"
|
||||||
msgstr "modulok"
|
msgstr "modulok"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:565
|
#: sphinx/domains/python.py:567
|
||||||
msgid "Deprecated"
|
msgid "Deprecated"
|
||||||
msgstr "Elavult"
|
msgstr "Elavult"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||||
msgid "exception"
|
msgid "exception"
|
||||||
msgstr "kivétel"
|
msgstr "kivétel"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:591
|
#: sphinx/domains/python.py:593
|
||||||
msgid "method"
|
msgid "method"
|
||||||
msgstr "metódus"
|
msgstr "metódus"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:592
|
#: sphinx/domains/python.py:594
|
||||||
msgid "class method"
|
msgid "class method"
|
||||||
msgstr "osztály szintű metódus"
|
msgstr "osztály szintű metódus"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:593
|
#: sphinx/domains/python.py:595
|
||||||
msgid "static method"
|
msgid "static method"
|
||||||
msgstr "statikus metódus"
|
msgstr "statikus metódus"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||||
msgid "module"
|
msgid "module"
|
||||||
msgstr "modul"
|
msgstr "modul"
|
||||||
|
|
||||||
#: sphinx/domains/python.py:760
|
#: sphinx/domains/python.py:762
|
||||||
msgid " (deprecated)"
|
msgid " (deprecated)"
|
||||||
msgstr " (elavult)"
|
msgstr " (elavult)"
|
||||||
|
|
||||||
@ -397,64 +399,64 @@ msgstr "környezeti változó; %s"
|
|||||||
msgid "%scommand line option; %s"
|
msgid "%scommand line option; %s"
|
||||||
msgstr "%sparancssor opció; %s"
|
msgstr "%sparancssor opció; %s"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:443
|
#: sphinx/domains/std.py:433
|
||||||
msgid "glossary term"
|
msgid "glossary term"
|
||||||
msgstr "szójegyzék"
|
msgstr "szójegyzék"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:444
|
#: sphinx/domains/std.py:434
|
||||||
msgid "grammar token"
|
msgid "grammar token"
|
||||||
msgstr "nyelvtani jel"
|
msgstr "nyelvtani jel"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:445
|
#: sphinx/domains/std.py:435
|
||||||
msgid "reference label"
|
msgid "reference label"
|
||||||
msgstr "referencia cimke"
|
msgstr "referencia cimke"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:447
|
#: sphinx/domains/std.py:437
|
||||||
msgid "environment variable"
|
msgid "environment variable"
|
||||||
msgstr "környezeti változó"
|
msgstr "környezeti változó"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:448
|
#: sphinx/domains/std.py:438
|
||||||
msgid "program option"
|
msgid "program option"
|
||||||
msgstr "program opció"
|
msgstr "program opció"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:481 sphinx/themes/basic/genindex-single.html:32
|
#: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32
|
||||||
#: sphinx/themes/basic/genindex-single.html:57
|
#: sphinx/themes/basic/genindex-single.html:57
|
||||||
#: sphinx/themes/basic/genindex-split.html:11
|
#: sphinx/themes/basic/genindex-split.html:11
|
||||||
#: sphinx/themes/basic/genindex-split.html:14
|
#: sphinx/themes/basic/genindex-split.html:14
|
||||||
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35
|
||||||
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134
|
||||||
#: sphinx/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||||
msgid "Index"
|
msgid "Index"
|
||||||
msgstr "Tárgymutató"
|
msgstr "Tárgymutató"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:482
|
#: sphinx/domains/std.py:472
|
||||||
msgid "Module Index"
|
msgid "Module Index"
|
||||||
msgstr "Modulok"
|
msgstr "Modulok"
|
||||||
|
|
||||||
#: sphinx/domains/std.py:483 sphinx/themes/basic/defindex.html:25
|
#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25
|
||||||
msgid "Search Page"
|
msgid "Search Page"
|
||||||
msgstr "Keresés"
|
msgstr "Keresés"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1139
|
#: sphinx/ext/autodoc.py:1265
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid " Bases: %s"
|
msgid " Bases: %s"
|
||||||
msgstr " Alapul: %s"
|
msgstr " Alapul: %s"
|
||||||
|
|
||||||
#: sphinx/ext/autodoc.py:1181
|
#: sphinx/ext/autodoc.py:1318
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "alias of :class:`%s`"
|
msgid "alias of :class:`%s`"
|
||||||
msgstr "álneve :class:`%s`"
|
msgstr "álneve :class:`%s`"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[graph: %s]"
|
msgid "[graph: %s]"
|
||||||
msgstr "[graph: %s]"
|
msgstr "[graph: %s]"
|
||||||
|
|
||||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||||
msgid "[graph]"
|
msgid "[graph]"
|
||||||
msgstr "[graph]"
|
msgstr "[graph]"
|
||||||
|
|
||||||
#: sphinx/ext/intersphinx.py:257
|
#: sphinx/ext/intersphinx.py:359
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "(in %s v%s)"
|
msgid "(in %s v%s)"
|
||||||
msgstr "(%s v%s)"
|
msgstr "(%s v%s)"
|
||||||
@ -463,112 +465,117 @@ msgstr "(%s v%s)"
|
|||||||
msgid "[source]"
|
msgid "[source]"
|
||||||
msgstr "[source]"
|
msgstr "[source]"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:43
|
#: sphinx/ext/todo.py:56
|
||||||
msgid "Todo"
|
msgid "Todo"
|
||||||
msgstr "Tennivaló"
|
msgstr "Tennivaló"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:113
|
#: sphinx/ext/todo.py:129
|
||||||
#, python-format
|
#, fuzzy
|
||||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
msgid "<<original entry>>"
|
||||||
|
msgstr "eredeti bejegyzés"
|
||||||
|
|
||||||
|
#: sphinx/ext/todo.py:132
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||||
msgstr "(Az <<eredeti bejegyzés>> megtalálható a(z) %s, %d sor.)"
|
msgstr "(Az <<eredeti bejegyzés>> megtalálható a(z) %s, %d sor.)"
|
||||||
|
|
||||||
#: sphinx/ext/todo.py:122
|
#: sphinx/ext/todo.py:141
|
||||||
msgid "original entry"
|
msgid "original entry"
|
||||||
msgstr "eredeti bejegyzés"
|
msgstr "eredeti bejegyzés"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:158
|
#: sphinx/ext/viewcode.py:162
|
||||||
msgid "[docs]"
|
msgid "[docs]"
|
||||||
msgstr "[docs]"
|
msgstr "[docs]"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:172
|
#: sphinx/ext/viewcode.py:176
|
||||||
msgid "Module code"
|
msgid "Module code"
|
||||||
msgstr "Modul forráskód"
|
msgstr "Modul forráskód"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:178
|
#: sphinx/ext/viewcode.py:182
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<h1>Source code for %s</h1>"
|
msgid "<h1>Source code for %s</h1>"
|
||||||
msgstr "<h1>%s forráskódja</h1>"
|
msgstr "<h1>%s forráskódja</h1>"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:204
|
#: sphinx/ext/viewcode.py:208
|
||||||
msgid "Overview: module code"
|
msgid "Overview: module code"
|
||||||
msgstr "Áttekintés: modul forráskód"
|
msgstr "Áttekintés: modul forráskód"
|
||||||
|
|
||||||
#: sphinx/ext/viewcode.py:205
|
#: sphinx/ext/viewcode.py:209
|
||||||
msgid "<h1>All modules for which code is available</h1>"
|
msgid "<h1>All modules for which code is available</h1>"
|
||||||
msgstr "<h1>Az összes modul, melynek forrása elérhető</h1>"
|
msgstr "<h1>Az összes modul, melynek forrása elérhető</h1>"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:157
|
#: sphinx/locale/__init__.py:159
|
||||||
msgid "Attention"
|
msgid "Attention"
|
||||||
msgstr "Figyelem"
|
msgstr "Figyelem"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:158
|
#: sphinx/locale/__init__.py:160
|
||||||
msgid "Caution"
|
msgid "Caution"
|
||||||
msgstr "Figyelem"
|
msgstr "Figyelem"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:159
|
#: sphinx/locale/__init__.py:161
|
||||||
msgid "Danger"
|
msgid "Danger"
|
||||||
msgstr "Veszély"
|
msgstr "Veszély"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:160
|
#: sphinx/locale/__init__.py:162
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Hiba"
|
msgstr "Hiba"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:161
|
#: sphinx/locale/__init__.py:163
|
||||||
msgid "Hint"
|
msgid "Hint"
|
||||||
msgstr "Tipp"
|
msgstr "Tipp"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:162
|
#: sphinx/locale/__init__.py:164
|
||||||
msgid "Important"
|
msgid "Important"
|
||||||
msgstr "Fontos"
|
msgstr "Fontos"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:163
|
#: sphinx/locale/__init__.py:165
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Megjegyzés"
|
msgstr "Megjegyzés"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:164
|
#: sphinx/locale/__init__.py:166
|
||||||
msgid "See also"
|
msgid "See also"
|
||||||
msgstr "Lásd még"
|
msgstr "Lásd még"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:165
|
#: sphinx/locale/__init__.py:167
|
||||||
msgid "Tip"
|
msgid "Tip"
|
||||||
msgstr "Javaslat"
|
msgstr "Javaslat"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:166
|
#: sphinx/locale/__init__.py:168
|
||||||
msgid "Warning"
|
msgid "Warning"
|
||||||
msgstr "Figyelem"
|
msgstr "Figyelem"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:170
|
#: sphinx/locale/__init__.py:172
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "New in version %s"
|
msgid "New in version %s"
|
||||||
msgstr "Új a(z) %s verzióban"
|
msgstr "Új a(z) %s verzióban"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:171
|
#: sphinx/locale/__init__.py:173
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Changed in version %s"
|
msgid "Changed in version %s"
|
||||||
msgstr "A %s verzióban változott"
|
msgstr "A %s verzióban változott"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:172
|
#: sphinx/locale/__init__.py:174
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Deprecated since version %s"
|
msgid "Deprecated since version %s"
|
||||||
msgstr "Elavult a(z) %s verzió óta"
|
msgstr "Elavult a(z) %s verzió óta"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:178
|
#: sphinx/locale/__init__.py:180
|
||||||
msgid "keyword"
|
msgid "keyword"
|
||||||
msgstr "kulcsszó"
|
msgstr "kulcsszó"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:179
|
#: sphinx/locale/__init__.py:181
|
||||||
msgid "operator"
|
msgid "operator"
|
||||||
msgstr "operátor"
|
msgstr "operátor"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:180
|
#: sphinx/locale/__init__.py:182
|
||||||
msgid "object"
|
msgid "object"
|
||||||
msgstr "objektum"
|
msgstr "objektum"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:182
|
#: sphinx/locale/__init__.py:184
|
||||||
msgid "statement"
|
msgid "statement"
|
||||||
msgstr "utasítás"
|
msgstr "utasítás"
|
||||||
|
|
||||||
#: sphinx/locale/__init__.py:183
|
#: sphinx/locale/__init__.py:185
|
||||||
msgid "built-in function"
|
msgid "built-in function"
|
||||||
msgstr "beépített függvény"
|
msgstr "beépített függvény"
|
||||||
|
|
||||||
@ -696,7 +703,9 @@ msgstr "Utolsó frissítés %(last_updated)s."
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s használatával készült."
|
msgstr ""
|
||||||
|
"<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s "
|
||||||
|
"használatával készült."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
@ -723,7 +732,9 @@ msgstr "következő fejezet"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Please activate JavaScript to enable the search\n"
|
"Please activate JavaScript to enable the search\n"
|
||||||
" functionality."
|
" functionality."
|
||||||
msgstr "Kérem engedélyezze a JavaScriptet a kereső funkció\n használatához."
|
msgstr ""
|
||||||
|
"Kérem engedélyezze a JavaScriptet a kereső funkció\n"
|
||||||
|
" használatához."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:32
|
#: sphinx/themes/basic/search.html:32
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -731,26 +742,30 @@ msgid ""
|
|||||||
" words into the box below and click \"search\". Note that the search\n"
|
" words into the box below and click \"search\". Note that the search\n"
|
||||||
" function will automatically search for all of the words. Pages\n"
|
" function will automatically search for all of the words. Pages\n"
|
||||||
" containing fewer words won't appear in the result list."
|
" containing fewer words won't appear in the result list."
|
||||||
msgstr "Erről az oldalról indíthatja kereséseit. Írja be a kulcsszavakat\n az alábbi szövegdobozba, majd kattintson a \"keresés\" gombra.\n Ügyeljen arra, hogy a keresés megadott kulcsszavak mindegyikét\n figyelembe veszi, így azok az oldalak, melyek nem tartalmazzák az\n összes kifejezést, nem jelennek meg a találati listában."
|
msgstr ""
|
||||||
|
"Erről az oldalról indíthatja kereséseit. Írja be a kulcsszavakat\n"
|
||||||
|
" az alábbi szövegdobozba, majd kattintson a \"keresés\" gombra.\n"
|
||||||
|
" Ügyeljen arra, hogy a keresés megadott kulcsszavak mindegyikét\n"
|
||||||
|
" figyelembe veszi, így azok az oldalak, melyek nem tartalmazzák az\n"
|
||||||
|
" összes kifejezést, nem jelennek meg a találati listában."
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:39
|
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||||
#: sphinx/themes/basic/searchresults.html:17
|
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "keresés"
|
msgstr "keresés"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:43
|
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||||
#: sphinx/themes/basic/searchresults.html:21
|
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
|
||||||
msgid "Search Results"
|
msgid "Search Results"
|
||||||
msgstr "Keresési Eredmények"
|
msgstr "Keresési Eredmények"
|
||||||
|
|
||||||
#: sphinx/themes/basic/search.html:45
|
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||||
#: sphinx/themes/basic/searchresults.html:23
|
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your search did not match any documents. Please make sure that all words are"
|
"Your search did not match any documents. Please make sure that all words "
|
||||||
" spelled correctly and that you've selected enough categories."
|
"are spelled correctly and that you've selected enough categories."
|
||||||
msgstr "A keresése nem hozott eredményt. Ellenőrizze, a megadott kulcsszavakat és azt, hogy megfelelő számú kategória van-e kiválasztva."
|
msgstr ""
|
||||||
|
"A keresése nem hozott eredményt. Ellenőrizze, a megadott kulcsszavakat és"
|
||||||
|
" azt, hogy megfelelő számú kategória van-e kiválasztva."
|
||||||
|
|
||||||
#: sphinx/themes/basic/searchbox.html:12
|
#: sphinx/themes/basic/searchbox.html:12
|
||||||
msgid "Quick search"
|
msgid "Quick search"
|
||||||
@ -788,33 +803,33 @@ msgstr "C API változások"
|
|||||||
msgid "Other changes"
|
msgid "Other changes"
|
||||||
msgstr "Egyéb változások"
|
msgstr "Egyéb változások"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||||
#: sphinx/writers/html.py:615
|
#: sphinx/writers/html.py:673
|
||||||
msgid "Permalink to this headline"
|
msgid "Permalink to this headline"
|
||||||
msgstr "Hivatkozás erre a fejezetcímre"
|
msgstr "Hivatkozás erre a fejezetcímre"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:172 sphinx/writers/html.py:107
|
#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105
|
||||||
msgid "Permalink to this definition"
|
msgid "Permalink to this definition"
|
||||||
msgstr "Hivatkozás erre a definícióra"
|
msgstr "Hivatkozás erre a definícióra"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/doctools.js:205
|
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||||
msgid "Hide Search Matches"
|
msgid "Hide Search Matches"
|
||||||
msgstr "Keresési Találatok Elrejtése"
|
msgstr "Keresési Találatok Elrejtése"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
msgstr "Keresés folyamatban"
|
msgstr "Keresés folyamatban"
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||||
msgid "Preparing search..."
|
msgid "Preparing search..."
|
||||||
msgstr "Felkészülés a keresésre..."
|
msgstr "Felkészülés a keresésre..."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Search finished, found %s page(s) matching the search query."
|
msgid "Search finished, found %s page(s) matching the search query."
|
||||||
msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek."
|
msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek."
|
||||||
|
|
||||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||||
msgid ", in "
|
msgid ", in "
|
||||||
msgstr ", "
|
msgstr ", "
|
||||||
|
|
||||||
@ -831,44 +846,56 @@ msgstr "Oldalsáv összezárása"
|
|||||||
msgid "Contents"
|
msgid "Contents"
|
||||||
msgstr "Tartalom"
|
msgstr "Tartalom"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:334
|
#: sphinx/writers/html.py:349
|
||||||
msgid "Permalink to this code"
|
msgid "Permalink to this code"
|
||||||
msgstr "Permalink erre a kódrészletre"
|
msgstr "Permalink erre a kódrészletre"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:337
|
#: sphinx/writers/html.py:353
|
||||||
msgid "Permalink to this image"
|
msgid "Permalink to this image"
|
||||||
msgstr "Permalink erre a képre"
|
msgstr "Permalink erre a képre"
|
||||||
|
|
||||||
#: sphinx/writers/html.py:339
|
#: sphinx/writers/html.py:355
|
||||||
msgid "Permalink to this toctree"
|
msgid "Permalink to this toctree"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sphinx/writers/html.py:619
|
#: sphinx/writers/html.py:677
|
||||||
msgid "Permalink to this table"
|
msgid "Permalink to this table"
|
||||||
msgstr "Permalink erre a táblázatra"
|
msgstr "Permalink erre a táblázatra"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:199
|
#: sphinx/writers/latex.py:344
|
||||||
msgid "Release"
|
msgid "Release"
|
||||||
msgstr "Kiadás"
|
msgstr "Kiadás"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
#: sphinx/writers/latex.py:408
|
||||||
#: sphinx/writers/texinfo.py:616
|
#, fuzzy
|
||||||
|
msgid "page"
|
||||||
|
msgstr "Veszély"
|
||||||
|
|
||||||
|
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||||
|
#: sphinx/writers/texinfo.py:620
|
||||||
msgid "Footnotes"
|
msgid "Footnotes"
|
||||||
msgstr "Lábjegyzetek"
|
msgstr "Lábjegyzetek"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:785
|
#: sphinx/writers/latex.py:1010
|
||||||
msgid "continued from previous page"
|
msgid "continued from previous page"
|
||||||
msgstr "folytatás az előző oldalról"
|
msgstr "folytatás az előző oldalról"
|
||||||
|
|
||||||
#: sphinx/writers/latex.py:791
|
#: sphinx/writers/latex.py:1016
|
||||||
msgid "Continued on next page"
|
msgid "Continued on next page"
|
||||||
msgstr "A következő oldalon folytatódik"
|
msgstr "A következő oldalon folytatódik"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "[image: %s]"
|
msgid "[image: %s]"
|
||||||
msgstr "[image: %s]"
|
msgstr "[image: %s]"
|
||||||
|
|
||||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||||
msgid "[image]"
|
msgid "[image]"
|
||||||
msgstr "[image]"
|
msgstr "[image]"
|
||||||
|
|
||||||
|
#~ msgid "%B %d, %Y"
|
||||||
|
#~ msgstr "%Y. %m. %d."
|
||||||
|
|
||||||
|
#~ msgid "%b %d, %Y"
|
||||||
|
#~ msgstr "%b %d, %Y"
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Documentation.addTranslations({"locale": "id", "plural_expr": "0", "messages": {"Next topic": "Topik berikutnya", "Index": "Indeks", "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "Welcome! This is": "Selamat Datang! Ini adalah", "Copyright": "Copyright", "C API changes": "Perubahan API C", "quick access to all modules": "akses cepat semua modul", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "Global Module Index": "Index Modul Global", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori.", "Index – %(key)s": "Index – %(key)s", "General Index": "Indeks Umum", "next chapter": "bab berikutnya", "Search finished, found %s page(s) matching the search query.": "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian.", "previous chapter": "bab sebelum", "Permalink to this headline": "Link permanen untuk headline ini", "About these documents": "Tentang dokumen ini", "Preparing search...": "Penyiapkan pencarian...", ", in ": ", di", "Navigation": "Navigasi", "Expand sidebar": "Buka sidebar", "the documentation for": "dokumentasi untuk", "Complete Table of Contents": "Daftar Isi Lengkap", "Contents": "Konten", "can be huge": "dapat menjadi besar", "Changes in Version %(version)s — %(docstitle)s": "Perubahan pada Versi %(version)s — %(docstitle)s", "Other changes": "Perubahan lain", "Hide Search Matches": "Sembunyikan Hasil Pencarian", "Quick search": "Pencarian cepat", "Show Source": "Lihat Sumber", "Search": "Pencarian", "This Page": "Halaman Ini", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil.", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Dibuat menggunakan <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "last updated": "terakhir diperbarui", "Collapse sidebar": "Tutup sidebar", "Go": "Go", "Table Of Contents": "Daftar Isi", "Search within %(docstitle)s": "Pencarian dalam %(docstitle)s", "all functions, classes, terms": "semua fungsi, class, term", "Please activate JavaScript to enable the search\n functionality.": "Tolong aktifkan JavaScript untuk melakukan pencarian.\n ", "Indices and tables:": "Index dan tabel:", "lists all sections and subsections": "daftar semua seksi dan subseksi", "Index pages by letter": "Index halaman berdasarkan huruf", "search": "pencarian", "Permalink to this definition": "Link permanen untuk definisi ini", "Previous topic": "Topik sebelum", "Overview": "Tinjauan", "Last updated on %(last_updated)s.": "Terakhir diperbarui pada %(last_updated)s.", "Searching": "Pencarian", "search this documentation": "pencarian pada dokumentasi ini", "Automatically generated list of changes in version %(version)s": "Daftar perubahan dibuat otomatis untuk versi %(version)s", "Full index on one page": "Index penuh dalam satu halaman", "Enter search terms or a module, class or function name.": "Masukkan term pencarian atau nama modul, class atau fungsi.", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "Library changes": "Perubahan library", "Search Page": "Pencarian Halaman", "Search Results": "Hasil Pencarian"}});
|
Documentation.addTranslations({"locale": "id", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", di", "About these documents": "Tentang dokumen ini", "Automatically generated list of changes in version %(version)s": "Daftar perubahan dibuat otomatis untuk versi %(version)s", "C API changes": "Perubahan API C", "Changes in Version %(version)s — %(docstitle)s": "Perubahan pada Versi %(version)s — %(docstitle)s", "Collapse sidebar": "Tutup sidebar", "Complete Table of Contents": "Daftar Isi Lengkap", "Contents": "Konten", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Dibuat menggunakan <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Masukkan term pencarian atau nama modul, class atau fungsi.", "Expand sidebar": "Buka sidebar", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil.", "Full index on one page": "Index penuh dalam satu halaman", "General Index": "Indeks Umum", "Global Module Index": "Index Modul Global", "Go": "Go", "Hide Search Matches": "Sembunyikan Hasil Pencarian", "Index": "Indeks", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index halaman berdasarkan huruf", "Indices and tables:": "Index dan tabel:", "Last updated on %(last_updated)s.": "Terakhir diperbarui pada %(last_updated)s.", "Library changes": "Perubahan library", "Navigation": "Navigasi", "Next topic": "Topik berikutnya", "Other changes": "Perubahan lain", "Overview": "Tinjauan", "Permalink to this definition": "Link permanen untuk definisi ini", "Permalink to this headline": "Link permanen untuk headline ini", "Please activate JavaScript to enable the search\n functionality.": "Tolong aktifkan JavaScript untuk melakukan pencarian.\n ", "Preparing search...": "Penyiapkan pencarian...", "Previous topic": "Topik sebelum", "Quick search": "Pencarian cepat", "Search": "Pencarian", "Search Page": "Pencarian Halaman", "Search Results": "Hasil Pencarian", "Search finished, found %s page(s) matching the search query.": "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian.", "Search within %(docstitle)s": "Pencarian dalam %(docstitle)s", "Searching": "Pencarian", "Show Source": "Lihat Sumber", "Table Of Contents": "Daftar Isi", "This Page": "Halaman Ini", "Welcome! This is": "Selamat Datang! Ini adalah", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori.", "all functions, classes, terms": "semua fungsi, class, term", "can be huge": "dapat menjadi besar", "last updated": "terakhir diperbarui", "lists all sections and subsections": "daftar semua seksi dan subseksi", "next chapter": "bab berikutnya", "previous chapter": "bab sebelum", "quick access to all modules": "akses cepat semua modul", "search": "pencarian", "search this documentation": "pencarian pada dokumentasi ini", "the documentation for": "dokumentasi untuk"}, "plural_expr": "0"});
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user