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
|
||||
sudo: false
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.cache/pip
|
||||
python:
|
||||
- "2.6"
|
||||
- "2.7"
|
||||
@ -11,6 +14,7 @@ env:
|
||||
- DOCUTILS=0.11
|
||||
- DOCUTILS=0.12
|
||||
install:
|
||||
- pip install -U pip
|
||||
- pip install docutils==$DOCUTILS
|
||||
- pip install -r test-reqs.txt
|
||||
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
|
||||
--------------------
|
||||
@ -19,6 +53,22 @@ Incompatible changes
|
||||
of ``sphinx.addnodes.literal_emphasis`` node.
|
||||
* #2022: :confval:`html_extra_path` also copies dotfiles in the extra directory, and
|
||||
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
|
||||
--------------
|
||||
@ -52,7 +102,19 @@ Features added
|
||||
* #2282: Add "language" attribute to html tag in the "basic" theme
|
||||
* #1779: Add EPUB 3 builder
|
||||
* #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
|
||||
----------
|
||||
@ -73,6 +135,12 @@ Bugs fixed
|
||||
* #2165, #2218: Remove faulty and non-need conditional from sphinx.sty.
|
||||
* Fix broken LaTeX code is generated if unknown language is given
|
||||
* #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
|
||||
-------------
|
||||
@ -80,13 +148,39 @@ Documentation
|
||||
* #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
|
||||
----------
|
||||
|
||||
|
||||
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)
|
||||
=====================================
|
||||
|
||||
@ -101,7 +195,8 @@ Bugs fixed
|
||||
* #2243: Ignore strange docstring types for classes, do not crash
|
||||
* #2247: Fix #2205 breaks make html for definition list with classifiers
|
||||
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
|
||||
* #2253: ``:pyobject:`` option of ``literalinclude`` directive can't detect indented
|
||||
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
|
||||
* The ``gettext_enables`` config value has been renamed to
|
||||
`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.
|
||||
|
||||
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
|
||||
are experimenting with using it for their documentation. If you like to
|
||||
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
|
||||
interesting examples.
|
||||
@ -15,11 +15,11 @@ Documentation using the default theme
|
||||
* APSW: http://apidoc.apsw.googlecode.com/hg/index.html
|
||||
* ASE: https://wiki.fysik.dtu.dk/ase/
|
||||
* Calibre: http://manual.calibre-ebook.com/
|
||||
* CodePy: http://documen.tician.de/codepy/
|
||||
* CodePy: https://documen.tician.de/codepy/
|
||||
* Cython: http://docs.cython.org/
|
||||
* Cormoran: http://cormoran.nhopkg.org/docs/
|
||||
* Director: http://pythonhosted.org/director/
|
||||
* Dirigible: http://www.projectdirigible.com/documentation/
|
||||
* Dirigible: http://www.projectdirigible.com/
|
||||
* F2py: http://f2py.sourceforge.net/docs/
|
||||
* GeoDjango: https://docs.djangoproject.com/en/dev/ref/contrib/gis/
|
||||
* Genomedata:
|
||||
@ -31,10 +31,10 @@ Documentation using the default theme
|
||||
* Heapkeeper: http://heapkeeper.org/
|
||||
* Hands-on Python Tutorial:
|
||||
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/
|
||||
* Lino: http://lino.saffre-rumma.net/
|
||||
* MeshPy: http://documen.tician.de/meshpy/
|
||||
* Lino: http://www.lino-framework.org/
|
||||
* MeshPy: https://documen.tician.de/meshpy/
|
||||
* mpmath: http://mpmath.googlecode.com/svn/trunk/doc/build/index.html
|
||||
* OpenEXR: http://excamera.com/articles/26/doc/index.html
|
||||
* OpenGDA: http://www.opengda.org/gdadoc/html/
|
||||
@ -42,17 +42,17 @@ Documentation using the default theme
|
||||
* Paste: http://pythonpaste.org/script/
|
||||
* Paver: http://paver.github.io/paver/
|
||||
* 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/
|
||||
* PyCuda: http://documen.tician.de/pycuda/
|
||||
* PyCuda: https://documen.tician.de/pycuda/
|
||||
* Pyevolve: http://pyevolve.sourceforge.net/
|
||||
* Pylo: http://documen.tician.de/pylo/
|
||||
* Pylo: https://documen.tician.de/pylo/
|
||||
* PyMQI: http://pythonhosted.org/pymqi/
|
||||
* PyPubSub: http://pubsub.sourceforge.net/
|
||||
* 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/
|
||||
* PyUblas: http://documen.tician.de/pyublas/
|
||||
* PyUblas: https://documen.tician.de/pyublas/
|
||||
* Quex: http://quex.sourceforge.net/doc/html/main.html
|
||||
* Scapy: http://www.secdev.org/projects/scapy/doc/
|
||||
* 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
|
||||
* GPAW: https://wiki.fysik.dtu.dk/gpaw/
|
||||
* Grok: http://grok.zope.org/doc/current/
|
||||
* IFM: http://fluffybunny.memebot.com/ifm-docs/index.html
|
||||
* Kaa: http://api.freevo.org/kaa-base/
|
||||
* LEPL: http://www.acooke.org/lepl/
|
||||
* 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/
|
||||
* OpenCV: http://docs.opencv.org/
|
||||
* 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/
|
||||
* simuPOP: http://simupop.sourceforge.net/manual_release/build/userGuide.html
|
||||
* 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/
|
||||
* Zentyal: http://doc.zentyal.org/
|
||||
* 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/
|
||||
* Reteisi: http://www.reteisi.org/contents.html
|
||||
* Sqlkit: http://sqlkit.argolinux.org/
|
||||
* Tau: http://www.tango-controls.org/static/tau/latest/doc/html/index.html
|
||||
* Turbulenz: http://docs.turbulenz.com/
|
||||
* WebFaction: http://docs.webfaction.com/
|
||||
* WebFaction: https://docs.webfaction.com/
|
||||
|
||||
|
||||
Documentation using another builtin theme
|
||||
@ -145,12 +143,12 @@ Documentation using another builtin theme
|
||||
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/
|
||||
* Ceph: http://ceph.com/docs/master/
|
||||
* Ceph: http://docs.ceph.com/docs/master/
|
||||
* Classy: http://www.pocoo.org/projects/classy/
|
||||
* 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
|
||||
* Enterprise Toolkit for Acrobat products:
|
||||
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/
|
||||
* GeoServer: http://docs.geoserver.org/
|
||||
* Glashammer: http://glashammer.org/
|
||||
* Istihza (Turkish Python documentation project):
|
||||
http://www.istihza.com/py2/icindekiler_python.html
|
||||
* Istihza (Turkish Python documentation project): http://belgeler.istihza.com/py2/
|
||||
* Lasso: http://lassoguide.com/
|
||||
* Manage documentation such as source code (fr): http://redaction-technique.org/
|
||||
* MathJax: http://docs.mathjax.org/en/latest/
|
||||
* MirrorBrain: http://mirrorbrain.org/docs/
|
||||
* MyHDL: http://docs.myhdl.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/
|
||||
* Open ERP: http://doc.openerp.com/
|
||||
* Open ERP: https://doc.odoo.com/
|
||||
* OpenCV: http://docs.opencv.org/
|
||||
* Open Dylan: http://opendylan.org/documentation/ and also provides a
|
||||
`dylan domain <https://github.com/dylan-lang/sphinx-extensions/blob/master/dylandomain/reference.rst>`__
|
||||
* Open Dylan: http://opendylan.org/documentation/
|
||||
* OpenLayers: http://docs.openlayers.org/
|
||||
* PyEphem: http://rhodesmill.org/pyephem/
|
||||
* 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/
|
||||
* PyMOTW: http://pymotw.com/2/
|
||||
* PyMOTW: https://pymotw.com/2/
|
||||
* python-aspectlib: http://python-aspectlib.readthedocs.org/en/latest/
|
||||
(`sphinx-py3doc-enhanced-theme`_)
|
||||
* QGIS: http://qgis.org/en/docs/index.html
|
||||
* qooxdoo: http://manual.qooxdoo.org/current/
|
||||
* Roundup: http://www.roundup-tracker.org/
|
||||
* 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/
|
||||
* Tablib: http://tablib.org/
|
||||
* 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
|
||||
-------------------------------------------
|
||||
|
||||
* Applied Mathematics at the Stellenbosch University: http://dip.sun.ac.za/
|
||||
* A personal page: http://www.dehlia.in/
|
||||
* Benoit Boissinot: http://bboissin.appspot.com/
|
||||
* lunarsite: http://lunaryorn.de/
|
||||
* Red Hot Chili Python: http://redhotchilipython.com/
|
||||
* The Wine Cellar Book: http://www.thewinecellarbook.com/doc/en/
|
||||
* 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/
|
||||
|
||||
|
||||
@ -217,11 +211,11 @@ Books produced using Sphinx
|
||||
|
||||
* "The ``repoze.bfg`` Web Application Framework":
|
||||
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):
|
||||
http://www.amazon.co.jp/dp/477414259X/
|
||||
* "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):
|
||||
http://www.amazon.co.jp/dp/4048686291/
|
||||
* "Pomodoro Technique Illustrated" (Japanese translation):
|
||||
@ -231,7 +225,7 @@ Books produced using Sphinx
|
||||
* "Die Wahrheit des Sehens. Der DEKALOG von Krzysztof Kieślowski":
|
||||
http://www.hasecke.eu/Dekalog/
|
||||
* The "Varnish Book":
|
||||
https://www.varnish-software.com/static/book/
|
||||
http://book.varnish-software.com/4.0/
|
||||
* "Learning Sphinx" (in Japanese):
|
||||
http://www.oreilly.co.jp/books/9784873116488/
|
||||
* "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>
|
||||
</ul>
|
||||
<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
|
||||
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>
|
||||
|
||||
<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
|
||||
|
||||
.. _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
|
||||
.. 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
|
||||
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
|
||||
`<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.
|
||||
|
||||
.. 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
|
||||
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
|
||||
`<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.
|
||||
|
||||
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
|
||||
|
||||
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
|
||||
``pdf``. Refer to the `rst2pdf manual <http://ralsina.me/static/manual.pdf>`_
|
||||
for details.
|
||||
|
133
doc/config.rst
133
doc/config.rst
@ -310,21 +310,35 @@ Project information
|
||||
replacement for ``|today|``.
|
||||
|
||||
* If you set :confval:`today` to a non-empty value, it is used.
|
||||
* Otherwise, the current time is formatted using :func:`time.strftime` and
|
||||
the format given in :confval:`today_fmt`.
|
||||
* Otherwise, the current time is formatted using `Locale Data Markup Language
|
||||
<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,
|
||||
%Y'`` (or, if translation is enabled with :confval:`language`, an equivalent
|
||||
%format for the selected locale).
|
||||
The default is no :confval:`today` and a :confval:`today_fmt` of ``'MMMM dd,
|
||||
YYYY'`` (or, if translation is enabled with :confval:`language`, an
|
||||
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
|
||||
|
||||
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.
|
||||
|
||||
.. 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
|
||||
|
||||
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
|
||||
generated by Sphinx will be in that language. Also, Sphinx will try to
|
||||
substitute individual paragraphs from your documents with the translation
|
||||
sets obtained from :confval:`locale_dirs`. 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.
|
||||
sets obtained from :confval:`locale_dirs`. Sphinx will search
|
||||
language-specific figures named by `figure_language_filename` and substitute
|
||||
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
|
||||
|
||||
.. versionchanged:: 1.4
|
||||
|
||||
Support figure substitution
|
||||
|
||||
Currently supported languages by Sphinx are:
|
||||
|
||||
* ``bn`` -- Bengali
|
||||
@ -527,6 +547,14 @@ documentation on :ref:`intl` for details.
|
||||
|
||||
.. 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:
|
||||
|
||||
Options for HTML output
|
||||
@ -648,10 +676,17 @@ that use Sphinx's HTMLWriter class.
|
||||
.. confval:: html_last_updated_fmt
|
||||
|
||||
If this is not None, a 'Last updated on:' timestamp is inserted
|
||||
at every page bottom, using the given :func:`strftime` format.
|
||||
The empty string is equivalent to ``'%b %d, %Y'`` (or a
|
||||
at every page bottom, using the given `Locale Data Markup Language
|
||||
<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).
|
||||
|
||||
.. 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
|
||||
|
||||
If true, `SmartyPants <http://daringfireball.net/projects/smartypants/>`_
|
||||
@ -791,7 +826,7 @@ that use Sphinx's HTMLWriter class.
|
||||
|
||||
.. 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
|
||||
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
|
||||
@ -910,15 +945,59 @@ that use Sphinx's HTMLWriter class.
|
||||
|
||||
The Japanese support has these options:
|
||||
|
||||
* ``type`` -- ``'mecab'`` or ``'default'`` (selects either MeCab or
|
||||
TinySegmenter word splitter algorithm)
|
||||
* ``dic_enc`` -- the encoding for the MeCab algorithm
|
||||
* ``dict`` -- the dictionary to use for the MeCab algorithm
|
||||
* ``lib`` -- the library name for finding the MeCab library via ctypes if the
|
||||
Python binding is not installed
|
||||
:type:
|
||||
_`type` is dotted module path string to specify Splitter implementation which
|
||||
should be derived from :class:`sphinx.search.ja.BaseSplitter`.
|
||||
If not specified or None is specified, ``'sphinx.search.ja.DefaultSplitter'`` will
|
||||
be used.
|
||||
|
||||
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
|
||||
|
||||
.. 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:
|
||||
|
||||
@ -1322,8 +1401,11 @@ the `Dublin Core metadata <http://dublincore.org/>`_.
|
||||
.. confval:: epub3_page_progression_direction
|
||||
|
||||
The global direction in which the content flows.
|
||||
Allowed values are ltr (left-to-right), rtl (right-to-left) and default.
|
||||
The default value is ``'ltr'``.
|
||||
Allowed values are ``'ltr'`` (left-to-right), ``'rtl'`` (right-to-left) and
|
||||
``'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
|
||||
|
||||
@ -1463,6 +1545,10 @@ These options influence LaTeX output.
|
||||
the "Bjarne" style uses numbers spelled out in English). Other
|
||||
"fncychap" styles you can try include "Lenny", "Glenn", "Conny" and
|
||||
"Rejne". You can also set this to ``''`` to disable fncychap.
|
||||
``'passoptionstopackages'``
|
||||
"PassOptionsToPackage" call, default empty.
|
||||
|
||||
.. versionadded:: 1.4
|
||||
``'preamble'``
|
||||
Additional preamble content, default empty.
|
||||
``'figure_align'``
|
||||
@ -1757,6 +1843,13 @@ Options for the linkcheck builder
|
||||
|
||||
.. 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
|
||||
|
||||
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
|
||||
<https://github.com/sphinx-doc/sphinx/issues>`_.
|
||||
* 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
|
||||
<http://freenode.net/>`_.
|
||||
|
||||
@ -21,7 +21,7 @@ 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
|
||||
releases on PyPI, others you can install from a checkout.
|
||||
|
||||
@ -96,14 +96,14 @@ own extensions.
|
||||
|
||||
.. _aafigure: https://launchpad.net/aafigure
|
||||
.. _gnuplot: http://www.gnuplot.info/
|
||||
.. _paver: http://www.blueskyonmars.com/projects/paver/
|
||||
.. _paver: http://paver.github.io/paver/
|
||||
.. _Sword: http://www.crosswire.org/sword/
|
||||
.. _Lilypond: http://lilypond.org/
|
||||
.. _sdedit: http://sdedit.sourceforge.net/
|
||||
.. _Trac: http://trac.edgewall.org
|
||||
.. _TracLinks: http://trac.edgewall.org/wiki/TracLinks
|
||||
.. _OmegaT: http://www.omegat.org/
|
||||
.. _PlantUML: http://plantuml.sourceforge.net/
|
||||
.. _PlantUML: http://plantuml.com/
|
||||
.. _PyEnchant: http://www.rfk.id.au/software/pyenchant/
|
||||
.. _sadisplay: https://bitbucket.org/estin/sadisplay/wiki/Home
|
||||
.. _blockdiag: http://blockdiag.com/en/
|
||||
@ -112,24 +112,24 @@ own extensions.
|
||||
.. _nwdiag: http://blockdiag.com/en/
|
||||
.. _Google Analytics: http://www.google.com/analytics/
|
||||
.. _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
|
||||
.. _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/
|
||||
.. _YouTube: http://www.youtube.com/
|
||||
.. _ClearQuest: http://www-03.ibm.com/software/products/en/clearquest
|
||||
.. _Zope interfaces: http://docs.zope.org/zope.interface/README.html
|
||||
.. _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/
|
||||
.. _swf: http://bitbucket.org/klorenz/sphinxcontrib-swf
|
||||
.. _findanything: http://bitbucket.org/klorenz/sphinxcontrib-findanything
|
||||
.. _cmakedomain: http://bitbucket.org/klorenz/sphinxcontrib-cmakedomain
|
||||
.. _swf: https://bitbucket.org/klorenz/sphinxcontrib-swf
|
||||
.. _findanything: https://bitbucket.org/klorenz/sphinxcontrib-findanything
|
||||
.. _cmakedomain: https://bitbucket.org/klorenz/sphinxcontrib-cmakedomain
|
||||
.. _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
|
||||
.. _CMake: http://cmake.org
|
||||
.. _domaintools: http://bitbucket.org/klorenz/sphinxcontrib-domaintools
|
||||
.. _CMake: https://cmake.org
|
||||
.. _domaintools: https://bitbucket.org/klorenz/sphinxcontrib-domaintools
|
||||
.. _restbuilder: https://pypi.python.org/pypi/sphinxcontrib-restbuilder
|
||||
.. _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.
|
||||
|
||||
.. _Google:
|
||||
http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Comments
|
||||
https://google.github.io/styleguide/pyguide.html#Comments
|
||||
.. _NumPy:
|
||||
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
|
||||
|
||||
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
|
||||
|
||||
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/
|
||||
.. _dvisvgm: http://dvisvgm.bplaced.net/
|
||||
.. _MathJax: http://www.mathjax.org/
|
||||
.. _MathJax: https://www.mathjax.org/
|
||||
.. _jsMath: http://www.math.union.edu/~dpvc/jsmath/
|
||||
.. _preview-latex package: http://www.gnu.org/software/auctex/preview-latex.html
|
||||
.. _AmSMath LaTeX package: http://www.ams.org/publications/authors/tex/amslatex
|
||||
|
@ -11,6 +11,8 @@
|
||||
Napoleon - *Marching toward legible docstrings*
|
||||
===============================================
|
||||
|
||||
.. highlight:: text
|
||||
|
||||
Are you tired of writing docstrings that look like this::
|
||||
|
||||
: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.
|
||||
|
||||
.. _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:
|
||||
http://google.github.io/styleguide/pyguide.html
|
||||
.. _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
|
||||
separate sections, whereas NumPy uses underlines.
|
||||
|
||||
Google style::
|
||||
Google style:
|
||||
|
||||
.. code-block:: python3
|
||||
|
||||
def func(arg1, arg2):
|
||||
"""Summary line.
|
||||
@ -141,7 +145,9 @@ Google style::
|
||||
"""
|
||||
return True
|
||||
|
||||
NumPy style::
|
||||
NumPy style:
|
||||
|
||||
.. code-block:: python3
|
||||
|
||||
def func(arg1, arg2):
|
||||
"""Summary line.
|
||||
|
@ -125,6 +125,28 @@ package.
|
||||
.. versionchanged:: 0.5
|
||||
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)
|
||||
Sphinx.add_directive(name, directiveclass)
|
||||
|
||||
|
@ -135,5 +135,5 @@ return ``node.children`` from the Directive.
|
||||
|
||||
.. 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
|
||||
|
@ -19,20 +19,21 @@ These extensions are built in and can be activated by respective entries in the
|
||||
.. toctree::
|
||||
|
||||
ext/autodoc
|
||||
ext/autosectionlabel
|
||||
ext/autosummary
|
||||
ext/doctest
|
||||
ext/intersphinx
|
||||
ext/math
|
||||
ext/graphviz
|
||||
ext/inheritance
|
||||
ext/ifconfig
|
||||
ext/coverage
|
||||
ext/todo
|
||||
ext/doctest
|
||||
ext/extlinks
|
||||
ext/viewcode
|
||||
ext/linkcode
|
||||
ext/napoleon
|
||||
ext/githubpages
|
||||
ext/graphviz
|
||||
ext/ifconfig
|
||||
ext/inheritance
|
||||
ext/intersphinx
|
||||
ext/linkcode
|
||||
ext/math
|
||||
ext/napoleon
|
||||
ext/todo
|
||||
ext/viewcode
|
||||
|
||||
|
||||
Third-party extensions
|
||||
@ -48,7 +49,7 @@ comprehensive list.
|
||||
|
||||
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
|
||||
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
|
||||
|
||||
|
16
doc/faq.rst
16
doc/faq.rst
@ -10,7 +10,7 @@ How do I...
|
||||
-----------
|
||||
|
||||
... 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
|
||||
:ref:`builders` section for details.
|
||||
|
||||
@ -82,7 +82,7 @@ GitHub Pages
|
||||
Sphinx HTML output properly.
|
||||
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
of are Epubcheck_, Calibre_, FBreader_ (although it does not render the CSS),
|
||||
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.
|
||||
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
|
||||
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/
|
||||
.. _FBreader: http://fbreader.org/
|
||||
.. _Bookworm: http://oreilly.com/bookworm/index.html
|
||||
.. _FBreader: https://fbreader.org/
|
||||
.. _Bookworm: http://www.oreilly.com/bookworm/index.html
|
||||
|
||||
|
||||
.. _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,
|
||||
``~/.emacs.d/init.el``.
|
||||
|
||||
::
|
||||
.. code-block:: elisp
|
||||
|
||||
(defadvice info-insert-file-contents (after
|
||||
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
|
||||
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.
|
||||
|
||||
.. 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
|
||||
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
|
||||
|
||||
As a result, many pot files are generated under ``_build/locale``
|
||||
directory.
|
||||
|
||||
#. Setup/Update your `locale_dir`::
|
||||
#. Setup/Update your `locale_dir`:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ 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/`.
|
||||
|
||||
#. Build mo files and make translated document.
|
||||
#. make translated document.
|
||||
|
||||
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
|
||||
|
||||
Congratulations! You got the translated documentation in the ``_build/html``
|
||||
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
|
||||
^^^^^^^^^^^
|
||||
@ -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,
|
||||
use the :command:`sphinx-intl update` command.
|
||||
|
||||
.. code-block:: bash
|
||||
.. code-block:: console
|
||||
|
||||
$ 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).
|
||||
|
||||
.. code-block:: bash
|
||||
.. code-block:: console
|
||||
|
||||
$ 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
|
||||
a ``~/.transifexrc`` file that includes auth information.
|
||||
|
||||
.. code-block:: bash
|
||||
.. code-block:: console
|
||||
|
||||
$ tx init
|
||||
Creating .tx folder...
|
||||
@ -215,7 +227,7 @@ easy to fetch and push translations.
|
||||
|
||||
Register pot files to ``.tx/config`` file:
|
||||
|
||||
.. code-block:: bash
|
||||
.. code-block:: console
|
||||
|
||||
$ cd /your/document/root
|
||||
$ sphinx-intl update-txconfig-resources --pot-dir _build/locale \
|
||||
@ -223,7 +235,7 @@ easy to fetch and push translations.
|
||||
|
||||
and upload pot files:
|
||||
|
||||
.. code-block:: bash
|
||||
.. code-block:: console
|
||||
|
||||
$ tx push -s
|
||||
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'):
|
||||
|
||||
.. code-block:: bash
|
||||
.. code-block:: console
|
||||
|
||||
$ cd /your/document/root
|
||||
$ tx pull -l de
|
||||
@ -251,9 +263,10 @@ easy to fetch and push translations.
|
||||
...
|
||||
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
|
||||
|
||||
|
||||
@ -297,5 +310,5 @@ There is `sphinx translation page`_ for Sphinx-1.3 documentation.
|
||||
.. _`transifex-client`: https://pypi.python.org/pypi/transifex-client
|
||||
.. _`sphinx-intl`: https://pypi.python.org/pypi/sphinx-intl
|
||||
.. _Transifex: https://www.transifex.com/
|
||||
.. _`sphinx translation page`: https://www.transifex.com/projects/p/sphinx-doc-1_3/
|
||||
.. _`Transifex Client v0.8 — Transifex documentation`: http://help.transifex.com/features/client/index.html
|
||||
.. _`sphinx translation page`: https://www.transifex.com/sphinx-doc/sphinx-doc-1_3/
|
||||
.. _`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
|
||||
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
|
||||
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.
|
||||
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
|
||||
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
|
||||
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.
|
||||
|
||||
* 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
|
||||
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.
|
||||
|
||||
|
||||
@ -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
|
||||
highlighting support, you must also install the Pygments_ library.
|
||||
|
||||
.. _reStructuredText: http://docutils.sf.net/rst.html
|
||||
.. _docutils: http://docutils.sf.net/
|
||||
.. _reStructuredText: http://docutils.sourceforge.net/rst.html
|
||||
.. _docutils: http://docutils.sourceforge.net/
|
||||
.. _Jinja2: http://jinja.pocoo.org/
|
||||
.. _Pygments: http://pygments.org/
|
||||
|
||||
|
@ -6,7 +6,9 @@ Invocation of sphinx-quickstart
|
||||
===============================
|
||||
|
||||
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]
|
||||
|
||||
@ -141,7 +143,9 @@ Invocation of sphinx-build
|
||||
==========================
|
||||
|
||||
The :program:`sphinx-build` script builds a Sphinx documentation set. It is
|
||||
called like this::
|
||||
called like this:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ sphinx-build [options] sourcedir builddir [filenames]
|
||||
|
||||
@ -380,7 +384,9 @@ Invocation of sphinx-apidoc
|
||||
===========================
|
||||
|
||||
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:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ sphinx-apidoc [options] -o outputdir packagedir [pathnames]
|
||||
|
||||
|
@ -191,7 +191,7 @@ Including content based on tags
|
||||
|
||||
All tags must follow the standard Python identifier syntax as set out in
|
||||
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
|
||||
conform to the syntax of Python variables. In ASCII, this consists of the
|
||||
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.)
|
||||
|
||||
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
|
||||
You can now give the glossary directive a ``:sorted:`` flag that will
|
||||
automatically sort the entries alphabetically.
|
||||
@ -190,6 +208,8 @@ Glossary
|
||||
.. versionchanged:: 1.1
|
||||
Now supports multiple terms and inline markup in terms.
|
||||
|
||||
.. versionchanged:: 1.4
|
||||
Index key for glossary term should be considered *experimental*.
|
||||
|
||||
Grammar production displays
|
||||
---------------------------
|
||||
|
@ -152,9 +152,9 @@ These themes are:
|
||||
|
||||
.. _Read the Docs Sphinx Theme: https://pypi.python.org/pypi/sphinx_rtd_theme
|
||||
|
||||
* **classic** -- This is the classic theme, which looks like `the Python
|
||||
documentation <https://docs.python.org/>`_. It can be customized via these
|
||||
options:
|
||||
* **classic** -- This is the classic theme, which looks like `the Python 2
|
||||
documentation <https://docs.python.org/2/>`_. It can be customized via
|
||||
these options:
|
||||
|
||||
- **rightsidebar** (true or false): Put the sidebar on the right side.
|
||||
Defaults to ``False``.
|
||||
@ -240,7 +240,7 @@ These themes are:
|
||||
*sidebarwidth*.
|
||||
|
||||
* **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:
|
||||
|
||||
- **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 -*-
|
||||
try:
|
||||
from setuptools import setup, find_packages
|
||||
except ImportError:
|
||||
import ez_setup
|
||||
ez_setup.use_setuptools()
|
||||
from setuptools import setup, find_packages
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
import os
|
||||
import sys
|
||||
@ -53,6 +48,7 @@ requires = [
|
||||
'snowballstemmer>=1.1',
|
||||
'babel>=1.3,!=2.0',
|
||||
'alabaster>=0.7,<0.8',
|
||||
'imagesize',
|
||||
]
|
||||
extras_require = {
|
||||
# Environment Marker works for wheel 0.24 or later
|
||||
|
@ -15,13 +15,13 @@
|
||||
import sys
|
||||
from os import path
|
||||
|
||||
__version__ = '1.4a0+'
|
||||
__released__ = '1.4a0' # used when Sphinx builds its own docs
|
||||
__version__ = '1.4a1+'
|
||||
__released__ = '1.4a1' # used when Sphinx builds its own docs
|
||||
|
||||
# version info for better programmatic use
|
||||
# possible values for 3rd element: 'alpha', 'beta', 'rc', 'final'
|
||||
# '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__))
|
||||
|
||||
|
@ -9,6 +9,8 @@
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import warnings
|
||||
|
||||
from docutils import nodes
|
||||
|
||||
|
||||
@ -209,7 +211,16 @@ class abbreviation(nodes.Inline, nodes.TextElement):
|
||||
|
||||
|
||||
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):
|
||||
|
@ -35,7 +35,8 @@ from sphinx.errors import SphinxError, SphinxWarning, ExtensionError, \
|
||||
from sphinx.domains import ObjType, BUILTIN_DOMAINS
|
||||
from sphinx.domains.std import GenericObject, Target, StandardDomain
|
||||
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 import_object
|
||||
from sphinx.util.tags import Tags
|
||||
@ -85,6 +86,7 @@ class Sphinx(object):
|
||||
self.builderclasses = BUILTIN_BUILDERS.copy()
|
||||
self.builder = None
|
||||
self.env = None
|
||||
self.enumerable_nodes = {}
|
||||
|
||||
self.srcdir = srcdir
|
||||
self.confdir = confdir
|
||||
@ -192,6 +194,8 @@ class Sphinx(object):
|
||||
self._init_env(freshenv)
|
||||
# set up the builder
|
||||
self._init_builder(self.buildername)
|
||||
# set up the enumerable nodes
|
||||
self._init_enumerable_nodes()
|
||||
|
||||
def _init_i18n(self):
|
||||
"""Load translated strings from the configured localedirs if enabled in
|
||||
@ -232,7 +236,7 @@ class Sphinx(object):
|
||||
try:
|
||||
self.info(bold('loading pickled environment... '), nonl=True)
|
||||
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 = {}
|
||||
for domain in self.domains.keys():
|
||||
# this can raise if the data version doesn't fit
|
||||
@ -263,6 +267,10 @@ class Sphinx(object):
|
||||
self.builder = builderclass(self)
|
||||
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 -------------------------------------------------
|
||||
|
||||
def build(self, force_all=False, filenames=None):
|
||||
@ -600,6 +608,10 @@ class Sphinx(object):
|
||||
if 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):
|
||||
if isinstance(obj, (types.FunctionType, types.MethodType)):
|
||||
obj.content = content
|
||||
|
@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
sphinx.builders.dummy
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Do syntax checks, but no writing.
|
||||
|
||||
|
@ -28,7 +28,8 @@ from docutils import nodes
|
||||
|
||||
from sphinx import addnodes
|
||||
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.console import brown
|
||||
|
||||
@ -400,7 +401,7 @@ class EpubBuilder(StandaloneHTMLBuilder):
|
||||
# XXX: modifies tree inline
|
||||
# Logic modeled from themes/basic/genindex.html
|
||||
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):
|
||||
m = self.refuri_re.match(link)
|
||||
if m:
|
||||
@ -529,7 +530,7 @@ class EpubBuilder(StandaloneHTMLBuilder):
|
||||
metadata['copyright'] = self.esc(self.config.epub_copyright)
|
||||
metadata['scheme'] = self.esc(self.config.epub_scheme)
|
||||
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['spine'] = spine
|
||||
metadata['guide'] = guide
|
||||
|
@ -120,7 +120,7 @@ class Epub3Builder(EpubBuilder):
|
||||
metadata['description'] = self.esc(self.config.epub3_description)
|
||||
metadata['contributor'] = self.esc(self.config.epub3_contributor)
|
||||
metadata['page_progression_direction'] = self.esc(
|
||||
self.config.epub3_page_progression_direction)
|
||||
self.config.epub3_page_progression_direction) or 'default'
|
||||
return metadata
|
||||
|
||||
def new_navlist(self, node, level):
|
||||
|
@ -23,7 +23,7 @@ from six import iteritems
|
||||
from sphinx.builders import Builder
|
||||
from sphinx.util import split_index_msg
|
||||
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.console import darkgreen, purple, bold
|
||||
from sphinx.locale import pairindextypes
|
||||
@ -117,7 +117,7 @@ class I18nBuilder(Builder):
|
||||
if 'index' in self.env.config.gettext_additional_targets:
|
||||
# Extract translatable messages from index entries.
|
||||
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):
|
||||
if typ == 'pair' and m in pairindextypes.values():
|
||||
# avoid built-in translated message was incorporated
|
||||
@ -165,8 +165,7 @@ class MessageCatalogBuilder(I18nBuilder):
|
||||
for dirpath, dirs, files in walk(tmpl_abs_path):
|
||||
for fn in files:
|
||||
if fn.endswith('.html'):
|
||||
filename = path.join(dirpath, fn)
|
||||
filename = filename.replace(path.sep, SEP)
|
||||
filename = canon_path(path.join(dirpath, fn))
|
||||
template_files.add(filename)
|
||||
return template_files
|
||||
|
||||
@ -216,7 +215,8 @@ class MessageCatalogBuilder(I18nBuilder):
|
||||
if self.config.gettext_location:
|
||||
# generate "#: file1:line1\n#: file2:line2 ..."
|
||||
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))
|
||||
if self.config.gettext_uuid:
|
||||
# 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.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, \
|
||||
movefile, ustrftime, copyfile
|
||||
movefile, copyfile
|
||||
from sphinx.util.nodes import inline_all_toctrees
|
||||
from sphinx.util.matching import patmatch, compile_matchers
|
||||
from sphinx.locale import _
|
||||
@ -291,7 +292,8 @@ class StandaloneHTMLBuilder(Builder):
|
||||
# typically doesn't include the time of day
|
||||
lufmt = self.config.html_last_updated_fmt
|
||||
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:
|
||||
self.last_updated = None
|
||||
|
||||
@ -512,7 +514,7 @@ class StandaloneHTMLBuilder(Builder):
|
||||
indexcounts = []
|
||||
for _k, entries in genindex:
|
||||
indexcounts.append(sum(1 + len(subitems)
|
||||
for _, (_, subitems) in entries))
|
||||
for _, (_, subitems, _) in entries))
|
||||
|
||||
genindexcontext = dict(
|
||||
genindexentries = genindex,
|
||||
|
@ -299,7 +299,7 @@ class HTMLHelpBuilder(StandaloneHTMLBuilder):
|
||||
write_index(subitem[0], subitem[1], [])
|
||||
f.write('</UL>')
|
||||
for (key, group) in index:
|
||||
for title, (refs, subitems) in group:
|
||||
for title, (refs, subitems, key_) in group:
|
||||
write_index(title, refs, subitems)
|
||||
f.write('</UL>\n')
|
||||
finally:
|
||||
|
@ -36,8 +36,7 @@ class LaTeXBuilder(Builder):
|
||||
"""
|
||||
name = 'latex'
|
||||
format = 'latex'
|
||||
supported_image_types = ['application/pdf', 'image/png',
|
||||
'image/gif', 'image/jpeg']
|
||||
supported_image_types = ['application/pdf', 'image/png', 'image/jpeg']
|
||||
usepackages = []
|
||||
|
||||
def init(self):
|
||||
|
@ -75,11 +75,11 @@ class AnchorCheckParser(HTMLParser):
|
||||
self.found = True
|
||||
|
||||
|
||||
def check_anchor(f, hash):
|
||||
"""Reads HTML data from a filelike object 'f' searching for anchor 'hash'.
|
||||
def check_anchor(f, anchor):
|
||||
"""Reads HTML data from a filelike object 'f' searching for *anchor*.
|
||||
Returns True if anchor was found, False otherwise.
|
||||
"""
|
||||
parser = AnchorCheckParser(hash)
|
||||
parser = AnchorCheckParser(anchor)
|
||||
try:
|
||||
# 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.
|
||||
@ -137,29 +137,13 @@ class CheckExternalLinksBuilder(Builder):
|
||||
if self.app.config.linkcheck_timeout:
|
||||
kwargs['timeout'] = self.app.config.linkcheck_timeout
|
||||
|
||||
def check():
|
||||
# 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
|
||||
|
||||
def check_uri():
|
||||
# split off anchor
|
||||
if '#' in uri:
|
||||
req_url, hash = uri.split('#', 1)
|
||||
req_url, anchor = uri.split('#', 1)
|
||||
else:
|
||||
req_url = uri
|
||||
hash = None
|
||||
anchor = None
|
||||
|
||||
# handle non-ASCII URIs
|
||||
try:
|
||||
@ -167,10 +151,12 @@ class CheckExternalLinksBuilder(Builder):
|
||||
except UnicodeError:
|
||||
req_url = encode_uri(req_url)
|
||||
|
||||
# need to actually check the URI
|
||||
try:
|
||||
if hash and self.app.config.linkcheck_anchors:
|
||||
# Read the whole document and see if #hash exists
|
||||
if anchor and self.app.config.linkcheck_anchors and \
|
||||
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)
|
||||
f = opener.open(req, **kwargs)
|
||||
encoding = 'utf-8'
|
||||
@ -178,11 +164,12 @@ class CheckExternalLinksBuilder(Builder):
|
||||
encoding = f.headers.get_content_charset() or encoding
|
||||
else:
|
||||
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()
|
||||
|
||||
if not found:
|
||||
raise Exception("Anchor '%s' not found" % hash)
|
||||
raise Exception("Anchor '%s' not found" % anchor)
|
||||
else:
|
||||
try:
|
||||
# try a HEAD request, which should be easier on
|
||||
@ -201,25 +188,51 @@ class CheckExternalLinksBuilder(Builder):
|
||||
except HTTPError as err:
|
||||
if err.code == 401:
|
||||
# We'll take "Unauthorized" as working.
|
||||
self.good.add(uri)
|
||||
return 'working', ' - unauthorized', 0
|
||||
else:
|
||||
self.broken[uri] = str(err)
|
||||
return 'broken', str(err), 0
|
||||
except Exception as err:
|
||||
self.broken[uri] = str(err)
|
||||
return 'broken', str(err), 0
|
||||
if f.url.rstrip('/') == req_url.rstrip('/'):
|
||||
self.good.add(uri)
|
||||
return 'working', '', 0
|
||||
else:
|
||||
new_url = f.url
|
||||
if hash:
|
||||
new_url += '#' + hash
|
||||
if anchor:
|
||||
new_url += '#' + anchor
|
||||
code = getattr(req, 'redirect_code', 0)
|
||||
self.redirected[uri] = (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:
|
||||
uri, docname, lineno = self.wqueue.get()
|
||||
if uri is None:
|
||||
|
@ -148,7 +148,7 @@ class QtHelpBuilder(StandaloneHTMLBuilder):
|
||||
keywords = []
|
||||
index = self.env.create_index(self, group_entries=False)
|
||||
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 = u'\n'.join(keywords)
|
||||
|
||||
|
@ -270,6 +270,14 @@ def main(argv):
|
||||
print(red('The full traceback has been saved in %s, if you want '
|
||||
'to report the issue to the developers.' % tbpath),
|
||||
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:
|
||||
print(red('Exception occurred:'), file=error)
|
||||
print(format_exception_cut_frames().rstrip(), file=error)
|
||||
|
@ -13,7 +13,7 @@ import re
|
||||
from os import path, environ
|
||||
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.locale import l_
|
||||
@ -31,6 +31,11 @@ CONFIG_TYPE_WARNING = "The config value `{name}' has type `{current.__name__}',
|
||||
"defaults to `{default.__name__}.'"
|
||||
|
||||
|
||||
string_classes = [text_type]
|
||||
if PY2:
|
||||
string_classes.append(binary_type) # => [str, unicode]
|
||||
|
||||
|
||||
class Config(object):
|
||||
"""
|
||||
Configuration file abstraction.
|
||||
@ -49,33 +54,34 @@ class Config(object):
|
||||
release = ('', 'env'),
|
||||
today = ('', 'env'),
|
||||
# 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'),
|
||||
figure_language_filename = ('{root}.{language}{ext}', 'env', [str]),
|
||||
|
||||
master_doc = ('contents', 'env'),
|
||||
source_suffix = (['.rst'], 'env'),
|
||||
source_encoding = ('utf-8-sig', 'env'),
|
||||
source_parsers = ({}, 'env'),
|
||||
exclude_patterns = ([], 'env'),
|
||||
default_role = (None, 'env', [str]),
|
||||
default_role = (None, 'env', string_classes),
|
||||
add_function_parentheses = (True, 'env'),
|
||||
add_module_names = (True, 'env'),
|
||||
trim_footnote_reference_space = (False, 'env'),
|
||||
show_authors = (False, 'env'),
|
||||
pygments_style = (None, 'html', [str]),
|
||||
highlight_language = ('python', 'env'),
|
||||
pygments_style = (None, 'html', string_classes),
|
||||
highlight_language = ('default', 'env'),
|
||||
highlight_options = ({}, 'env'),
|
||||
templates_path = ([], 'html'),
|
||||
template_bridge = (None, 'html', [str]),
|
||||
template_bridge = (None, 'html', string_classes),
|
||||
keep_warnings = (False, 'env'),
|
||||
modindex_common_prefix = ([], 'html'),
|
||||
rst_epilog = (None, 'env', [str]),
|
||||
rst_prolog = (None, 'env', [str]),
|
||||
rst_epilog = (None, 'env', string_classes),
|
||||
rst_prolog = (None, 'env', string_classes),
|
||||
trim_doctest_flags = (True, 'env'),
|
||||
primary_domain = ('py', 'env', [NoneType]),
|
||||
needs_sphinx = (None, None, [str]),
|
||||
needs_sphinx = (None, None, string_classes),
|
||||
needs_extensions = ({}, None),
|
||||
nitpicky = (False, 'env'),
|
||||
nitpick_ignore = ([], 'html'),
|
||||
@ -92,17 +98,17 @@ class Config(object):
|
||||
html_theme_options = ({}, 'html'),
|
||||
html_title = (lambda self: l_('%s %s documentation') %
|
||||
(self.project, self.release),
|
||||
'html', [str]),
|
||||
'html', string_classes),
|
||||
html_short_title = (lambda self: self.html_title, 'html'),
|
||||
html_style = (None, 'html', [str]),
|
||||
html_logo = (None, 'html', [str]),
|
||||
html_favicon = (None, 'html', [str]),
|
||||
html_style = (None, 'html', string_classes),
|
||||
html_logo = (None, 'html', string_classes),
|
||||
html_favicon = (None, 'html', string_classes),
|
||||
html_static_path = ([], 'html'),
|
||||
html_extra_path = ([], 'html'),
|
||||
# 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_translator_class = (None, 'html', [str]),
|
||||
html_translator_class = (None, 'html', string_classes),
|
||||
html_sidebars = ({}, 'html'),
|
||||
html_additional_pages = ({}, 'html'),
|
||||
html_use_modindex = (True, 'html'), # deprecated
|
||||
@ -113,15 +119,15 @@ class Config(object):
|
||||
html_copy_source = (True, 'html'),
|
||||
html_show_sourcelink = (True, 'html'),
|
||||
html_use_opensearch = ('', 'html'),
|
||||
html_file_suffix = (None, 'html', [str]),
|
||||
html_link_suffix = (None, 'html', [str]),
|
||||
html_file_suffix = (None, 'html', string_classes),
|
||||
html_link_suffix = (None, 'html', string_classes),
|
||||
html_show_copyright = (True, 'html'),
|
||||
html_show_sphinx = (True, 'html'),
|
||||
html_context = ({}, 'html'),
|
||||
html_output_encoding = ('utf-8', 'html'),
|
||||
html_compact_lists = (True, 'html'),
|
||||
html_secnumber_suffix = ('. ', 'html'),
|
||||
html_search_language = (None, 'html', [str]),
|
||||
html_search_language = (None, 'html', string_classes),
|
||||
html_search_options = ({}, 'html'),
|
||||
html_search_scorer = ('', None),
|
||||
html_scaled_image_link = (True, 'html'),
|
||||
@ -138,17 +144,17 @@ class Config(object):
|
||||
# Apple help options
|
||||
applehelp_bundle_name = (lambda self: make_filename(self.project),
|
||||
'applehelp'),
|
||||
applehelp_bundle_id = (None, 'applehelp', [str]),
|
||||
applehelp_bundle_id = (None, 'applehelp', string_classes),
|
||||
applehelp_dev_region = ('en-us', 'applehelp'),
|
||||
applehelp_bundle_version = ('1', 'applehelp'),
|
||||
applehelp_icon = (None, 'applehelp', [str]),
|
||||
applehelp_icon = (None, 'applehelp', string_classes),
|
||||
applehelp_kb_product = (lambda self: '%s-%s' %
|
||||
(make_filename(self.project), self.release),
|
||||
'applehelp'),
|
||||
applehelp_kb_url = (None, 'applehelp', [str]),
|
||||
applehelp_remote_url = (None, 'applehelp', [str]),
|
||||
applehelp_index_anchors = (False, 'applehelp', [str]),
|
||||
applehelp_min_term_length = (None, 'applehelp', [str]),
|
||||
applehelp_kb_url = (None, 'applehelp', string_classes),
|
||||
applehelp_remote_url = (None, 'applehelp', string_classes),
|
||||
applehelp_index_anchors = (False, 'applehelp', string_classes),
|
||||
applehelp_min_term_length = (None, 'applehelp', string_classes),
|
||||
applehelp_stopwords = (lambda self: self.language or 'en', 'applehelp'),
|
||||
applehelp_locale = (lambda self: self.language or 'en', 'applehelp'),
|
||||
applehelp_title = (lambda self: self.project + ' Help', 'applehelp'),
|
||||
@ -169,9 +175,9 @@ class Config(object):
|
||||
epub_theme = ('epub', 'html'),
|
||||
epub_theme_options = ({}, 'html'),
|
||||
epub_title = (lambda self: self.html_title, 'html'),
|
||||
epub3_description = ('', 'epub3', [str]),
|
||||
epub3_description = ('', 'epub3', string_classes),
|
||||
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_publisher = ('unknown', 'html'),
|
||||
epub_copyright = (lambda self: self.copyright, 'html'),
|
||||
@ -190,7 +196,7 @@ class Config(object):
|
||||
epub_max_image_width = (0, 'env'),
|
||||
epub_show_urls = ('inline', '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_documents = (lambda self: [(self.master_doc,
|
||||
@ -198,7 +204,7 @@ class Config(object):
|
||||
self.project,
|
||||
'', 'manual')],
|
||||
None),
|
||||
latex_logo = (None, None, [str]),
|
||||
latex_logo = (None, None, string_classes),
|
||||
latex_appendices = ([], None),
|
||||
latex_use_parts = (False, None),
|
||||
latex_use_modindex = (True, None), # deprecated
|
||||
@ -244,6 +250,7 @@ class Config(object):
|
||||
|
||||
# linkcheck options
|
||||
linkcheck_ignore = ([], None),
|
||||
linkcheck_retries = (1, None),
|
||||
linkcheck_timeout = (None, None, [int]),
|
||||
linkcheck_workers = (5, None),
|
||||
linkcheck_anchors = (True, None),
|
||||
|
@ -20,6 +20,7 @@ from sphinx.util.docfields import DocFieldTransformer
|
||||
# import and register directives
|
||||
from sphinx.directives.code import * # noqa
|
||||
from sphinx.directives.other import * # noqa
|
||||
from sphinx.directives.patches import * # noqa
|
||||
|
||||
|
||||
# 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)
|
||||
if indextext:
|
||||
self.indexnode['entries'].append(('single', indextext,
|
||||
targetname, ''))
|
||||
targetname, '', None))
|
||||
|
||||
def before_content(self):
|
||||
self.typename_set = False
|
||||
|
@ -3677,7 +3677,7 @@ class CPPObject(ObjectDescription):
|
||||
|
||||
name = text_type(ast.symbol.get_full_nested_name()).lstrip(':')
|
||||
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 the name is not unique, the first one will win
|
||||
|
@ -97,7 +97,7 @@ class JSObject(ObjectDescription):
|
||||
if indextext:
|
||||
self.indexnode['entries'].append(('single', indextext,
|
||||
fullname.replace('$', '_S_'),
|
||||
''))
|
||||
'', None))
|
||||
|
||||
def get_index_text(self, objectname, name_obj):
|
||||
name, obj = name_obj
|
||||
|
@ -257,7 +257,7 @@ class PyObject(ObjectDescription):
|
||||
indextext = self.get_index_text(modname, name_cls)
|
||||
if indextext:
|
||||
self.indexnode['entries'].append(('single', indextext,
|
||||
fullname, ''))
|
||||
fullname, '', None))
|
||||
|
||||
def before_content(self):
|
||||
# needed for automatic qualification of members (reset in subclasses)
|
||||
@ -462,7 +462,7 @@ class PyModule(Directive):
|
||||
ret.append(targetnode)
|
||||
indextext = _('%s (module)') % modname
|
||||
inode = addnodes.index(entries=[('single', indextext,
|
||||
'module-' + modname, '')])
|
||||
'module-' + modname, '', None)])
|
||||
ret.append(inode)
|
||||
return ret
|
||||
|
||||
|
@ -48,7 +48,7 @@ class ReSTMarkup(ObjectDescription):
|
||||
indextext = self.get_index_text(self.objtype, name)
|
||||
if indextext:
|
||||
self.indexnode['entries'].append(('single', indextext,
|
||||
targetname, ''))
|
||||
targetname, '', None))
|
||||
|
||||
def get_index_text(self, objectname, name):
|
||||
if self.objtype == 'directive':
|
||||
|
@ -23,7 +23,7 @@ from sphinx.roles import XRefRole
|
||||
from sphinx.locale import l_, _
|
||||
from sphinx.domains import Domain, ObjType
|
||||
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.compat import Directive
|
||||
|
||||
@ -64,7 +64,7 @@ class GenericObject(ObjectDescription):
|
||||
indextype = 'single'
|
||||
indexentry = self.indextemplate % (name,)
|
||||
self.indexnode['entries'].append((indextype, indexentry,
|
||||
targetname, ''))
|
||||
targetname, '', None))
|
||||
self.env.domaindata['std']['objects'][self.objtype, name] = \
|
||||
self.env.docname, targetname
|
||||
|
||||
@ -85,8 +85,8 @@ class EnvVarXRefRole(XRefRole):
|
||||
tgtid = 'index-%s' % env.new_serialno('index')
|
||||
indexnode = addnodes.index()
|
||||
indexnode['entries'] = [
|
||||
('single', varname, tgtid, ''),
|
||||
('single', _('environment variable; %s') % varname, tgtid, '')
|
||||
('single', varname, tgtid, '', None),
|
||||
('single', _('environment variable; %s') % varname, tgtid, '', None)
|
||||
]
|
||||
targetnode = nodes.target('', '', ids=[tgtid])
|
||||
document.note_explicit_target(targetnode)
|
||||
@ -121,7 +121,7 @@ class Target(Directive):
|
||||
indextype = indexentry[:colon].strip()
|
||||
indexentry = indexentry[colon+1:].strip()
|
||||
inode = addnodes.index(entries=[(indextype, indexentry,
|
||||
targetname, '')])
|
||||
targetname, '', None)])
|
||||
ret.insert(0, inode)
|
||||
name = self.name
|
||||
if ':' in self.name:
|
||||
@ -184,7 +184,7 @@ class Cmdoption(ObjectDescription):
|
||||
self.indexnode['entries'].append(
|
||||
('pair', _('%scommand line option; %s') %
|
||||
((currprogram and currprogram + ' ' or ''), sig),
|
||||
targetname, ''))
|
||||
targetname, '', None))
|
||||
|
||||
|
||||
class Program(Directive):
|
||||
@ -214,11 +214,23 @@ class OptionXRefRole(XRefRole):
|
||||
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())
|
||||
objects = env.domaindata['std']['objects']
|
||||
|
||||
termtext = node.astext()
|
||||
termtext = term.astext()
|
||||
if new_id is None:
|
||||
new_id = nodes.make_id('term-' + termtext)
|
||||
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
|
||||
indexnode = addnodes.index()
|
||||
indexnode['entries'] = [('single', termtext, new_id, 'main')]
|
||||
new_termnodes = []
|
||||
new_termnodes.append(indexnode)
|
||||
new_termnodes.extend(node.children)
|
||||
new_termnodes.append(addnodes.termsep())
|
||||
for termnode in new_termnodes:
|
||||
termnode.source, termnode.line = node.source, node.line
|
||||
indexnode['entries'] = [('single', termtext, new_id, 'main', index_key)]
|
||||
indexnode.source, indexnode.line = term.source, term.line
|
||||
term.append(indexnode)
|
||||
term['ids'].append(new_id)
|
||||
term['names'].append(new_id)
|
||||
|
||||
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
|
||||
|
||||
|
||||
@ -330,33 +329,28 @@ class Glossary(Directive):
|
||||
termtexts = []
|
||||
termnodes = []
|
||||
system_messages = []
|
||||
ids = []
|
||||
for line, source, lineno in terms:
|
||||
parts = split_term_classifiers(line)
|
||||
# parse the term with inline markup
|
||||
res = self.state.inline_text(line, lineno)
|
||||
system_messages.extend(res[1])
|
||||
# classifiers (parts[1:]) will not be shown on doctree
|
||||
textnodes, sysmsg = self.state.inline_text(parts[0], lineno)
|
||||
|
||||
# get a text-only representation of the term and register it
|
||||
# as a cross-reference target
|
||||
tmp = nodes.paragraph('', '', *res[0])
|
||||
tmp.source = source
|
||||
tmp.line = lineno
|
||||
new_id, termtext, new_termnodes = \
|
||||
make_termnodes_from_paragraph_node(env, tmp)
|
||||
ids.append(new_id)
|
||||
termtexts.append(termtext)
|
||||
termnodes.extend(new_termnodes)
|
||||
# use first classifier as a index key
|
||||
term = make_glossary_term(env, textnodes, parts[1], source, lineno)
|
||||
term.rawsource = line
|
||||
system_messages.extend(sysmsg)
|
||||
termtexts.append(term.astext())
|
||||
termnodes.append(term)
|
||||
|
||||
term = make_term_from_paragraph_node(termnodes, ids)
|
||||
term += system_messages
|
||||
termnodes.extend(system_messages)
|
||||
|
||||
defnode = nodes.definition()
|
||||
if definition:
|
||||
self.state.nested_parse(definition, definition.items[0][1],
|
||||
defnode)
|
||||
|
||||
termnodes.append(defnode)
|
||||
items.append((termtexts,
|
||||
nodes.definition_list_item('', term, defnode)))
|
||||
nodes.definition_list_item('', *termnodes)))
|
||||
|
||||
if 'sorted' in self.options:
|
||||
items.sort(key=lambda x:
|
||||
@ -453,7 +447,7 @@ class StandardDomain(Domain):
|
||||
'productionlist': ProductionList,
|
||||
}
|
||||
roles = {
|
||||
'option': OptionXRefRole(warn_dangling=True),
|
||||
'option': OptionXRefRole(),
|
||||
'envvar': EnvVarXRefRole(),
|
||||
# links to tokens in grammar productions
|
||||
'token': XRefRole(),
|
||||
@ -491,7 +485,12 @@ class StandardDomain(Domain):
|
||||
'the label must precede a section header)',
|
||||
'numref': 'undefined label: %(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):
|
||||
@ -543,33 +542,9 @@ class StandardDomain(Domain):
|
||||
anonlabels[name] = docname, labelid
|
||||
if node.tagname == 'section':
|
||||
sectname = clean_astext(node[0]) # node[0] == title node
|
||||
elif node.tagname == 'figure':
|
||||
for n in node:
|
||||
if n.tagname == 'caption':
|
||||
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:
|
||||
elif self.is_enumerable_node(node):
|
||||
sectname = self.get_numfig_title(node)
|
||||
if sectname is None:
|
||||
continue
|
||||
elif node.traverse(addnodes.toctree):
|
||||
n = node.traverse(addnodes.toctree)[0]
|
||||
@ -634,10 +609,9 @@ class StandardDomain(Domain):
|
||||
lineno=node.line)
|
||||
return contnode
|
||||
|
||||
try:
|
||||
target_node = env.get_doctree(docname).ids[labelid]
|
||||
figtype = get_figtype(target_node)
|
||||
except:
|
||||
target_node = env.get_doctree(docname).ids.get(labelid)
|
||||
figtype = self.get_figtype(target_node)
|
||||
if figtype is None:
|
||||
return None
|
||||
|
||||
try:
|
||||
@ -747,3 +721,33 @@ class StandardDomain(Domain):
|
||||
def get_type_name(self, type, primary=False):
|
||||
# never prepend "Default"
|
||||
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 bisect
|
||||
import codecs
|
||||
import imghdr
|
||||
import string
|
||||
import unicodedata
|
||||
from os import path
|
||||
from glob import glob
|
||||
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 docutils import nodes
|
||||
from docutils.io import FileInput, NullOutput
|
||||
from docutils.io import NullOutput
|
||||
from docutils.core import Publisher
|
||||
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.languages import en as english
|
||||
from docutils.parsers.rst.directives.html import MetaBody
|
||||
from docutils.writers import UnfilteredWriter
|
||||
from docutils.frontend import OptionParser
|
||||
|
||||
from sphinx import addnodes
|
||||
from sphinx.io import SphinxStandaloneReader, SphinxDummyWriter, SphinxFileInput
|
||||
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.osutil import SEP, getcwd, fs_encoding
|
||||
from sphinx.util.i18n import find_catalog_files
|
||||
from sphinx.util.osutil import SEP, getcwd, fs_encoding, ensuredir
|
||||
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.matching import compile_matchers
|
||||
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.locale import _
|
||||
from sphinx.versioning import add_uids, merge_doctrees
|
||||
from sphinx.transforms import (
|
||||
DefaultSubstitutions, MoveModuleTargets, ApplySourceWorkaround,
|
||||
HandleCodeBlocks, AutoNumbering, SortIds, CitationReferences, Locale,
|
||||
RemoveTranslatableInline, SphinxContentsFilter, ExtraTranslatableNodes,
|
||||
)
|
||||
|
||||
from sphinx.transforms import SphinxContentsFilter
|
||||
|
||||
orig_role_function = roles.role
|
||||
orig_directive_function = directives.directive
|
||||
@ -97,77 +92,6 @@ class NoUri(Exception):
|
||||
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:
|
||||
"""
|
||||
The environment in which the ReST files are translated.
|
||||
@ -178,7 +102,7 @@ class BuildEnvironment:
|
||||
# --------- ENVIRONMENT PERSISTENCE ----------------------------------------
|
||||
|
||||
@staticmethod
|
||||
def frompickle(config, filename):
|
||||
def frompickle(srcdir, config, filename):
|
||||
picklefile = open(filename, 'rb')
|
||||
try:
|
||||
env = pickle.load(picklefile)
|
||||
@ -186,6 +110,8 @@ class BuildEnvironment:
|
||||
picklefile.close()
|
||||
if env.version != ENV_VERSION:
|
||||
raise IOError('build environment version not current')
|
||||
if env.srcdir != srcdir:
|
||||
raise IOError('source directory has changed')
|
||||
env.config.values = config.values
|
||||
return env
|
||||
|
||||
@ -859,9 +785,7 @@ class BuildEnvironment:
|
||||
# save the parsed doctree
|
||||
doctree_filename = self.doc2path(docname, self.doctreedir,
|
||||
'.doctree')
|
||||
dirname = path.dirname(doctree_filename)
|
||||
if not path.isdir(dirname):
|
||||
os.makedirs(dirname)
|
||||
ensuredir(path.dirname(doctree_filename))
|
||||
f = open(doctree_filename, 'wb')
|
||||
try:
|
||||
pickle.dump(doctree, f, pickle.HIGHEST_PROTOCOL)
|
||||
@ -961,6 +885,21 @@ class BuildEnvironment:
|
||||
|
||||
def process_images(self, docname, doctree):
|
||||
"""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):
|
||||
# Map the mimetype to the corresponding image. The writer may
|
||||
# choose the best image from these candidates. The special key * is
|
||||
@ -973,30 +912,26 @@ class BuildEnvironment:
|
||||
candidates['?'] = imguri
|
||||
continue
|
||||
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
|
||||
node['uri'] = rel_imgpath
|
||||
if rel_imgpath.endswith(os.extsep + '*'):
|
||||
for filename in glob(full_imgpath):
|
||||
new_imgpath = relative_path(path.join(self.srcdir, 'dummy'),
|
||||
filename)
|
||||
if filename.lower().endswith('.pdf'):
|
||||
candidates['application/pdf'] = new_imgpath
|
||||
elif filename.lower().endswith('.svg'):
|
||||
candidates['image/svg+xml'] = new_imgpath
|
||||
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
|
||||
if self.config.language:
|
||||
# Search language-specific figures at first
|
||||
i18n_imguri = get_image_filename_for_language(imguri, self)
|
||||
_, full_i18n_imgpath = self.relfn2path(i18n_imguri, docname)
|
||||
collect_candidates(full_i18n_imgpath, candidates)
|
||||
|
||||
collect_candidates(full_imgpath, candidates)
|
||||
else:
|
||||
candidates['*'] = rel_imgpath
|
||||
|
||||
# map image paths to unique image names (so that they can be put
|
||||
# into a single directory)
|
||||
for imgpath in itervalues(candidates):
|
||||
@ -1128,7 +1063,7 @@ class BuildEnvironment:
|
||||
entries = self.indexentries[docname] = []
|
||||
for node in document.traverse(addnodes.index):
|
||||
try:
|
||||
for type, value, tid, main in node['entries']:
|
||||
for type, value, tid, main, index_key in node['entries']:
|
||||
split_index_msg(type, value)
|
||||
except ValueError as exc:
|
||||
self.warn_node(exc, node)
|
||||
@ -1804,11 +1739,6 @@ class BuildEnvironment:
|
||||
fignumbers = self.toc_fignumbers[docname].setdefault(figtype, {})
|
||||
figure_id = fignode['ids'][0]
|
||||
|
||||
if (isinstance(fignode, nodes.image) and
|
||||
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):
|
||||
@ -1830,7 +1760,7 @@ class BuildEnvironment:
|
||||
|
||||
continue
|
||||
|
||||
figtype = get_figtype(subnode)
|
||||
figtype = self.domains['std'].get_figtype(subnode)
|
||||
if figtype and subnode['ids']:
|
||||
register_fignumber(docname, secnum, figtype, subnode)
|
||||
|
||||
@ -1855,16 +1785,16 @@ class BuildEnvironment:
|
||||
"""Create the real index from the collected index entries."""
|
||||
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.
|
||||
# This will solve problems with unicode normalization later.
|
||||
# For instance the RFC role will add bytestrings at the moment
|
||||
word = text_type(word)
|
||||
entry = dic.get(word)
|
||||
if not entry:
|
||||
dic[word] = entry = [[], {}]
|
||||
dic[word] = entry = [[], {}, key]
|
||||
if subword:
|
||||
add_entry(subword, '', link=link, dic=entry[1])
|
||||
add_entry(subword, '', link=link, dic=entry[1], key=key)
|
||||
elif link:
|
||||
try:
|
||||
uri = builder.get_relative_uri('genindex', fn) + '#' + tid
|
||||
@ -1876,7 +1806,7 @@ class BuildEnvironment:
|
||||
|
||||
for fn, entries in iteritems(self.indexentries):
|
||||
# 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:
|
||||
if type == 'single':
|
||||
try:
|
||||
@ -1884,22 +1814,24 @@ class BuildEnvironment:
|
||||
except ValueError:
|
||||
entry, = split_into(1, 'single', value)
|
||||
subentry = ''
|
||||
add_entry(entry, subentry)
|
||||
add_entry(entry, subentry, key=index_key)
|
||||
elif type == 'pair':
|
||||
first, second = split_into(2, 'pair', value)
|
||||
add_entry(first, second)
|
||||
add_entry(second, first)
|
||||
add_entry(first, second, key=index_key)
|
||||
add_entry(second, first, key=index_key)
|
||||
elif type == 'triple':
|
||||
first, second, third = split_into(3, 'triple', value)
|
||||
add_entry(first, second+' '+third)
|
||||
add_entry(second, third+', '+first)
|
||||
add_entry(third, first+' '+second)
|
||||
add_entry(first, second+' '+third, key=index_key)
|
||||
add_entry(second, third+', '+first, key=index_key)
|
||||
add_entry(third, first+' '+second, key=index_key)
|
||||
elif type == 'see':
|
||||
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':
|
||||
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:
|
||||
self.warn(fn, 'unknown index entry type %r' % type)
|
||||
except ValueError as err:
|
||||
@ -1928,7 +1860,7 @@ class BuildEnvironment:
|
||||
oldsubitems = None
|
||||
i = 0
|
||||
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
|
||||
if not subitems:
|
||||
m = _fixre.match(key)
|
||||
@ -1936,7 +1868,7 @@ class BuildEnvironment:
|
||||
if oldkey == m.group(1):
|
||||
# prefixes match: add entry as subitem of the
|
||||
# previous entry
|
||||
oldsubitems.setdefault(m.group(2), [[], {}])[0].\
|
||||
oldsubitems.setdefault(m.group(2), [[], {}, _key])[0].\
|
||||
extend(targets)
|
||||
del newlist[i]
|
||||
continue
|
||||
@ -1950,7 +1882,8 @@ class BuildEnvironment:
|
||||
def keyfunc2(item, letters=string.ascii_uppercase + '_'):
|
||||
# hack: mutating the subitems dicts to a list in the keyfunc
|
||||
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]))
|
||||
if v[2] is None:
|
||||
# now calculate the key
|
||||
letter = unicodedata.normalize('NFD', k[0])[0].upper()
|
||||
if letter in letters:
|
||||
@ -1958,6 +1891,8 @@ class BuildEnvironment:
|
||||
else:
|
||||
# get all other symbols under one heading
|
||||
return _('Symbols')
|
||||
else:
|
||||
return v[2]
|
||||
return [(key_, list(group))
|
||||
for (key_, group) in groupby(newlist, keyfunc2)]
|
||||
|
||||
|
@ -17,7 +17,7 @@ import inspect
|
||||
import traceback
|
||||
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
|
||||
from docutils import nodes
|
||||
from docutils.utils import assemble_option_dict
|
||||
@ -532,6 +532,8 @@ class Documenter(object):
|
||||
else:
|
||||
errmsg += '; the following exception was raised:\n%s' % \
|
||||
traceback.format_exc()
|
||||
if PY2:
|
||||
errmsg = errmsg.decode('utf-8')
|
||||
dbg(errmsg)
|
||||
self.directive.warn(errmsg)
|
||||
self.env.note_reread()
|
||||
@ -1285,6 +1287,15 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
|
||||
(initdocstring == object.__init__.__doc__ or # for pypy
|
||||
initdocstring.strip() == object.__init__.__doc__)): # for !pypy
|
||||
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 content == 'init':
|
||||
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
|
||||
from sphinx.errors import SphinxError
|
||||
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.compat import Directive
|
||||
|
||||
@ -77,7 +78,8 @@ class Graphviz(Directive):
|
||||
'Graphviz directive cannot have both content and '
|
||||
'a filename argument', line=self.lineno)]
|
||||
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)
|
||||
try:
|
||||
fp = codecs.open(filename, 'r', 'utf-8')
|
||||
|
@ -365,7 +365,7 @@ def html_visit_inheritance_diagram(self, node):
|
||||
urls[child['reftitle']] = '#' + child.get('refid')
|
||||
|
||||
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'])
|
||||
raise nodes.SkipNode
|
||||
|
||||
@ -381,7 +381,7 @@ def latex_visit_inheritance_diagram(self, node):
|
||||
|
||||
dotcode = graph.generate_dot(name, env=self.builder.env,
|
||||
graph_attrs={'size': '"6.0,6.0"'})
|
||||
render_dot_latex(self, node, dotcode, [], 'inheritance')
|
||||
render_dot_latex(self, node, dotcode, {}, 'inheritance')
|
||||
raise nodes.SkipNode
|
||||
|
||||
|
||||
@ -396,7 +396,7 @@ def texinfo_visit_inheritance_diagram(self, node):
|
||||
|
||||
dotcode = graph.generate_dot(name, env=self.builder.env,
|
||||
graph_attrs={'size': '"6.0,6.0"'})
|
||||
render_dot_texinfo(self, node, dotcode, [], 'inheritance')
|
||||
render_dot_texinfo(self, node, dotcode, {}, 'inheritance')
|
||||
raise nodes.SkipNode
|
||||
|
||||
|
||||
|
@ -214,6 +214,11 @@ def number_equations(app, doctree, docname):
|
||||
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):
|
||||
app.add_config_value('math_number_all', False, 'html')
|
||||
app.add_node(math, override=True,
|
||||
@ -238,4 +243,4 @@ def setup_math(app, htmlinlinevisitors, htmldisplayvisitors):
|
||||
app.add_role('eq', eq_role)
|
||||
app.add_directive('math', MathDirective)
|
||||
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>')
|
||||
raise nodes.SkipNode
|
||||
|
||||
parts = [prt for prt in node['latex'].split('\n\n') if prt.strip()]
|
||||
for i, part in enumerate(parts):
|
||||
part = self.encode(part)
|
||||
if i == 0:
|
||||
# necessary to e.g. set the id property correctly
|
||||
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])
|
||||
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()]
|
||||
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):
|
||||
part = self.encode(part)
|
||||
if r'\\' in part:
|
||||
self.body.append(r'\begin{split}' + part + r'\end{split}')
|
||||
else:
|
||||
self.body.append(self.builder.config.mathjax_display[0] + part +
|
||||
self.builder.config.mathjax_display[1])
|
||||
self.body.append(part)
|
||||
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')
|
||||
raise nodes.SkipNode
|
||||
|
||||
|
@ -139,7 +139,11 @@ def collect_pages(app):
|
||||
# construct a page name for the highlighted source
|
||||
pagename = '_modules/' + modname.replace('.', '/')
|
||||
# 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
|
||||
lines = highlighted.splitlines()
|
||||
# split off wrap markup from the first line of the actual code
|
||||
|
@ -9,24 +9,15 @@
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
import textwrap
|
||||
|
||||
try:
|
||||
import parser
|
||||
except ImportError:
|
||||
# parser is not available on Jython
|
||||
parser = None
|
||||
|
||||
from six import PY2, text_type
|
||||
from six import text_type
|
||||
|
||||
from sphinx.util.pycompat import htmlescape
|
||||
from sphinx.util.texescape import tex_hl_escape_map_new
|
||||
from sphinx.ext import doctest
|
||||
|
||||
from pygments import highlight
|
||||
from pygments.lexers import PythonLexer, PythonConsoleLexer, CLexer, \
|
||||
TextLexer, RstLexer
|
||||
from pygments.lexers import PythonLexer, Python3Lexer, PythonConsoleLexer, \
|
||||
CLexer, TextLexer, RstLexer
|
||||
from pygments.lexers import get_lexer_by_name, guess_lexer
|
||||
from pygments.formatters import HtmlFormatter, LatexFormatter
|
||||
from pygments.filters import ErrorToken
|
||||
@ -37,6 +28,7 @@ from sphinx.pygments_styles import SphinxStyle, NoneStyle
|
||||
lexers = dict(
|
||||
none = TextLexer(stripnl=False),
|
||||
python = PythonLexer(stripnl=False),
|
||||
python3 = Python3Lexer(stripnl=False),
|
||||
pycon = PythonConsoleLexer(stripnl=False),
|
||||
pycon3 = PythonConsoleLexer(python3=True, stripnl=False),
|
||||
rest = RstLexer(stripnl=False),
|
||||
@ -99,41 +91,6 @@ class PygmentsBridge(object):
|
||||
return '\\begin{Verbatim}[commandchars=\\\\\\{\\}]\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):
|
||||
if not isinstance(source, text_type):
|
||||
source = source.decode()
|
||||
@ -143,17 +100,13 @@ class PygmentsBridge(object):
|
||||
if source.startswith('>>>'):
|
||||
# interactive session
|
||||
lexer = lexers['pycon']
|
||||
elif not force:
|
||||
# maybe Python -- try parsing it
|
||||
if self.try_parse(source):
|
||||
lexer = lexers['python']
|
||||
else:
|
||||
lexer = lexers['none']
|
||||
else:
|
||||
lexer = lexers['python']
|
||||
elif lang in ('python3', 'py3') and source.startswith('>>>'):
|
||||
# for py3, recognize interactive sessions, but do not try parsing...
|
||||
elif lang in ('py3', 'python3', 'default'):
|
||||
if source.startswith('>>>'):
|
||||
lexer = lexers['pycon3']
|
||||
else:
|
||||
lexer = lexers['python3']
|
||||
elif lang == 'guess':
|
||||
try:
|
||||
lexer = guess_lexer(source)
|
||||
@ -186,8 +139,11 @@ class PygmentsBridge(object):
|
||||
except ErrorToken as exc:
|
||||
# this is most probably not the selected language,
|
||||
# so let it pass unhighlighted
|
||||
if warn:
|
||||
warn('Could not parse literal_block as "%s". highlighting skipped.' % lang)
|
||||
if lang == 'default':
|
||||
pass # automatic highlighting failed.
|
||||
elif warn:
|
||||
warn('Could not lex literal_block as "%s". '
|
||||
'Highlighting skipped.' % lang)
|
||||
else:
|
||||
raise exc
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Bengali translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# This file is distributed under the same license as the Sphinx project.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||
#
|
||||
# Translators:
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr ""
|
||||
|
||||
@ -58,11 +58,10 @@ msgstr ""
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%B %d, %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -72,64 +71,63 @@ msgstr "বিল্টইন সমূহ"
|
||||
msgid "Module level"
|
||||
msgstr "মডিউল লেভেল"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%b %d, %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "সাধারণ ইনডেক্স"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "ইনডেক্স"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "পরবর্তী"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "পূর্ববর্তী"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr "(-"
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "অনুচ্ছেদ লেখক:"
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "মডিউল লেখক:"
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "লেখক:"
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "প্যারামিটার"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "রিটার্নস"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "রিটার্ন টাইপ"
|
||||
|
||||
@ -158,12 +156,12 @@ msgstr "%s (C টাইপ)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C ভ্যারিয়েবল)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "ফাংশন"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
@ -171,7 +169,7 @@ msgstr ""
|
||||
msgid "macro"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr ""
|
||||
|
||||
@ -179,59 +177,64 @@ msgstr ""
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++ টাইপ)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++ মেম্বার)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++ ফাংশন)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++ ক্লাসে)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "ক্লাস"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr "%s() (বিল্ট-ইন ফাংশন)"
|
||||
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (%s মেথড)"
|
||||
@ -246,7 +249,7 @@ msgstr "%s() (ক্লাসে)"
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (%s এ্যট্রিবিউট)"
|
||||
@ -255,116 +258,116 @@ msgstr "%s (%s এ্যট্রিবিউট)"
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr "ডাটা"
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "এ্যট্রিবিউট"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "রেইজেস"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (%s মডিউলে)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)"
|
||||
|
||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
||||
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (%s মডিউলে)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (বিল্ট-ইন ক্লাস)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (%s ক্লাসে)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s (%s.%s মেথড)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s (%s.%s স্ট্যাটিক মেথড)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (%s স্ট্যাটিক মেথড)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (%s.%s ক্লাস মেথড)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (%s ক্লাস মেথড)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (%s.%s এ্যট্রিবিউট)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (মডিউল)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "মডিউল সমূহ"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "ডেপ্রিকেটেড"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "এক্সেপশন"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "মেথড"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "ক্লাস মেথড"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
msgstr "স্ট্যাটিক মেথড"
|
||||
|
||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
||||
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||
msgid "module"
|
||||
msgstr "মডিউল"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr ""
|
||||
|
||||
@ -396,64 +399,64 @@ msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%sকমান্ড লাইন অপশন; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "শব্দকোষ"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "ব্যকরণ টোকেন"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "ইনডেক্স"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "অনুসন্ধান পাতা"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr "বেস: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -462,112 +465,116 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "অসমাপ্ত কাজ"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#: sphinx/ext/todo.py:129
|
||||
msgid "<<original entry>>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:132
|
||||
#, python-format
|
||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "দৃষ্টি আকর্ষণ"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "সতর্কীকরণ"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "বিপজ্জনক"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "ভুল (এরর)"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "আভাস"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "গুরুত্বপূর্ণ"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "নোট"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "আরও দেখুন"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "পরামর্শ"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "সতর্কতা"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "%s ভার্সনে নতুন"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "%s ভার্সনে পরিবর্তিত"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "কিওয়ার্ড"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "অপারেটর"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "অবজেক্ট"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "স্ট্যাটমেন্ট"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "বিল্ট-ইন ফাংশন"
|
||||
|
||||
@ -695,7 +702,9 @@ msgstr "%(last_updated)s সর্বশেষ পরিবর্তন কর
|
||||
msgid ""
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(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
|
||||
#, python-format
|
||||
@ -722,7 +731,9 @@ msgstr "পরবর্তী অধ্যায়"
|
||||
msgid ""
|
||||
"Please activate JavaScript to enable the search\n"
|
||||
" functionality."
|
||||
msgstr "অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n সক্রিয় করুন।"
|
||||
msgstr ""
|
||||
"অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n"
|
||||
" সক্রিয় করুন।"
|
||||
|
||||
#: sphinx/themes/basic/search.html:32
|
||||
msgid ""
|
||||
@ -730,25 +741,28 @@ msgid ""
|
||||
" 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 "এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে ক্লিক করুন।\n উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় সকল\n শব্দ নেই সেগুলো বাদ দেয়া হবে।"
|
||||
msgstr ""
|
||||
"এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n"
|
||||
" আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে "
|
||||
"ক্লিক করুন।\n"
|
||||
" উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় "
|
||||
"সকল\n"
|
||||
" শব্দ নেই সেগুলো বাদ দেয়া হবে।"
|
||||
|
||||
#: sphinx/themes/basic/search.html:39
|
||||
#: sphinx/themes/basic/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "খুঁজুন"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "অনুসন্ধানের ফলাফল"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -787,33 +801,33 @@ msgstr "C API পরিবর্তন"
|
||||
msgid "Other changes"
|
||||
msgstr "অন্যান্য পরিবর্তন"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "এই সংজ্ঞার পার্মালিঙ্ক"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "অনুসন্ধানের ম্যাচগুলো লুকান"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -830,44 +844,59 @@ msgstr ""
|
||||
msgid "Contents"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "রিলিজ"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "বিপজ্জনক"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "পাদটীকা"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "পূর্ববর্তী পাতা হতে চলমান"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
msgstr "পরবর্তী পাতাতে চলমান"
|
||||
|
||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
||||
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||
#, python-format
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Catalan translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# This file is distributed under the same license as the Sphinx project.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||
#
|
||||
# Translators:
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "%s %s documentació"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "vegeu %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "vegeu també %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr ""
|
||||
|
||||
@ -58,11 +58,10 @@ msgstr ""
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d de %B de %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -72,64 +71,63 @@ msgstr "Mòduls Interns"
|
||||
msgid "Module level"
|
||||
msgstr "Nivell de mòdul"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d %b, %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Índex General"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "índex"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "següent"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "anterior"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr " (a "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Autor de la secció:"
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Autor del mòdul: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Autor: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Paràmetres"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Retorna"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Tipus de retorn"
|
||||
|
||||
@ -158,12 +156,12 @@ msgstr "%s (tipus de C)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (variable de C)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "funció"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "membre"
|
||||
|
||||
@ -171,7 +169,7 @@ msgstr "membre"
|
||||
msgid "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"
|
||||
msgstr "tipus"
|
||||
|
||||
@ -179,59 +177,64 @@ msgstr "tipus"
|
||||
msgid "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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (tipus de C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (membre de C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (funció de C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (class de C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "class"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (mètode %s)"
|
||||
@ -246,7 +249,7 @@ msgstr "%s() (class)"
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (atribut %s)"
|
||||
@ -255,116 +258,116 @@ msgstr "%s (atribut %s)"
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "atribut"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Llença"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (al mòdul %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (al mòdul %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (classe interna)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (class a %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (mètode %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (mètode estàtic %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (mètode estàtic %s)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (atribut %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (mòdul)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "mòduls"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Obsolet"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "excepció"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "mòdul"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (obsolet)"
|
||||
|
||||
@ -396,64 +399,64 @@ msgstr "variable d'entorn; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "opció de línia de comandes %s; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "variable d'entorn"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Índex"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Pàgina de Cerca"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Bases: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -462,112 +465,116 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Pendent"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
msgid "<<original entry>>"
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Atenció"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Compte"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Perill"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Suggerència"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Important"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Nota"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Vegeu també"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Truc"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Avís"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Novetat de la versió %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Canviat a la versió %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Obsolet desde la versió %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "paraula clau"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "operador"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objecte"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "sentència"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "funció interna"
|
||||
|
||||
@ -695,7 +702,9 @@ msgstr "Última actualització el %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <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."
|
||||
msgstr ""
|
||||
"Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(sphinx_version)s."
|
||||
|
||||
#: sphinx/themes/basic/opensearch.xml:4
|
||||
#, python-format
|
||||
@ -722,7 +731,9 @@ msgstr "capítol següent"
|
||||
msgid ""
|
||||
"Please activate JavaScript to enable the search\n"
|
||||
" 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
|
||||
msgid ""
|
||||
@ -730,25 +741,26 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "cerca"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Resultats de la Cerca"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -787,33 +799,33 @@ msgstr "Canvis a la API de C"
|
||||
msgid "Other changes"
|
||||
msgstr "Altres canvis"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
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"
|
||||
msgstr "Oculta Resultats de Cerca"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -830,44 +842,56 @@ msgstr ""
|
||||
msgid "Contents"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Versió"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Perill"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "ve de la pàgina anterior"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Czech translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "Obr. %s"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "Tabulka %s"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr "Výpis %s"
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "Dokumentace pro %s %s"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "viz %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "viz také %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Symboly"
|
||||
|
||||
@ -59,11 +58,10 @@ msgstr "Symboly"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d.%m.%Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -73,64 +71,63 @@ msgstr "Vestavěné funkce"
|
||||
msgid "Module level"
|
||||
msgstr "Úroveň modulu"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d.%m.%Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Obecný rejstřík"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "rejstřík"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "další"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
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 "
|
||||
msgstr " (v "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Autor sekce: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Autor modulu: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Autor kódu:"
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Autor: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Parametry"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Vrací"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Typ návratové hodnoty"
|
||||
|
||||
@ -159,12 +156,12 @@ msgstr "%s (C typ)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C proměnná)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "funkce"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "člen"
|
||||
|
||||
@ -172,7 +169,7 @@ msgstr "člen"
|
||||
msgid "macro"
|
||||
msgstr "makro"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr "typ"
|
||||
|
||||
@ -180,59 +177,64 @@ msgstr "typ"
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr "Vyvolá"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++ typ)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++ člen)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++ funkce)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++ třída)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "třída"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (metoda %s)"
|
||||
@ -247,7 +249,7 @@ msgstr "%s() (třída)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (atribut %s)"
|
||||
@ -256,116 +258,116 @@ msgstr "%s (atribut %s)"
|
||||
msgid "Arguments"
|
||||
msgstr "Argumenty"
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "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"
|
||||
msgstr "atribut"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Proměnné"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Vyvolá"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (v modulu %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (v modulu %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (vestavěná třída)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (třída v %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (metoda %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (statická metoda %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (statická metoda %s)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (třídní metoda %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (třídní metoda %s)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (atribut %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (modul)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Rejstřík modulů Pythonu"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "moduly"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Zastaralé"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "výjimka"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "metoda"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "třídní metoda"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "modul"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (zastaralé)"
|
||||
|
||||
@ -397,64 +399,64 @@ msgstr "proměnná prostředí; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%svolba příkazového řádku; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "termín v glosáři"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "token gramatiky"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "referenční návěstí"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "proměnná prostředí"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Rejstřík"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Vyhledávací stránka"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Nadtřídy: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %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]"
|
||||
msgstr "[graf]"
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr "(v %s v%s)"
|
||||
@ -463,112 +465,117 @@ msgstr "(v %s v%s)"
|
||||
msgid "[source]"
|
||||
msgstr "[zdroj]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Todo"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "původní záznam"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[dokumentace]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Kód modulu"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>Zdrojový kód pro %s</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
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>"
|
||||
msgstr "<h1>Všechny moduly s dostupným kódem</h1>"
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Výstraha"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Upozornění"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Nebezpečí"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Rada"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Důležité"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Poznámka"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Viz také"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Tip"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Varování"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Nové ve verzi %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Změněno ve verzi %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Zastaralé od verze %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "klíčové slovo"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "operátor"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objekt"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "příkaz"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "vestavěná funkce"
|
||||
|
||||
@ -696,7 +703,9 @@ msgstr "Aktualizováno dne %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <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."
|
||||
msgstr ""
|
||||
"Vytvořeno pomocí <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(sphinx_version)s."
|
||||
|
||||
#: sphinx/themes/basic/opensearch.xml:4
|
||||
#, python-format
|
||||
@ -731,26 +740,29 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "hledat"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Výsledky vyhledávání"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words 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í."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"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í."
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
msgid "Quick search"
|
||||
@ -788,33 +800,33 @@ msgstr "Změny API"
|
||||
msgid "Other changes"
|
||||
msgstr "Ostatní změny"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Probíhá vyhledání"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
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
|
||||
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."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ", v "
|
||||
|
||||
@ -831,44 +843,56 @@ msgstr "Sbalit boční lištu"
|
||||
msgid "Contents"
|
||||
msgstr "Obsah"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permalink k tomuto kódu"
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permalink k tomuto obrázku"
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permalink k této tabulce"
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Vydání"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Nebezpečí"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Poznámky pod čarou"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "pokračujte na předchozí stránce"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %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]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Danish translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "figur %s"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "tabel %s"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "%s %s dokumentation"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "se %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "se også %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Symboler"
|
||||
|
||||
@ -59,11 +58,10 @@ msgstr "Symboler"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d. %B, %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -73,64 +71,63 @@ msgstr "Indbyggede"
|
||||
msgid "Module level"
|
||||
msgstr "Modulniveau"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d. %b, %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Generelt indeks"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "indeks"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "næste"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "forrige"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr " (i "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Afsnitsforfatter: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Modulforfatter: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Kodeforfatter: "
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Forfatter: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Parametre"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Returnerer"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Returtype"
|
||||
|
||||
@ -159,12 +156,12 @@ msgstr "%s (C-type)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C-variabel)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "funktion"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "medlem"
|
||||
|
||||
@ -172,7 +169,7 @@ msgstr "medlem"
|
||||
msgid "macro"
|
||||
msgstr "makro"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr "type"
|
||||
|
||||
@ -180,59 +177,64 @@ msgstr "type"
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr "Kaster"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++-type)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++-medlem)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++-funktion)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++-klasse)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "klasse"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (metode i %s)"
|
||||
@ -247,7 +249,7 @@ msgstr "%s() (klasse)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (attribut i %s)"
|
||||
@ -256,116 +258,116 @@ msgstr "%s (attribut i %s)"
|
||||
msgid "Arguments"
|
||||
msgstr "Parametre"
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "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"
|
||||
msgstr "attribut"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Variable"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Rejser"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (i modulet %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (i modulet %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (indbygget klasse)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (klasse i %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (metode i %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (statisk metode i %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (statisk metode i %s)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (klassemetode i %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (klassemetode i %s)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (attribut i %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (modul)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Python-modulindeks"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "moduler"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
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"
|
||||
msgstr "undtagelse"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "metode"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "klassemetode"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "modul"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (forældet)"
|
||||
|
||||
@ -397,64 +399,64 @@ msgstr "miljøvariabel; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%skommandolinjetilvalg; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "begreb i ordliste"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "grammatisk element"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "referenceetiket"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "miljøvariabel"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Indeks"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Søgeside"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Baser: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -463,112 +465,117 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr "[kilde]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Todo"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "oprindeligt punkt"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[dok]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Modulkode"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>Kildekode for %s</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr "Oversigt: modulkode"
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr "<h1>Alle moduler, der er kode tilgængelig for</h1>"
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Vær opmærksom"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Forsigtig"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Fare"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Fif"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Vigtigt"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Bemærk"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Se også"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Tip"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Ny i version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Ændret i version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Forældet siden version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "nøgleord"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "operator"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objekt"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "erklæring"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "indbygget funktion"
|
||||
|
||||
@ -696,7 +703,9 @@ msgstr "Sidst opdateret %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <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."
|
||||
msgstr ""
|
||||
"Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(sphinx_version)s."
|
||||
|
||||
#: sphinx/themes/basic/opensearch.xml:4
|
||||
#, python-format
|
||||
@ -723,7 +732,9 @@ msgstr "næste kapitel"
|
||||
msgid ""
|
||||
"Please activate JavaScript to enable the search\n"
|
||||
" 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
|
||||
msgid ""
|
||||
@ -731,25 +742,26 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "søg"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Søgeresultater"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -788,33 +800,33 @@ msgstr "Ændringer i C-API"
|
||||
msgid "Other changes"
|
||||
msgstr "Andre ændringer"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "Permalink til denne definition"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Skjul søgeresultater"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr "Søger"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr "Forbereder søgning..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -831,44 +843,56 @@ msgstr "Sammenfold sidebjælke"
|
||||
msgid "Contents"
|
||||
msgstr "Indhold"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Udgave"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Fare"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Fodnoter"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "fortsat fra forrige side"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# German translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "Abb. %s"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "Tab. %s"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr "Quellcode %s"
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "%s %s Dokumentation"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "siehe %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "siehe auch %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Sonderzeichen"
|
||||
|
||||
@ -58,11 +58,10 @@ msgstr "Sonderzeichen"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d.%m.%Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -72,64 +71,63 @@ msgstr "Builtins"
|
||||
msgid "Module level"
|
||||
msgstr "Modulebene"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d.%m.%Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Stichwortverzeichnis"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "Index"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "weiter"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
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 "
|
||||
msgstr " (in "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Autor des Abschnitts: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Autor des Moduls: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Autor des Quellcode: "
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Autor: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s-%s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Parameter"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Rückgabe"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Rückgabetyp"
|
||||
|
||||
@ -158,12 +156,12 @@ msgstr "%s (C-Typ)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C-Variable)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "Funktion"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "Member"
|
||||
|
||||
@ -171,7 +169,7 @@ msgstr "Member"
|
||||
msgid "macro"
|
||||
msgstr "Makro"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr "Typ"
|
||||
|
||||
@ -179,59 +177,64 @@ msgstr "Typ"
|
||||
msgid "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"
|
||||
msgstr "Wirft"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++-Typ)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++-Member)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++-Funktion)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++-Klasse)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr "%s (C++-Aufzählung)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr "%s (C++-Enumerator)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "Klasse"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr "Aufzählung"
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "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
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (Methode von %s)"
|
||||
@ -246,7 +249,7 @@ msgstr "%s() (Klasse)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (Attribut von %s)"
|
||||
@ -255,116 +258,116 @@ msgstr "%s (Attribut von %s)"
|
||||
msgid "Arguments"
|
||||
msgstr "Parameter"
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr "Wert"
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "Attribut"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Variablen"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Verursacht"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (im Modul %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in 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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (in Modul %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (Builtin-Klasse)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (Klasse in %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (Methode von %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (statische Methode von %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (statische Methode von %s)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (Klassenmethode von %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (Klassenmethode von %s)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (Attribut von %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (Modul)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Python-Modulindex"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "Module"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Veraltet"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "Exception"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "Methode"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "Klassenmethode"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "Modul"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (veraltet)"
|
||||
|
||||
@ -396,64 +399,64 @@ msgstr "Umgebungsvariable; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%sKommandozeilenoption; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "Glossareintrag"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "Grammatik-Token"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "Referenz-Label"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "Umgebungsvariable"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Stichwortverzeichnis"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Suche"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Basisklassen: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %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]"
|
||||
msgstr "[Diagramm]"
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr "(in %s v%s)"
|
||||
@ -462,112 +465,117 @@ msgstr "(in %s v%s)"
|
||||
msgid "[source]"
|
||||
msgstr "[Quellcode]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Zu tun"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "ursprüngliche Eintrag"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[Doku]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Modul-Quellcode"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>Quellcode für %s</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr "Überblick: Modul-Quellcode"
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</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"
|
||||
msgstr "Achtung"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Vorsicht"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Gefahr"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Hinweis"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Wichtig"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Bemerkung"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Siehe auch"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Tipp"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Neu in Version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Geändert in Version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Veraltet ab Version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "Schlüsselwort"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "Objekt"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "Anweisung"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "Builtin-Funktion"
|
||||
|
||||
@ -588,7 +596,9 @@ msgstr "Los"
|
||||
|
||||
#: sphinx/themes/agogo/layout.html:59 sphinx/themes/basic/searchbox.html:20
|
||||
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
|
||||
msgid "Show Source"
|
||||
@ -695,7 +705,9 @@ msgstr "Zuletzt aktualisiert am %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(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
|
||||
#, python-format
|
||||
@ -730,26 +742,30 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "suchen"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Suchergebnisse"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words 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."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"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."
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
msgid "Quick search"
|
||||
@ -787,33 +803,33 @@ msgstr "C API-Änderungen"
|
||||
msgid "Other changes"
|
||||
msgstr "Andere Änderungen"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "Link zu dieser Definition"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Suchergebnisse ausblenden"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr "Suche wird vorbereitet..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
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."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ", in "
|
||||
|
||||
@ -830,44 +846,56 @@ msgstr "Seitenleiste einklappen"
|
||||
msgid "Contents"
|
||||
msgstr "Inhalt"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Link zu diesem Quellcode"
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Link zu diesem Bild"
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Link zu dieser Tabelle"
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Release"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Gefahr"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Fußnoten"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "Fortsetzung der vorherigen Seite"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %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]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Spanish translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "Figura %s"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "Tabla %s"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr "Lista %s"
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "documentación de %s - %s"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "ver %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "ver también %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Símbolos"
|
||||
|
||||
@ -59,11 +58,10 @@ msgstr "Símbolos"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d de %B de %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -73,64 +71,63 @@ msgstr "Funciones incorporadas"
|
||||
msgid "Module level"
|
||||
msgstr "Nivel de módulo"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d de %B de %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Índice General"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "índice"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "siguiente"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "anterior"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr " (en "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Autor de la sección: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Autor del módulo: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Código del autor: "
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Autor: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Parámetros"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Devuelve"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Tipo del valor devuelto"
|
||||
|
||||
@ -159,12 +156,12 @@ msgstr "%s (tipo C)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (variable C)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
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"
|
||||
msgstr "miembro"
|
||||
|
||||
@ -172,7 +169,7 @@ msgstr "miembro"
|
||||
msgid "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"
|
||||
msgstr "tipo"
|
||||
|
||||
@ -180,59 +177,64 @@ msgstr "tipo"
|
||||
msgid "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"
|
||||
msgstr "Lanzamientos"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (tipo C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (miembro C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (función C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (clase C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr "%s (enum de C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr "%s (enumeración de C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "clase"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr "enum"
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
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
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (método de %s)"
|
||||
@ -247,7 +249,7 @@ msgstr "%s() (clase)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (atributo de %s)"
|
||||
@ -256,116 +258,116 @@ msgstr "%s (atributo de %s)"
|
||||
msgid "Arguments"
|
||||
msgstr "Argumentos"
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr "dato"
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "atributo"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Variables"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Muestra"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (en el módulo %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (en el módulo %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (clase incorporada)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (clase en %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (método de %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (método estático de %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (método estático de %s)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (método de clase de %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (método de clase de %s)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (atributo de %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (módulo)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Índice de Módulos Python"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "módulos"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Obsoleto"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "excepción"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "método"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "método de la clase"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "módulo"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (obsoleto)"
|
||||
|
||||
@ -397,64 +399,64 @@ msgstr "variables de entorno; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%sopción en línea de comandos; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "termino de glosario"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "gramática simbólica"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "etiqueta de referencia"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "variables de entorno"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Índice"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Página de Búsqueda"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Clases base: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %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]"
|
||||
msgstr "[gráfica]"
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr "(en %s versión %s)"
|
||||
@ -463,112 +465,117 @@ msgstr "(en %s versión %s)"
|
||||
msgid "[source]"
|
||||
msgstr "[fuente]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Por hacer"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "entrada original"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[documentos]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Código de módulo"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>Código fuente para %s</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
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>"
|
||||
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"
|
||||
msgstr "Atención"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Prudencia"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Peligro"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Consejo"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Importante"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Nota"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Ver también"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Truco"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Advertencia"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Nuevo en la versión %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Distinto en la versión %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Obsoleto desde la versión %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "palabra clave"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "operador"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objeto"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "sentencia"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "función incorporada"
|
||||
|
||||
@ -589,7 +596,9 @@ msgstr "Ir a"
|
||||
|
||||
#: sphinx/themes/agogo/layout.html:59 sphinx/themes/basic/searchbox.html:20
|
||||
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
|
||||
msgid "Show Source"
|
||||
@ -696,7 +705,9 @@ msgstr "Actualizado por última vez en %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <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."
|
||||
msgstr ""
|
||||
"Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(sphinx_version)s."
|
||||
|
||||
#: sphinx/themes/basic/opensearch.xml:4
|
||||
#, python-format
|
||||
@ -723,7 +734,9 @@ msgstr "próximo capítulo"
|
||||
msgid ""
|
||||
"Please activate JavaScript to enable the search\n"
|
||||
" 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
|
||||
msgid ""
|
||||
@ -731,26 +744,30 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "buscar"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Resultados de la búsqueda"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words 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."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"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."
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
msgid "Quick search"
|
||||
@ -788,33 +805,35 @@ msgstr "Cambios en la API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Otros cambios"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Buscando"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr "Preparando búsqueda..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
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 "
|
||||
msgstr ", en "
|
||||
|
||||
@ -831,44 +850,56 @@ msgstr "Contraer barra lateral"
|
||||
msgid "Contents"
|
||||
msgstr "Contenidos"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Enlace permanente a este código fuente"
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Enlace permanente a esta imagen"
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Enlace permanente a esta tabla"
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Publicación"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Peligro"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Notas a pie de página"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "proviene de la página anterior"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %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]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Estonian translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "Joonis %s"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "Tabel %s"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr "Nimekiri %s"
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "%s %s dokumentatsioon"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "vaata %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "vaata ka %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Sümbolid"
|
||||
|
||||
@ -61,11 +58,10 @@ msgstr "Sümbolid"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Pythoni täiustusettepanekud; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d. %B %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -75,64 +71,63 @@ msgstr "Sisseehitatud"
|
||||
msgid "Module level"
|
||||
msgstr "Mooduli tase"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d. %b %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Üldindeks"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "indeks"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "järgmine"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "eelmine"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr " (pealkirjas "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Sektsiooni autor:"
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Mooduli autor:"
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Koodi autor:"
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Autor: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Parameetrid"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Tagastab"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Tagastustüüp"
|
||||
|
||||
@ -161,12 +156,12 @@ msgstr "%s (C tüüp)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C muutuja)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "funktsioon"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "liige"
|
||||
|
||||
@ -174,7 +169,7 @@ msgstr "liige"
|
||||
msgid "macro"
|
||||
msgstr "makro"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr "tüüp"
|
||||
|
||||
@ -182,59 +177,64 @@ msgstr "tüüp"
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++ tüüp)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++ liige)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++ funktsioon)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++ klass)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "klass"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (%s meetod)"
|
||||
@ -249,7 +249,7 @@ msgstr "%s() (klass)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (%s atribuut)"
|
||||
@ -258,116 +258,116 @@ msgstr "%s (%s atribuut)"
|
||||
msgid "Arguments"
|
||||
msgstr "Argumendid"
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr "andmed"
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "atribuut"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Muutujad"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (moodulis %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (moodulis %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (sisseehitatud klass)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (klass moodulis %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (%s.%s meetod)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (%s.%s staatiline meetod)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (%s staatiline meetod)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (klassi %s.%s meetod)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (klassi %s meetod)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (%s.%s atribuut)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (moodul)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Pythoni moodulite indeks"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "moodulid"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Iganenud"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "erind"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "meetod"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "klassi meetod"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "moodul"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (iganenud)"
|
||||
|
||||
@ -399,64 +399,64 @@ msgstr "keskkonnamuutuja; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%s käsurea valik; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "sõnastiku termin"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "grammatika märk"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "viite pealkiri"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "keskkonnamuutuja"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Indeks"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Otsinguleht"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Pärineb: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :class:`%s`"
|
||||
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
|
||||
msgid "[graph: %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]"
|
||||
msgstr "[joonis]"
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -465,112 +465,117 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr "[lähtekood]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Teha"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "algne kirje"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[dokumentatsioon]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Mooduli kood"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>%s lähtekood</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr "Ülevaade: mooduli kood"
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr "<h1>Kõik lähtekoodiga moodulid</h1>"
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Tähelepanu"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Ettevaatust"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Oht"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Viga"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Vihje"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Tähtis"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Märkus"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Vaata ka"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Nõuanne"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Hoiatus"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Uus versioonis %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Muudetud versioonis %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Iganenud alates versioonist %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "võtmesõna"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "operaator"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objekt"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "lause"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "sisseehitatud funktsioon"
|
||||
|
||||
@ -698,7 +703,9 @@ msgstr "Viimati uuendatud %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(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
|
||||
#, python-format
|
||||
@ -733,26 +740,29 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "otsi"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Otsingu tulemused"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words 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."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"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."
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
msgid "Quick search"
|
||||
@ -790,33 +800,33 @@ msgstr "C API muutused"
|
||||
msgid "Other changes"
|
||||
msgstr "Ülejäänud muutused"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "Püsiviit sellele definitsioonile"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Varja otsingu tulemused"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr "Otsimine"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr "Otsingu ettevalmistamine..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
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 "
|
||||
msgstr ""
|
||||
|
||||
@ -833,44 +843,56 @@ msgstr "Varja külgriba"
|
||||
msgid "Contents"
|
||||
msgstr "Sisukord"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Püsiviit sellele programmikoodile"
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Püsiviit sellele pildile"
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Püsiviit sellele tabelile"
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Redaktsioon"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Oht"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Joonealused märkused"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "jätk eelmisele leheküljele"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %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]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Basque translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "%s %s dokumentazioa"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "%s ikusi"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "ikusi %s baita ere"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr ""
|
||||
|
||||
@ -58,11 +58,10 @@ msgstr ""
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Hobekuntza Proposamena; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%Y %B %d"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -72,64 +71,63 @@ msgstr ""
|
||||
msgid "Module level"
|
||||
msgstr "Modulu maila"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%Y %b %d"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Indize orokorra"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "indizea"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "hurrengoa"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "aurrekoa"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr " (hemen: "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Atalaren egilea: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Moduluaren egilea: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Kodearen egilea: "
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Egilea:"
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Parametroak"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Itzultzen du"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Itzulketa mota"
|
||||
|
||||
@ -158,12 +156,12 @@ msgstr "%s (C mota)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C aldagaia)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "funtzioa"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "partaidea"
|
||||
|
||||
@ -171,7 +169,7 @@ msgstr "partaidea"
|
||||
msgid "macro"
|
||||
msgstr "makroa"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr "mota"
|
||||
|
||||
@ -179,59 +177,64 @@ msgstr "mota"
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr "Jaurtitzen du"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++ mota)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++ partaidea)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++ funtzioa)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++ klasea)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "klasea"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (%s metodoa)"
|
||||
@ -246,7 +249,7 @@ msgstr "%s() (klasea)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (%s atributua)"
|
||||
@ -255,116 +258,116 @@ msgstr "%s (%s atributua)"
|
||||
msgid "Arguments"
|
||||
msgstr "Argumentuak"
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr "datuak"
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "atributua"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Aldagaiak"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Goratzen du"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (%s moduluan)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
||||
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (%s moduluan)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (klasea %s-(e)n)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (%s.%s metodoa)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (%s.%s metodo estatikoa)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (%s metodo estatikoa)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (%s.%s klaseko metodoa)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (%s klaseko metodoa)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (%s.%s atributua)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (modulua)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Python moduluen indizea"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "moduluak"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Zaharkitua"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "salbuespena"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "metodoa"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "klaseko metodoa"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "modulua"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (zaharkitua)"
|
||||
|
||||
@ -396,64 +399,64 @@ msgstr "inguruneko aldagaia; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%skomando lerroko aukera; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "glosarioko terminoa"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "gramatikako token-a"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "erreferentzia etiketa"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "inguruneko aldagaia"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Indizea"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Bilaketa orria"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :class:`%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
||||
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||
#, python-format
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -462,112 +465,117 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr "[iturburua]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
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
|
||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "jatorrizko sarrera"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[dokumentazioa]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Moduluko kodea"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>%s(r)en iturburu kodea</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr "Gainbegirada: moduluko kodea"
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr "<h1>Kodea eskuragarri duten modulu guztiak</h1>"
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Adi"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Kontuz"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Arriskua"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Errorea"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Argibidea"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Garrantzitsua"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Nota"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Ikusi baita ere"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Iradokizuna"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Kontuz"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Berria %s bertsioan"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "%s bertsioan aldatuta"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "%s bertsiotik aurrera zaharkituta"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "gako-hitza"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "eragiketa"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objetua"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "sententzia"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr ""
|
||||
|
||||
@ -695,7 +703,9 @@ msgstr "Azken aldaketa: %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(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
|
||||
#, python-format
|
||||
@ -730,25 +740,26 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "bilatu"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Bilaketa emaitzak"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -787,33 +798,33 @@ msgstr "C API aldaketak"
|
||||
msgid "Other changes"
|
||||
msgstr "Beste aldaketak"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "Definizio honetarako esteka iraunkorra"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Bilaketa bat-etortzeak ezkutatu"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -830,44 +841,59 @@ msgstr "Alboko barra tolestu"
|
||||
msgid "Contents"
|
||||
msgstr "Edukiak"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Argitalpena"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Arriskua"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Oin-oharrak"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "aurreko orritik jarraitzen du"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Persian translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# This file is distributed under the same license as the Sphinx project.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr ""
|
||||
|
||||
@ -57,10 +58,9 @@ msgstr ""
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
@ -71,64 +71,63 @@ msgstr "درونی سازی"
|
||||
msgid "Module level"
|
||||
msgstr "در سطح ماژول"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "فهرست کلی"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "فهرست"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "بعدی"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "قبلی"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr ":نویسنده این بخش"
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "نویسنده این ماژول:"
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr ":نویسنده"
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "پارامترها"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "نوع برگشتی"
|
||||
|
||||
@ -157,12 +156,12 @@ msgstr "%s (C نوع)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C متغیر)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
@ -170,7 +169,7 @@ msgstr ""
|
||||
msgid "macro"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr ""
|
||||
|
||||
@ -178,59 +177,64 @@ msgstr ""
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr "%s() (توابع درونی)"
|
||||
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (%s متد)"
|
||||
@ -245,7 +249,7 @@ msgstr ""
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (%s مشخصه)"
|
||||
@ -254,116 +258,116 @@ msgstr "%s (%s مشخصه)"
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "برانگیختن"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (در ماژول %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr "%s (متغیر درونی)"
|
||||
|
||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
||||
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (در ماژول %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (کلاس درونی)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (کلاس در %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (%s.%s متد)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (%s.%s متد استاتیک)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (%s متد استاتیک)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (%s.%s مشخصه)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (ماژول)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "ماژول ها"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "منسوخ شده"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "استثناء"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
||||
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||
msgid "module"
|
||||
msgstr "ماژول"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr ""
|
||||
|
||||
@ -395,64 +399,64 @@ msgstr "%s متغیرهای عمومی؛"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%sگزینه خط فرمان; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "فهرست"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "صفحه جستجو"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :class:`%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
||||
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||
#, python-format
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -461,112 +465,116 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "در دست انجام"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#: sphinx/ext/todo.py:129
|
||||
msgid "<<original entry>>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:132
|
||||
#, python-format
|
||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "دقت"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "ملاحظه"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "خطر"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "خطا"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "تذکر"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "مهم"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "توجه"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "همچنین ملاحظه نمائید"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "نکته"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "هشدار"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "جدید در نسخه %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "تغییر داده شده در نسخه %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "منسوخ شده از نسخه %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "کلمه کلیدی"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "عملگر"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "شیء"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "گذاره"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "توابع درونی"
|
||||
|
||||
@ -694,7 +702,9 @@ msgstr ". %(last_updated)s آخرین بروز رسانی در"
|
||||
msgid ""
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(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
|
||||
#, python-format
|
||||
@ -731,23 +741,20 @@ msgid ""
|
||||
" containing fewer words won't appear in the result list."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:39
|
||||
#: sphinx/themes/basic/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "جستجو"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "نتایج جستجو"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -786,33 +793,33 @@ msgstr "C API تغییرات"
|
||||
msgid "Other changes"
|
||||
msgstr "دگر تغییرات"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "لینک ثابت به این تعریف"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "عدم نمایش نتایج یافت شده"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -829,44 +836,59 @@ msgstr ""
|
||||
msgid "Contents"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "انتشار"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "خطر"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
||||
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||
#, python-format
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Finnish translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# This file is distributed under the same license as the Sphinx project.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||
#
|
||||
# Translators:
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr ""
|
||||
|
||||
@ -58,11 +58,10 @@ msgstr ""
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d.%m.%Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -72,64 +71,63 @@ msgstr ""
|
||||
msgid "Module level"
|
||||
msgstr "Moduulitaso"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d.%m.%Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Yleinen sisällysluettelo"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "hakemisto"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr ">"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "<"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Luvun kirjoittaja: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Moduulin kirjoittaja: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Tekijä: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr ""
|
||||
|
||||
@ -158,12 +156,12 @@ msgstr ""
|
||||
msgid "%s (C variable)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
@ -171,7 +169,7 @@ msgstr ""
|
||||
msgid "macro"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr ""
|
||||
|
||||
@ -179,59 +177,63 @@ msgstr ""
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr ""
|
||||
@ -246,7 +248,7 @@ msgstr ""
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr ""
|
||||
@ -255,116 +257,116 @@ msgstr ""
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
||||
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (moduuli)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "moduulit"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Poistettu"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
||||
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||
msgid "module"
|
||||
msgstr "moduuli"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (poistettu)"
|
||||
|
||||
@ -396,64 +398,64 @@ msgstr ""
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Sisällysluettelo"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Etsi sivu"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :class:`%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
||||
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||
#, python-format
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -462,112 +464,116 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Tehtävä vielä"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#: sphinx/ext/todo.py:129
|
||||
msgid "<<original entry>>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:132
|
||||
#, python-format
|
||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Huom"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Varoitus"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Vaara"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Vihje"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Tärkeä"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Muista"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Katso myös"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Vihje"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Varoitus"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Uusi versiossa %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Muutettu versiossa %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Poistettu versiosta %s alkaen"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr ""
|
||||
|
||||
@ -732,23 +738,20 @@ msgid ""
|
||||
" containing fewer words won't appear in the result list."
|
||||
msgstr "Anna hakusanat kokonaan, osasanoilla ei haeta."
|
||||
|
||||
#: sphinx/themes/basic/search.html:39
|
||||
#: sphinx/themes/basic/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "etsi"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Etsinnän tulos"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -787,33 +790,33 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Piilota löydetyt"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -830,44 +833,59 @@ msgstr ""
|
||||
msgid "Contents"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Vaara"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
||||
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||
#, python-format
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# French translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "Fig. %s"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "Tableau %s"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr "Code source %s"
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "documentation %s %s"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "voir %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "voir aussi %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Symboles"
|
||||
|
||||
@ -65,11 +58,10 @@ msgstr "Symboles"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d %B %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -79,64 +71,63 @@ msgstr "Fonctions de base"
|
||||
msgid "Module level"
|
||||
msgstr "Module"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d %b %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Index général"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "index"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "suivant"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
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 "
|
||||
msgstr "(dans"
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Auteur de la section : "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Auteur du module : "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Auteur du code :"
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Auteur : "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Paramètres"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Retourne"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Type retourné"
|
||||
|
||||
@ -165,12 +156,12 @@ msgstr "%s (type C)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (variable C)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "fonction"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "membre"
|
||||
|
||||
@ -178,7 +169,7 @@ msgstr "membre"
|
||||
msgid "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"
|
||||
msgstr "type"
|
||||
|
||||
@ -186,59 +177,64 @@ msgstr "type"
|
||||
msgid "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"
|
||||
msgstr "Déclenche"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (type C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (membre C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (fonction C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (classe C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr "%s (énumération C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr "%s (énumérateur C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "classe"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr "énumération"
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
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
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (méthode %s)"
|
||||
@ -253,7 +249,7 @@ msgstr "%s() (classe)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (attribut %s)"
|
||||
@ -262,116 +258,116 @@ msgstr "%s (attribut %s)"
|
||||
msgid "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"
|
||||
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"
|
||||
msgstr "attribut"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Variables"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Lève"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (dans le module %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (dans le module %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (classe de base)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (classe dans %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (méthode %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (méthode statique %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (méthode statique %s)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (méthode de la classe %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (méthode de la classe %s)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (attribut %s.%s)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (module)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Index des modules Python"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "modules"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
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"
|
||||
msgstr "exception"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "méthode"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "méthode de classe"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "module"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (obsolète)"
|
||||
|
||||
@ -403,64 +399,64 @@ msgstr "variable d'environnement; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%s option de ligne de commande; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "terme du glossaire"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "élément de grammaire"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "étiquette de référence"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "variable d'environnement"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Index"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Page de recherche"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr "Bases: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %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]"
|
||||
msgstr "[graphe]"
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr "(disponible dans %s v%s)"
|
||||
@ -469,112 +465,117 @@ msgstr "(disponible dans %s v%s)"
|
||||
msgid "[source]"
|
||||
msgstr "[source]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "À faire"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "entrée originale"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[docs]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Code du module"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>Code source de %s</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
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>"
|
||||
msgstr "<h1>Modules pour lesquels le code est disponible</h1>"
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Attention"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Prudence"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Danger"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Indice"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Important"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Note"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Voir aussi"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Astuce"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Avertissement"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Nouveau dans la version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Modifié dans la version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Obsolète depuis la version %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "mot-clé"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "opérateur"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objet"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "état"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "fonction de base"
|
||||
|
||||
@ -702,7 +703,9 @@ msgstr "Mis à jour le %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <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."
|
||||
msgstr ""
|
||||
"Créé avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(sphinx_version)s."
|
||||
|
||||
#: sphinx/themes/basic/opensearch.xml:4
|
||||
#, python-format
|
||||
@ -737,26 +740,32 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "rechercher"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Résultats de la recherche"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words 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."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"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."
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
msgid "Quick search"
|
||||
@ -794,33 +803,35 @@ msgstr "Modifications de l'API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Autres modifications"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Recherche en cours"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr "Préparation de la recherche..."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
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 "
|
||||
msgstr ", dans"
|
||||
|
||||
@ -837,44 +848,56 @@ msgstr "Réduire la barre latérale"
|
||||
msgid "Contents"
|
||||
msgstr "Contenu"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Lien permanent vers ce code"
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Lien permanent vers cette image"
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Lien permanent vers ce tableau"
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Version"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Danger"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Notes de bas de page"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "Suite de la page précédente"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[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]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Hebrew translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# This file is distributed under the same license as the Sphinx project.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||
#
|
||||
# Translators:
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "תיעוד %s %s"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "ראה %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "ראה גם %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr ""
|
||||
|
||||
@ -58,10 +58,9 @@ msgstr ""
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
@ -72,64 +71,63 @@ msgstr ""
|
||||
msgid "Module level"
|
||||
msgstr "רמת המודול"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "אינדקס"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "הבא"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "הקודם"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr "(בתוך"
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "מחבר הקטע:"
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "מחבר המודול:"
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "מחבר הקוד:"
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "מחבר:"
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "פרמטרים"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr ""
|
||||
|
||||
@ -158,12 +156,12 @@ msgstr ""
|
||||
msgid "%s (C variable)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "פונקציה"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
@ -171,7 +169,7 @@ msgstr ""
|
||||
msgid "macro"
|
||||
msgstr "מאקרו"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr ""
|
||||
|
||||
@ -179,59 +177,64 @@ msgstr ""
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (פונקציית C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (מחלקת C++)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "מחלקה"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:280
|
||||
#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282
|
||||
#, python-format
|
||||
msgid "%s() (built-in function)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:344
|
||||
#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346
|
||||
#, python-format
|
||||
msgid "%s() (%s method)"
|
||||
msgstr ""
|
||||
@ -246,7 +249,7 @@ msgstr ""
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr ""
|
||||
@ -255,116 +258,116 @@ msgstr ""
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "משתנים"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:285 sphinx/domains/python.py:376
|
||||
#: sphinx/domains/python.py:287 sphinx/domains/python.py:378
|
||||
#, python-format
|
||||
msgid "%s (in module %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:595 sphinx/locale/__init__.py:177
|
||||
#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179
|
||||
msgid "module"
|
||||
msgstr "מודול"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr ""
|
||||
|
||||
@ -396,64 +399,64 @@ msgstr "משתנה סביבה; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%sאופציית שורת הפקודה ; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "משתנה סביבה"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "אינדקס"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "דף חיפוש"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :class:`%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:293 sphinx/ext/graphviz.py:301
|
||||
#: sphinx/ext/graphviz.py:307 sphinx/ext/graphviz.py:316
|
||||
#, python-format
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -462,112 +465,117 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr "[מקור]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "לעשות"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "הטקסט המקורי"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[תיעוד]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>הראה קוד מקור ל %s</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr "<h1>כל המודולים שיש להם קוד זמין</h1>"
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "תשומת לב"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "זהירות"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "סכנה"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "שגיאה"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "רמז"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "חשוב"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "הערה"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "ראה גם"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "טיפ"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "אזהרה"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "חדש בגרסה %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "השתנה בגרסה %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr " לא מומלץ לשימוש מגרסה %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "מילת מפתח"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr ""
|
||||
|
||||
@ -722,7 +730,9 @@ msgstr "פרק הבא"
|
||||
msgid ""
|
||||
"Please activate JavaScript to enable the search\n"
|
||||
" functionality."
|
||||
msgstr "אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n החיפוש."
|
||||
msgstr ""
|
||||
"אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n"
|
||||
" החיפוש."
|
||||
|
||||
#: sphinx/themes/basic/search.html:32
|
||||
msgid ""
|
||||
@ -732,23 +742,20 @@ msgid ""
|
||||
" containing fewer words won't appear in the result list."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/search.html:39
|
||||
#: sphinx/themes/basic/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "חיפוש"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "תוצאות החיפוש"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -787,33 +794,33 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr "שינויים אחרים"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "קישור קבוע להגדרה זו"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "הסתר תוצאות חיפוש"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -830,44 +837,56 @@ msgstr "כווץ סרגל צד"
|
||||
msgid "Contents"
|
||||
msgstr "תוכן"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "מהדורה"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "סכנה"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "הערות שוליים"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "המשך מעמוד קודם"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
msgstr "המשך בעמוד הבא"
|
||||
|
||||
#: sphinx/writers/manpage.py:223 sphinx/writers/text.py:541
|
||||
#: sphinx/writers/manpage.py:275 sphinx/writers/text.py:582
|
||||
#, python-format
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Croatian translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# This file is distributed under the same license as the Sphinx project.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
||||
#
|
||||
# Translators:
|
||||
# Mario Šarić, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "Sl. %s"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "Tablica %s"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr "Ispis %s"
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "%s %s dokumentacija"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "pogledajte %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "također pogledajte %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Simboli"
|
||||
|
||||
@ -58,11 +59,10 @@ msgstr "Simboli"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Enhancement Proposals; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%d %B, %Y"
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -72,64 +72,63 @@ msgstr "Ugrađeni dijelovi"
|
||||
msgid "Module level"
|
||||
msgstr "Nivo modula"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%d %b, %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Opceniti abecedni indeks"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "abecedni indeks"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "naprijed"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
msgstr "nazad"
|
||||
|
||||
#: sphinx/builders/latex.py:144 sphinx/builders/texinfo.py:198
|
||||
#: sphinx/builders/latex.py:165 sphinx/builders/texinfo.py:199
|
||||
msgid " (in "
|
||||
msgstr " (u "
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Autor sekcije: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Autor modula: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Autor koda:"
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Autor:"
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Parametri"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Vraća"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Vraća tip"
|
||||
|
||||
@ -158,12 +157,12 @@ msgstr "%s (C tip)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C varijabla)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
msgstr "funkcija"
|
||||
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:2681
|
||||
#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954
|
||||
msgid "member"
|
||||
msgstr "član"
|
||||
|
||||
@ -171,7 +170,7 @@ msgstr "član"
|
||||
msgid "macro"
|
||||
msgstr "makro"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr "tip"
|
||||
|
||||
@ -179,59 +178,64 @@ msgstr "tip"
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr "Baca (iznimke)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++ tip)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++ član)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++ funkcija)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++ razred)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr "%s (C++ enum)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr "%s (C++ enumerator)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "razred"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr "enum"
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "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
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (%s metoda)"
|
||||
@ -246,7 +250,7 @@ msgstr "%s() (razred)"
|
||||
msgid "%s (global variable or constant)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:382
|
||||
#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384
|
||||
#, python-format
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (%s atribut)"
|
||||
@ -255,116 +259,116 @@ msgstr "%s (%s atribut)"
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "atribut"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Podiže"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (u modulu %s)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in 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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (u modulu %s)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (ugrađen razred)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (razred u %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (%s.%s metoda)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (%s.%s statična metoda)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (%s statična metoda)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (%s.%s atribut)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (modul)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "Moduli"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Zastarjelo"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "izuzetak"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "modul"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (zastarjelo)"
|
||||
|
||||
@ -396,64 +400,64 @@ msgstr "varijabla okruženja; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%scommand line parameter; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "varijabla okruženja"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Abecedni popis"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Tražilica"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Osnove: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[graph: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/graphviz.py:295 sphinx/ext/graphviz.py:303
|
||||
#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318
|
||||
msgid "[graph]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr ""
|
||||
@ -462,112 +466,116 @@ msgstr ""
|
||||
msgid "[source]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Todo"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#: sphinx/ext/todo.py:129
|
||||
msgid "<<original entry>>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:132
|
||||
#, python-format
|
||||
msgid "(The <<original entry>> is located in %s, line %d.)"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/ext/viewcode.py:205
|
||||
#: sphinx/ext/viewcode.py:209
|
||||
msgid "<h1>All modules for which code is available</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Pozor"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Pažnja"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Opasnost"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Savjet"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Važno"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Napomena"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Pogledaj i"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Savjet"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Novo u verziji %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "Promijenjeno u verziji %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Zastarijelo od verzije %s"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "ključna riječ"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "operator"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objekt"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "izjava"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "ugrađen funkcije"
|
||||
|
||||
@ -695,7 +703,9 @@ msgstr "Zadnji put ažurirano %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <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."
|
||||
msgstr ""
|
||||
"Izrađeno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(sphinx_version)s."
|
||||
|
||||
#: sphinx/themes/basic/opensearch.xml:4
|
||||
#, python-format
|
||||
@ -722,7 +732,9 @@ msgstr "slijedeće poglavje"
|
||||
msgid ""
|
||||
"Please activate JavaScript to enable the search\n"
|
||||
" 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
|
||||
msgid ""
|
||||
@ -730,25 +742,26 @@ msgid ""
|
||||
" 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."
|
||||
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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "traži"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Rezultati pretrage"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words are"
|
||||
" spelled correctly and that you've selected enough categories."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"are spelled correctly and that you've selected enough categories."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
@ -787,33 +800,33 @@ msgstr "C API changes"
|
||||
msgid "Other changes"
|
||||
msgstr "Ostale promjene"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
msgstr "Link na tu definiciju"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:205
|
||||
#: sphinx/themes/basic/static/doctools.js_t:208
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Sakrij rezultate pretrage"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:119
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:121
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:285
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:286
|
||||
#, python-format
|
||||
msgid "Search finished, found %s page(s) matching the search query."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ""
|
||||
|
||||
@ -830,44 +843,59 @@ msgstr ""
|
||||
msgid "Contents"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Distribucija"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Opasnost"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "nastavak sa prethodne stranice"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[image: %s]"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/manpage.py:224 sphinx/writers/text.py:542
|
||||
#: sphinx/writers/manpage.py:276 sphinx/writers/text.py:583
|
||||
msgid "[image]"
|
||||
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.
|
||||
# Copyright (C) 2015 ORGANIZATION
|
||||
# Hungarian translations for Sphinx.
|
||||
# Copyright (C) 2016 ORGANIZATION
|
||||
# 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 ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\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"
|
||||
"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"
|
||||
"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
|
||||
msgid "Fig. %s"
|
||||
msgstr "%s. ábra"
|
||||
|
||||
#: sphinx/config.py:81
|
||||
#: sphinx/config.py:85
|
||||
#, python-format
|
||||
msgid "Table %s"
|
||||
msgstr "%s. táblázat"
|
||||
|
||||
#: sphinx/config.py:82
|
||||
#: sphinx/config.py:86
|
||||
#, python-format
|
||||
msgid "Listing %s"
|
||||
msgstr "%s. felsorlás"
|
||||
|
||||
#: sphinx/config.py:89
|
||||
#: sphinx/config.py:93
|
||||
#, python-format
|
||||
msgid "%s %s documentation"
|
||||
msgstr "%s %s dokumentáció"
|
||||
|
||||
#: sphinx/environment.py:1880
|
||||
#: sphinx/environment.py:1815
|
||||
#, python-format
|
||||
msgid "see %s"
|
||||
msgstr "lásd %s"
|
||||
|
||||
#: sphinx/environment.py:1883
|
||||
#: sphinx/environment.py:1819
|
||||
#, python-format
|
||||
msgid "see also %s"
|
||||
msgstr "lásd még %s"
|
||||
|
||||
#: sphinx/environment.py:1941
|
||||
#: sphinx/environment.py:1879
|
||||
msgid "Symbols"
|
||||
msgstr "Szimbólumok"
|
||||
|
||||
@ -59,11 +58,10 @@ msgstr "Szimbólumok"
|
||||
msgid "Python Enhancement Proposals; PEP %s"
|
||||
msgstr "Python Fejlesztési Javaslatok; PEP %s"
|
||||
|
||||
#: sphinx/transforms.py:58 sphinx/writers/latex.py:212
|
||||
#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:221
|
||||
#, python-format
|
||||
msgid "%B %d, %Y"
|
||||
msgstr "%Y. %m. %d."
|
||||
#: sphinx/transforms.py:56 sphinx/writers/latex.py:357
|
||||
#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222
|
||||
msgid "MMMM dd, YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/changes.py:75
|
||||
msgid "Builtins"
|
||||
@ -73,64 +71,63 @@ msgstr "Beépített"
|
||||
msgid "Module level"
|
||||
msgstr "Modul szint"
|
||||
|
||||
#: sphinx/builders/html.py:291
|
||||
#, python-format
|
||||
msgid "%b %d, %Y"
|
||||
msgstr "%b %d, %Y"
|
||||
#: sphinx/builders/html.py:295
|
||||
msgid "MMM dd, YYYY"
|
||||
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"
|
||||
msgstr "Általános tárgymutató"
|
||||
|
||||
#: sphinx/builders/html.py:310
|
||||
#: sphinx/builders/html.py:315
|
||||
msgid "index"
|
||||
msgstr "nyitóoldal"
|
||||
|
||||
#: sphinx/builders/html.py:371
|
||||
#: sphinx/builders/html.py:376
|
||||
msgid "next"
|
||||
msgstr "következő"
|
||||
|
||||
#: sphinx/builders/html.py:380
|
||||
#: sphinx/builders/html.py:385
|
||||
msgid "previous"
|
||||
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 "
|
||||
msgstr " ("
|
||||
|
||||
#: sphinx/directives/other.py:150
|
||||
#: sphinx/directives/other.py:149
|
||||
msgid "Section author: "
|
||||
msgstr "Fejezet szerző: "
|
||||
|
||||
#: sphinx/directives/other.py:152
|
||||
#: sphinx/directives/other.py:151
|
||||
msgid "Module author: "
|
||||
msgstr "Modul szerző: "
|
||||
|
||||
#: sphinx/directives/other.py:154
|
||||
#: sphinx/directives/other.py:153
|
||||
msgid "Code author: "
|
||||
msgstr "Kód szerző: "
|
||||
|
||||
#: sphinx/directives/other.py:156
|
||||
#: sphinx/directives/other.py:155
|
||||
msgid "Author: "
|
||||
msgstr "Szerző: "
|
||||
|
||||
#: sphinx/domains/__init__.py:273
|
||||
#: sphinx/domains/__init__.py:275
|
||||
#, python-format
|
||||
msgid "%s %s"
|
||||
msgstr "%s %s"
|
||||
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:2408
|
||||
#: sphinx/domains/python.py:122
|
||||
#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605
|
||||
#: sphinx/domains/python.py:124
|
||||
msgid "Parameters"
|
||||
msgstr "Paraméterek"
|
||||
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:2414
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:134
|
||||
#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614
|
||||
#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136
|
||||
msgid "Returns"
|
||||
msgstr "Visszatérési érték"
|
||||
|
||||
#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130
|
||||
#: sphinx/domains/python.py:136
|
||||
#: sphinx/domains/python.py:138
|
||||
msgid "Return type"
|
||||
msgstr "Visszatérés típusa"
|
||||
|
||||
@ -159,12 +156,12 @@ msgstr "%s (C típus)"
|
||||
msgid "%s (C variable)"
|
||||
msgstr "%s (C változó)"
|
||||
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:2680
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:587
|
||||
#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953
|
||||
#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589
|
||||
msgid "function"
|
||||
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"
|
||||
msgstr "tag"
|
||||
|
||||
@ -172,7 +169,7 @@ msgstr "tag"
|
||||
msgid "macro"
|
||||
msgstr "makró"
|
||||
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:2682
|
||||
#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955
|
||||
msgid "type"
|
||||
msgstr "típus"
|
||||
|
||||
@ -180,59 +177,64 @@ msgstr "típus"
|
||||
msgid "variable"
|
||||
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"
|
||||
msgstr "Dob"
|
||||
|
||||
#: sphinx/domains/cpp.py:2518
|
||||
#: sphinx/domains/cpp.py:3733
|
||||
#, python-format
|
||||
msgid "%s (C++ type)"
|
||||
msgstr "%s (C++ típus)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2531
|
||||
#: sphinx/domains/cpp.py:3744
|
||||
#, python-format
|
||||
msgid "%s (C++ member)"
|
||||
msgstr "%s (C++ tagváltozó)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2543
|
||||
#: sphinx/domains/cpp.py:3755
|
||||
#, python-format
|
||||
msgid "%s (C++ function)"
|
||||
msgstr "%s (C++ függvény)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2555
|
||||
#: sphinx/domains/cpp.py:3766
|
||||
#, python-format
|
||||
msgid "%s (C++ class)"
|
||||
msgstr "%s (C++ osztály)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2579
|
||||
#: sphinx/domains/cpp.py:3786
|
||||
#, python-format
|
||||
msgid "%s (C++ enum)"
|
||||
msgstr "%s (C++ enumeráció)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2617
|
||||
#: sphinx/domains/cpp.py:3816
|
||||
#, python-format
|
||||
msgid "%s (C++ enumerator)"
|
||||
msgstr "%s (C++ enumerátor)"
|
||||
|
||||
#: sphinx/domains/cpp.py:2679 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:589
|
||||
#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165
|
||||
#: sphinx/domains/python.py:591
|
||||
msgid "class"
|
||||
msgstr "osztály"
|
||||
|
||||
#: sphinx/domains/cpp.py:2683
|
||||
#: sphinx/domains/cpp.py:3956
|
||||
msgid "enum"
|
||||
msgstr "enumeráció"
|
||||
|
||||
#: sphinx/domains/cpp.py:2684
|
||||
#: sphinx/domains/cpp.py:3957
|
||||
msgid "enumerator"
|
||||
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
|
||||
msgid "%s() (built-in function)"
|
||||
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
|
||||
msgid "%s() (%s method)"
|
||||
msgstr "%s() (%s metódus)"
|
||||
@ -247,7 +249,7 @@ msgstr "%s() (osztály)"
|
||||
msgid "%s (global variable or constant)"
|
||||
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
|
||||
msgid "%s (%s attribute)"
|
||||
msgstr "%s (%s attribútum)"
|
||||
@ -256,116 +258,116 @@ msgstr "%s (%s attribútum)"
|
||||
msgid "Arguments"
|
||||
msgstr "Argumentum"
|
||||
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:588
|
||||
#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590
|
||||
msgid "data"
|
||||
msgstr "adat"
|
||||
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:594
|
||||
#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596
|
||||
msgid "attribute"
|
||||
msgstr "attribútum"
|
||||
|
||||
#: sphinx/domains/python.py:127
|
||||
#: sphinx/domains/python.py:129
|
||||
msgid "Variables"
|
||||
msgstr "Változók"
|
||||
|
||||
#: sphinx/domains/python.py:131
|
||||
#: sphinx/domains/python.py:133
|
||||
msgid "Raises"
|
||||
msgstr "Elmel"
|
||||
|
||||
#: sphinx/domains/python.py:281 sphinx/domains/python.py:338
|
||||
#: sphinx/domains/python.py:350 sphinx/domains/python.py:363
|
||||
#: sphinx/domains/python.py:283 sphinx/domains/python.py:340
|
||||
#: sphinx/domains/python.py:352 sphinx/domains/python.py:365
|
||||
#, python-format
|
||||
msgid "%s() (in module %s)"
|
||||
msgstr "%s() (%s modulban)"
|
||||
|
||||
#: sphinx/domains/python.py:284
|
||||
#: sphinx/domains/python.py:286
|
||||
#, python-format
|
||||
msgid "%s (built-in variable)"
|
||||
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
|
||||
msgid "%s (in module %s)"
|
||||
msgstr "%s (%s modulban)"
|
||||
|
||||
#: sphinx/domains/python.py:301
|
||||
#: sphinx/domains/python.py:303
|
||||
#, python-format
|
||||
msgid "%s (built-in class)"
|
||||
msgstr "%s (beépített osztály)"
|
||||
|
||||
#: sphinx/domains/python.py:302
|
||||
#: sphinx/domains/python.py:304
|
||||
#, python-format
|
||||
msgid "%s (class in %s)"
|
||||
msgstr "%s (osztály %s)"
|
||||
|
||||
#: sphinx/domains/python.py:342
|
||||
#: sphinx/domains/python.py:344
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s method)"
|
||||
msgstr "%s() (%s.%s metódus)"
|
||||
|
||||
#: sphinx/domains/python.py:354
|
||||
#: sphinx/domains/python.py:356
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s static method)"
|
||||
msgstr "%s() (%s.%s statikus metódus)"
|
||||
|
||||
#: sphinx/domains/python.py:357
|
||||
#: sphinx/domains/python.py:359
|
||||
#, python-format
|
||||
msgid "%s() (%s static method)"
|
||||
msgstr "%s() (%s statikus metódus)"
|
||||
|
||||
#: sphinx/domains/python.py:367
|
||||
#: sphinx/domains/python.py:369
|
||||
#, python-format
|
||||
msgid "%s() (%s.%s class method)"
|
||||
msgstr "%s() (%s.%s osztály metódus)"
|
||||
|
||||
#: sphinx/domains/python.py:370
|
||||
#: sphinx/domains/python.py:372
|
||||
#, python-format
|
||||
msgid "%s() (%s class method)"
|
||||
msgstr "%s() (%s osztály metódus)"
|
||||
|
||||
#: sphinx/domains/python.py:380
|
||||
#: sphinx/domains/python.py:382
|
||||
#, python-format
|
||||
msgid "%s (%s.%s attribute)"
|
||||
msgstr "%s (%s.%s attribútum)"
|
||||
|
||||
#: sphinx/domains/python.py:461
|
||||
#: sphinx/domains/python.py:463
|
||||
#, python-format
|
||||
msgid "%s (module)"
|
||||
msgstr "%s (modul)"
|
||||
|
||||
#: sphinx/domains/python.py:518
|
||||
#: sphinx/domains/python.py:520
|
||||
msgid "Python Module Index"
|
||||
msgstr "Python Modul Mutató"
|
||||
|
||||
#: sphinx/domains/python.py:519
|
||||
#: sphinx/domains/python.py:521
|
||||
msgid "modules"
|
||||
msgstr "modulok"
|
||||
|
||||
#: sphinx/domains/python.py:565
|
||||
#: sphinx/domains/python.py:567
|
||||
msgid "Deprecated"
|
||||
msgstr "Elavult"
|
||||
|
||||
#: sphinx/domains/python.py:590 sphinx/locale/__init__.py:181
|
||||
#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183
|
||||
msgid "exception"
|
||||
msgstr "kivétel"
|
||||
|
||||
#: sphinx/domains/python.py:591
|
||||
#: sphinx/domains/python.py:593
|
||||
msgid "method"
|
||||
msgstr "metódus"
|
||||
|
||||
#: sphinx/domains/python.py:592
|
||||
#: sphinx/domains/python.py:594
|
||||
msgid "class method"
|
||||
msgstr "osztály szintű metódus"
|
||||
|
||||
#: sphinx/domains/python.py:593
|
||||
#: sphinx/domains/python.py:595
|
||||
msgid "static method"
|
||||
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"
|
||||
msgstr "modul"
|
||||
|
||||
#: sphinx/domains/python.py:760
|
||||
#: sphinx/domains/python.py:762
|
||||
msgid " (deprecated)"
|
||||
msgstr " (elavult)"
|
||||
|
||||
@ -397,64 +399,64 @@ msgstr "környezeti változó; %s"
|
||||
msgid "%scommand line option; %s"
|
||||
msgstr "%sparancssor opció; %s"
|
||||
|
||||
#: sphinx/domains/std.py:443
|
||||
#: sphinx/domains/std.py:433
|
||||
msgid "glossary term"
|
||||
msgstr "szójegyzék"
|
||||
|
||||
#: sphinx/domains/std.py:444
|
||||
#: sphinx/domains/std.py:434
|
||||
msgid "grammar token"
|
||||
msgstr "nyelvtani jel"
|
||||
|
||||
#: sphinx/domains/std.py:445
|
||||
#: sphinx/domains/std.py:435
|
||||
msgid "reference label"
|
||||
msgstr "referencia cimke"
|
||||
|
||||
#: sphinx/domains/std.py:447
|
||||
#: sphinx/domains/std.py:437
|
||||
msgid "environment variable"
|
||||
msgstr "környezeti változó"
|
||||
|
||||
#: sphinx/domains/std.py:448
|
||||
#: sphinx/domains/std.py:438
|
||||
msgid "program option"
|
||||
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-split.html:11
|
||||
#: sphinx/themes/basic/genindex-split.html:14
|
||||
#: 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/writers/latex.py:201 sphinx/writers/texinfo.py:479
|
||||
#: sphinx/writers/latex.py:346 sphinx/writers/texinfo.py:481
|
||||
msgid "Index"
|
||||
msgstr "Tárgymutató"
|
||||
|
||||
#: sphinx/domains/std.py:482
|
||||
#: sphinx/domains/std.py:472
|
||||
msgid "Module Index"
|
||||
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"
|
||||
msgstr "Keresés"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1139
|
||||
#: sphinx/ext/autodoc.py:1265
|
||||
#, python-format
|
||||
msgid " Bases: %s"
|
||||
msgstr " Alapul: %s"
|
||||
|
||||
#: sphinx/ext/autodoc.py:1181
|
||||
#: sphinx/ext/autodoc.py:1318
|
||||
#, python-format
|
||||
msgid "alias of :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
|
||||
msgid "[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]"
|
||||
msgstr "[graph]"
|
||||
|
||||
#: sphinx/ext/intersphinx.py:257
|
||||
#: sphinx/ext/intersphinx.py:359
|
||||
#, python-format
|
||||
msgid "(in %s v%s)"
|
||||
msgstr "(%s v%s)"
|
||||
@ -463,112 +465,117 @@ msgstr "(%s v%s)"
|
||||
msgid "[source]"
|
||||
msgstr "[source]"
|
||||
|
||||
#: sphinx/ext/todo.py:43
|
||||
#: sphinx/ext/todo.py:56
|
||||
msgid "Todo"
|
||||
msgstr "Tennivaló"
|
||||
|
||||
#: sphinx/ext/todo.py:113
|
||||
#, python-format
|
||||
#: sphinx/ext/todo.py:129
|
||||
#, fuzzy
|
||||
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.)"
|
||||
|
||||
#: sphinx/ext/todo.py:122
|
||||
#: sphinx/ext/todo.py:141
|
||||
msgid "original entry"
|
||||
msgstr "eredeti bejegyzés"
|
||||
|
||||
#: sphinx/ext/viewcode.py:158
|
||||
#: sphinx/ext/viewcode.py:162
|
||||
msgid "[docs]"
|
||||
msgstr "[docs]"
|
||||
|
||||
#: sphinx/ext/viewcode.py:172
|
||||
#: sphinx/ext/viewcode.py:176
|
||||
msgid "Module code"
|
||||
msgstr "Modul forráskód"
|
||||
|
||||
#: sphinx/ext/viewcode.py:178
|
||||
#: sphinx/ext/viewcode.py:182
|
||||
#, python-format
|
||||
msgid "<h1>Source code for %s</h1>"
|
||||
msgstr "<h1>%s forráskódja</h1>"
|
||||
|
||||
#: sphinx/ext/viewcode.py:204
|
||||
#: sphinx/ext/viewcode.py:208
|
||||
msgid "Overview: module code"
|
||||
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>"
|
||||
msgstr "<h1>Az összes modul, melynek forrása elérhető</h1>"
|
||||
|
||||
#: sphinx/locale/__init__.py:157
|
||||
#: sphinx/locale/__init__.py:159
|
||||
msgid "Attention"
|
||||
msgstr "Figyelem"
|
||||
|
||||
#: sphinx/locale/__init__.py:158
|
||||
#: sphinx/locale/__init__.py:160
|
||||
msgid "Caution"
|
||||
msgstr "Figyelem"
|
||||
|
||||
#: sphinx/locale/__init__.py:159
|
||||
#: sphinx/locale/__init__.py:161
|
||||
msgid "Danger"
|
||||
msgstr "Veszély"
|
||||
|
||||
#: sphinx/locale/__init__.py:160
|
||||
#: sphinx/locale/__init__.py:162
|
||||
msgid "Error"
|
||||
msgstr "Hiba"
|
||||
|
||||
#: sphinx/locale/__init__.py:161
|
||||
#: sphinx/locale/__init__.py:163
|
||||
msgid "Hint"
|
||||
msgstr "Tipp"
|
||||
|
||||
#: sphinx/locale/__init__.py:162
|
||||
#: sphinx/locale/__init__.py:164
|
||||
msgid "Important"
|
||||
msgstr "Fontos"
|
||||
|
||||
#: sphinx/locale/__init__.py:163
|
||||
#: sphinx/locale/__init__.py:165
|
||||
msgid "Note"
|
||||
msgstr "Megjegyzés"
|
||||
|
||||
#: sphinx/locale/__init__.py:164
|
||||
#: sphinx/locale/__init__.py:166
|
||||
msgid "See also"
|
||||
msgstr "Lásd még"
|
||||
|
||||
#: sphinx/locale/__init__.py:165
|
||||
#: sphinx/locale/__init__.py:167
|
||||
msgid "Tip"
|
||||
msgstr "Javaslat"
|
||||
|
||||
#: sphinx/locale/__init__.py:166
|
||||
#: sphinx/locale/__init__.py:168
|
||||
msgid "Warning"
|
||||
msgstr "Figyelem"
|
||||
|
||||
#: sphinx/locale/__init__.py:170
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#, python-format
|
||||
msgid "New in version %s"
|
||||
msgstr "Új a(z) %s verzióban"
|
||||
|
||||
#: sphinx/locale/__init__.py:171
|
||||
#: sphinx/locale/__init__.py:173
|
||||
#, python-format
|
||||
msgid "Changed in version %s"
|
||||
msgstr "A %s verzióban változott"
|
||||
|
||||
#: sphinx/locale/__init__.py:172
|
||||
#: sphinx/locale/__init__.py:174
|
||||
#, python-format
|
||||
msgid "Deprecated since version %s"
|
||||
msgstr "Elavult a(z) %s verzió óta"
|
||||
|
||||
#: sphinx/locale/__init__.py:178
|
||||
#: sphinx/locale/__init__.py:180
|
||||
msgid "keyword"
|
||||
msgstr "kulcsszó"
|
||||
|
||||
#: sphinx/locale/__init__.py:179
|
||||
#: sphinx/locale/__init__.py:181
|
||||
msgid "operator"
|
||||
msgstr "operátor"
|
||||
|
||||
#: sphinx/locale/__init__.py:180
|
||||
#: sphinx/locale/__init__.py:182
|
||||
msgid "object"
|
||||
msgstr "objektum"
|
||||
|
||||
#: sphinx/locale/__init__.py:182
|
||||
#: sphinx/locale/__init__.py:184
|
||||
msgid "statement"
|
||||
msgstr "utasítás"
|
||||
|
||||
#: sphinx/locale/__init__.py:183
|
||||
#: sphinx/locale/__init__.py:185
|
||||
msgid "built-in function"
|
||||
msgstr "beépített függvény"
|
||||
|
||||
@ -696,7 +703,9 @@ msgstr "Utolsó frissítés %(last_updated)s."
|
||||
msgid ""
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||
"%(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
|
||||
#, python-format
|
||||
@ -723,7 +732,9 @@ msgstr "következő fejezet"
|
||||
msgid ""
|
||||
"Please activate JavaScript to enable the search\n"
|
||||
" 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
|
||||
msgid ""
|
||||
@ -731,26 +742,30 @@ msgid ""
|
||||
" 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 "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/searchresults.html:17
|
||||
#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17
|
||||
msgid "search"
|
||||
msgstr "keresés"
|
||||
|
||||
#: sphinx/themes/basic/search.html:43
|
||||
#: sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:281
|
||||
#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:282
|
||||
msgid "Search Results"
|
||||
msgstr "Keresési Eredmények"
|
||||
|
||||
#: sphinx/themes/basic/search.html:45
|
||||
#: sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:283
|
||||
#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:284
|
||||
msgid ""
|
||||
"Your search did not match any documents. Please make sure that all words 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."
|
||||
"Your search did not match any documents. Please make sure that all words "
|
||||
"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."
|
||||
|
||||
#: sphinx/themes/basic/searchbox.html:12
|
||||
msgid "Quick search"
|
||||
@ -788,33 +803,33 @@ msgstr "C API változások"
|
||||
msgid "Other changes"
|
||||
msgstr "Egyéb változások"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:166 sphinx/writers/html.py:610
|
||||
#: sphinx/writers/html.py:615
|
||||
#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668
|
||||
#: sphinx/writers/html.py:673
|
||||
msgid "Permalink to this headline"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Keresés folyamatban"
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:124
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:126
|
||||
msgid "Preparing search..."
|
||||
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
|
||||
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."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:337
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ", "
|
||||
|
||||
@ -831,44 +846,56 @@ msgstr "Oldalsáv összezárása"
|
||||
msgid "Contents"
|
||||
msgstr "Tartalom"
|
||||
|
||||
#: sphinx/writers/html.py:334
|
||||
#: sphinx/writers/html.py:349
|
||||
msgid "Permalink to this code"
|
||||
msgstr "Permalink erre a kódrészletre"
|
||||
|
||||
#: sphinx/writers/html.py:337
|
||||
#: sphinx/writers/html.py:353
|
||||
msgid "Permalink to this image"
|
||||
msgstr "Permalink erre a képre"
|
||||
|
||||
#: sphinx/writers/html.py:339
|
||||
#: sphinx/writers/html.py:355
|
||||
msgid "Permalink to this toctree"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/html.py:619
|
||||
#: sphinx/writers/html.py:677
|
||||
msgid "Permalink to this table"
|
||||
msgstr "Permalink erre a táblázatra"
|
||||
|
||||
#: sphinx/writers/latex.py:199
|
||||
#: sphinx/writers/latex.py:344
|
||||
msgid "Release"
|
||||
msgstr "Kiadás"
|
||||
|
||||
#: sphinx/writers/latex.py:697 sphinx/writers/manpage.py:177
|
||||
#: sphinx/writers/texinfo.py:616
|
||||
#: sphinx/writers/latex.py:408
|
||||
#, fuzzy
|
||||
msgid "page"
|
||||
msgstr "Veszély"
|
||||
|
||||
#: sphinx/writers/latex.py:908 sphinx/writers/manpage.py:226
|
||||
#: sphinx/writers/texinfo.py:620
|
||||
msgid "Footnotes"
|
||||
msgstr "Lábjegyzetek"
|
||||
|
||||
#: sphinx/writers/latex.py:785
|
||||
#: sphinx/writers/latex.py:1010
|
||||
msgid "continued from previous page"
|
||||
msgstr "folytatás az előző oldalról"
|
||||
|
||||
#: sphinx/writers/latex.py:791
|
||||
#: sphinx/writers/latex.py:1016
|
||||
msgid "Continued on next page"
|
||||
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
|
||||
msgid "[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]"
|
||||
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