pax_global_header00006660000000000000000000000064134213673020014513gustar00rootroot0000000000000052 comment=e4c69dd2180c7f18330d5c3fb9300ea0e8461911 sphinxcontrib-jsmath-1.0.1/000077500000000000000000000000001342136730200156705ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/.gitignore000066400000000000000000000001501342136730200176540ustar00rootroot00000000000000*.pyc *.egg *.so *.swp .DS_Store .mypy_cache/ .tags .tox/ build/ dist/ sphinxcontrib_jsmath.egg-info/ sphinxcontrib-jsmath-1.0.1/.travis.yml000066400000000000000000000007741342136730200200110ustar00rootroot00000000000000language: python sudo: false dist: xenial cache: pip env: global: - TEST='-v --durations 25' - PYTHONFAULTHANDLER=x - PYTHONWARNINGS=all matrix: include: - python: "3.5" env: TOXENV=py35 - python: "3.6" env: TOXENV=py36 - python: "3.7" env: TOXENV=py37 - python: nightly env: TOXENV=py38 - python: "3.7" env: TOXENV=flake8 - python: "3.7" env: TOXENV=mypy install: - pip install -U pip tox - pip install . script: - tox -- -v sphinxcontrib-jsmath-1.0.1/CHANGES000066400000000000000000000003501342136730200166610ustar00rootroot00000000000000Release 1.0.1 (2019-01-22) ========================== * sphinx-doc/sphinx#5966: jsmath has not been loaded on incremental build Release 1.0.0 (2019-01-13) ========================== * Initial release (copied from sphinx package) sphinxcontrib-jsmath-1.0.1/LICENSE000066400000000000000000000026331342136730200167010ustar00rootroot00000000000000License for sphinxcontrib-jsmath ================================ Copyright (c) 2007-2019 by the Sphinx team (see https://github.com/sphinx-doc/sphinx/blob/master/AUTHORS). All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. sphinxcontrib-jsmath-1.0.1/MANIFEST.in000066400000000000000000000001371342136730200174270ustar00rootroot00000000000000include README.rst include LICENSE include CHANGES include tox.ini recursive-include tests * sphinxcontrib-jsmath-1.0.1/Makefile000066400000000000000000000022251342136730200173310ustar00rootroot00000000000000PYTHON ?= python3 .PHONY: all all: clean-pyc clean-backupfiles style-check type-check test .PHONY: clean clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-testfiles clean-buildfiles clean-distfiles clean-mypyfiles clean-pyc: find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyo' -exec rm -f {} + .PHONY: clean-pycache clean-pycache: find . -name __pycache__ -exec rm -rf {} + .PHONY: clean-patchfiles clean-patchfiles: find . -name '*.orig' -exec rm -f {} + find . -name '*.rej' -exec rm -f {} + .PHONY: clean-backupfiles clean-backupfiles: find . -name '*~' -exec rm -f {} + find . -name '*.bak' -exec rm -f {} + find . -name '*.swp' -exec rm -f {} + find . -name '*.swo' -exec rm -f {} + .PHONY: clean-testfiles clean-testfiles: rm -rf tests/.coverage rm -rf tests/build rm -rf .tox/ rm -rf .cache/ .PHONY: clean-buildfiles clean-buildfiles: rm -rf build .PHONY: clean-distfiles clean-distfiles: rm -rf dist/ .PHONY: clean-mypyfiles clean-mypyfiles: rm -rf .mypy_cache/ .PHONY: style-check style-check: @flake8 .PHONY: type-check type-check: mypy sphinxcontrib .PHONY: test test: @$(PYTHON) -m pytest -v $(TEST) sphinxcontrib-jsmath-1.0.1/README.rst000066400000000000000000000016001342136730200173540ustar00rootroot00000000000000=============================== README for sphinxcontrib-jsmath =============================== sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript. For more details, please visit http://www.sphinx-doc.org/. Installing ========== Install from PyPI:: pip install -U sphinxcontrib-jsmath Release signatures ================== Releases are signed with following keys: * `498D6B9E `_ * `5EBA0E07 `_ Testing ======= To run the tests with the interpreter available as ``python``, use:: tox Continuous testing runs on travis: https://travis-ci.org/sphinx-doc/sphinxcontrib-jsmath Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst sphinxcontrib-jsmath-1.0.1/release-checklist.rst000066400000000000000000000016061342136730200220140ustar00rootroot00000000000000ToDo for releasing ================== preparation ----------- 1. run ``python setup.py extract_messages`` 2. run ``(cd sphinxcontrib/jsmath/locales/; tx push -s)`` 3. call for translation release ------- 1. check travis-ci testing result 2. run ``(cd sphinxcontrib/jsmath/locales/; tx pull -a -f)`` 3. run ``python setup.py compile_catalog`` 4. Run ``git add sphinxcontrib`` 5. Run ``git commit -am 'Update message catalogs'`` 6. check release version in ``sphinxcontrib/jsmath/version.py`` 7. update release date in ``CHANGES`` 8. Run ``make clean`` 9. build distribtion files: ``python setup.py release sdist bdist_wheel`` 10. make a release: ``twine upload --sign --identity= dist/`` 11. check PyPI page: https://pypi.org/p/sphinxcontrib-jsmath 12. tagging with version name. e.g.: git tag 1.1.0 13. bump version in ``sphinxcontrib/jsmath/version.py`` sphinxcontrib-jsmath-1.0.1/setup.cfg000066400000000000000000000007341342136730200175150ustar00rootroot00000000000000[egg_info] tag_build = .dev tag_date = true [aliases] release = egg_info -Db '' [extract_messages] output_file = sphinxcontrib/jsmath/locales/sphinxcontrib.jsmath.pot keywords = _ __ [compile_catalog] domain = sphinxcontrib.jsmath directory = sphinxcontrib/jsmath/locales/ use_fuzzy = true [bdist_wheel] universal = 1 [metadata] license_file = LICENSE [flake8] max-line-length = 95 ignore = E116,E241,E251 exclude = .git,.tox,.venv [mypy] ignore_missing_imports = True sphinxcontrib-jsmath-1.0.1/setup.py000066400000000000000000000040201342136730200173760ustar00rootroot00000000000000# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages long_desc = ''' sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript. ''' extras_require = { 'test': [ 'pytest', 'flake8', 'mypy', ], } def get_version(): """Get version number of the package from version.py without importing core module.""" package_dir = os.path.abspath(os.path.dirname(__file__)) version_file = os.path.join(package_dir, 'sphinxcontrib/jsmath/version.py') namespace = {} with open(version_file, 'rt') as f: exec(f.read(), namespace) return namespace['__version__'] setup( name='sphinxcontrib-jsmath', version=get_version(), url='http://sphinx-doc.org/', download_url='https://pypi.org/project/sphinxcontrib-jsmath/', license='BSD', author='Georg Brandl', author_email='georg@python.org', description='A sphinx extension which renders display math in HTML via JavaScript', long_description=long_desc, zip_safe=False, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Framework :: Sphinx', 'Framework :: Sphinx :: Extension', 'Topic :: Documentation', 'Topic :: Documentation :: Sphinx', 'Topic :: Text Processing', 'Topic :: Utilities', ], platforms='any', python_requires=">=3.5", packages=find_packages(exclude=['tests']), include_package_data=True, extras_require=extras_require, namespace_packages=['sphinxcontrib'], ) sphinxcontrib-jsmath-1.0.1/sphinxcontrib/000077500000000000000000000000001342136730200205625ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/__init__.py000066400000000000000000000001201342136730200226640ustar00rootroot00000000000000# -*- coding: utf-8 -*- __import__('pkg_resources').declare_namespace(__name__) sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/000077500000000000000000000000001342136730200220505ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/__init__.py000066400000000000000000000065211342136730200241650ustar00rootroot00000000000000""" sphinxcontrib.jsmath ~~~~~~~~~~~~~~~~~~~~ Set up everything for use of JSMath to display math in HTML via JavaScript. :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from os import path from typing import Any, Dict, cast from docutils import nodes from sphinx.application import Sphinx from sphinx.builders.html import StandaloneHTMLBuilder from sphinx.domains.math import MathDomain from sphinx.environment import BuildEnvironment from sphinx.errors import ExtensionError from sphinx.locale import get_translation from sphinx.util.math import get_node_equation_number from sphinx.writers.html import HTMLTranslator from sphinxcontrib.jsmath.version import __version__ package_dir = path.abspath(path.dirname(__file__)) _ = get_translation(__name__) def html_visit_math(self: HTMLTranslator, node: nodes.math) -> None: self.body.append(self.starttag(node, 'span', '', CLASS='math notranslate nohighlight')) self.body.append(self.encode(node.astext()) + '') raise nodes.SkipNode def html_visit_displaymath(self: HTMLTranslator, node: nodes.math_block) -> None: if node['nowrap']: self.body.append(self.starttag(node, 'div', CLASS='math notranslate nohighlight')) self.body.append(self.encode(node.astext())) self.body.append('') raise nodes.SkipNode for i, part in enumerate(node.astext().split('\n\n')): part = self.encode(part) if i == 0: # necessary to e.g. set the id property correctly if node['number']: number = get_node_equation_number(self, node) self.body.append('(%s)' % number) self.add_permalink_ref(node, _('Permalink to this equation')) self.body.append('') self.body.append(self.starttag(node, 'div', CLASS='math notranslate nohighlight')) else: # but only once! self.body.append('
') if '&' in part or '\\\\' in part: self.body.append('\\begin{split}' + part + '\\end{split}') else: self.body.append(part) self.body.append('
\n') raise nodes.SkipNode def install_jsmath(app: Sphinx, env: BuildEnvironment) -> None: if app.builder.format != 'html' or app.builder.math_renderer_name != 'jsmath': # type: ignore # NOQA return if not app.config.jsmath_path: raise ExtensionError('jsmath_path config value must be set for the ' 'jsmath extension to work') builder = cast(StandaloneHTMLBuilder, app.builder) domain = cast(MathDomain, env.get_domain('math')) if domain.has_equations(): # Enable jsmath only if equations exists builder.add_js_file(app.config.jsmath_path) def setup(app: Sphinx) -> Dict[str, Any]: app.require_sphinx('2.0') app.add_message_catalog(__name__, path.join(package_dir, 'locales')) app.add_html_math_renderer('jsmath', (html_visit_math, None), (html_visit_displaymath, None)) app.add_config_value('jsmath_path', '', False) app.connect('env-updated', install_jsmath) return { 'version': __version__, 'parallel_read_safe': True, 'parallel_write_safe': True, } sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/000077500000000000000000000000001342136730200234725ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/.tx/000077500000000000000000000000001342136730200242035ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/.tx/config000066400000000000000000000003321342136730200253710ustar00rootroot00000000000000[main] host = https://www.transifex.com [sphinx-1.sphinxcontrib-jsmath-pot] file_filter = /LC_MESSAGES/sphinxcontrib.jsmath.po minimum_perc = 0 source_file = sphinxcontrib.jsmath.pot source_lang = en type = PO sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ar/000077500000000000000000000000001342136730200240745ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ar/LC_MESSAGES/000077500000000000000000000000001342136730200256615ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ar/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000012161342136730200323750ustar00rootroot00000000000000,<=XsPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: ar Language-Team: Arabic (https://www.transifex.com/sphinx-doc/teams/36659/ar/) Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ar/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000015431342136730200324030ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Arabic (https://www.transifex.com/sphinx-doc/teams/36659/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/bn/000077500000000000000000000000001342136730200240715ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/bn/LC_MESSAGES/000077500000000000000000000000001342136730200256565ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/bn/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010741342136730200323740ustar00rootroot00000000000000,<=X!Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: bn Language-Team: Bengali (https://www.transifex.com/sphinx-doc/teams/36659/bn/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/bn/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014211342136730200323730ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Bengali (https://www.transifex.com/sphinx-doc/teams/36659/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ca/000077500000000000000000000000001342136730200240555ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ca/LC_MESSAGES/000077500000000000000000000000001342136730200256425ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ca/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010741342136730200323600ustar00rootroot00000000000000,<=X!Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: ca Language-Team: Catalan (https://www.transifex.com/sphinx-doc/teams/36659/ca/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ca/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014211342136730200323570ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Catalan (https://www.transifex.com/sphinx-doc/teams/36659/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cak/000077500000000000000000000000001342136730200242305ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cak/LC_MESSAGES/000077500000000000000000000000001342136730200260155ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cak/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010261342136730200325300ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: cak Language-Team: Kaqchikel (https://www.transifex.com/sphinx-doc/teams/36659/cak/) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cak/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014251342136730200325360ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Kaqchikel (https://www.transifex.com/sphinx-doc/teams/36659/cak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cs/000077500000000000000000000000001342136730200240775ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cs/LC_MESSAGES/000077500000000000000000000000001342136730200256645ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cs/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000012121342136730200323740ustar00rootroot00000000000000,<=XoPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: cs Language-Team: Czech (https://www.transifex.com/sphinx-doc/teams/36659/cs/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cs/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000015371342136730200324110ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Czech (https://www.transifex.com/sphinx-doc/teams/36659/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cy/000077500000000000000000000000001342136730200241055ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cy/LC_MESSAGES/000077500000000000000000000000001342136730200256725ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cy/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011471342136730200324110ustar00rootroot00000000000000,<=XLPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: cy Language-Team: Welsh (https://www.transifex.com/sphinx-doc/teams/36659/cy/) Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/cy/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014741342136730200324170ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Welsh (https://www.transifex.com/sphinx-doc/teams/36659/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/da/000077500000000000000000000000001342136730200240565ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/da/LC_MESSAGES/000077500000000000000000000000001342136730200256435ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/da/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010731342136730200323600ustar00rootroot00000000000000,<=X Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: da Language-Team: Danish (https://www.transifex.com/sphinx-doc/teams/36659/da/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/da/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014201342136730200323570ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Danish (https://www.transifex.com/sphinx-doc/teams/36659/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/de/000077500000000000000000000000001342136730200240625ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/de/LC_MESSAGES/000077500000000000000000000000001342136730200256475ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/de/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010731342136730200323640ustar00rootroot00000000000000,<=X Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: de Language-Team: German (https://www.transifex.com/sphinx-doc/teams/36659/de/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/de/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014201342136730200323630ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: German (https://www.transifex.com/sphinx-doc/teams/36659/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/el/000077500000000000000000000000001342136730200240725ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/el/LC_MESSAGES/000077500000000000000000000000001342136730200256575ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/el/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010721342136730200323730ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: el Language-Team: Greek (https://www.transifex.com/sphinx-doc/teams/36659/el/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/el/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014171342136730200324010ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Greek (https://www.transifex.com/sphinx-doc/teams/36659/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eo/000077500000000000000000000000001342136730200240755ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eo/LC_MESSAGES/000077500000000000000000000000001342136730200256625ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eo/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010761342136730200324020ustar00rootroot00000000000000,<=X#Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: eo Language-Team: Esperanto (https://www.transifex.com/sphinx-doc/teams/36659/eo/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eo/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014231342136730200324010ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Esperanto (https://www.transifex.com/sphinx-doc/teams/36659/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/es/000077500000000000000000000000001342136730200241015ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/es/LC_MESSAGES/000077500000000000000000000000001342136730200256665ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/es/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011471342136730200324050ustar00rootroot00000000000000,<=X"DPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Leonardo J. Caballero G. , 2019 Language: es Language-Team: Spanish (https://www.transifex.com/sphinx-doc/teams/36659/es/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Enlace permanente a esta ecuaciónsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/es/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000017261342136730200324130ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Leonardo J. Caballero G. , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Leonardo J. Caballero G. , 2019\n" "Language-Team: Spanish (https://www.transifex.com/sphinx-doc/teams/36659/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Enlace permanente a esta ecuación" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/et/000077500000000000000000000000001342136730200241025ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/et/LC_MESSAGES/000077500000000000000000000000001342136730200256675ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/et/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011101342136730200323740ustar00rootroot00000000000000,<=X*Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Ivar Smolin , 2019 Language: et Language-Team: Estonian (https://www.transifex.com/sphinx-doc/teams/36659/et/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Püsiviit sellele võrrandilesphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/et/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016341342136730200324120ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Ivar Smolin , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Ivar Smolin , 2019\n" "Language-Team: Estonian (https://www.transifex.com/sphinx-doc/teams/36659/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Püsiviit sellele võrrandile" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eu/000077500000000000000000000000001342136730200241035ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eu/LC_MESSAGES/000077500000000000000000000000001342136730200256705ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eu/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010731342136730200324050ustar00rootroot00000000000000,<=X Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: eu Language-Team: Basque (https://www.transifex.com/sphinx-doc/teams/36659/eu/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/eu/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014201342136730200324040ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Basque (https://www.transifex.com/sphinx-doc/teams/36659/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fa/000077500000000000000000000000001342136730200240605ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fa/LC_MESSAGES/000077500000000000000000000000001342136730200256455ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fa/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010731342136730200323620ustar00rootroot00000000000000,<=X Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: fa Language-Team: Persian (https://www.transifex.com/sphinx-doc/teams/36659/fa/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fa/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014201342136730200323610ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Persian (https://www.transifex.com/sphinx-doc/teams/36659/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fi/000077500000000000000000000000001342136730200240705ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fi/LC_MESSAGES/000077500000000000000000000000001342136730200256555ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fi/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010741342136730200323730ustar00rootroot00000000000000,<=X!Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: fi Language-Team: Finnish (https://www.transifex.com/sphinx-doc/teams/36659/fi/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fi/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014211342136730200323720ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Finnish (https://www.transifex.com/sphinx-doc/teams/36659/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fr/000077500000000000000000000000001342136730200241015ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fr/LC_MESSAGES/000077500000000000000000000000001342136730200256665ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fr/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011261342136730200324020ustar00rootroot00000000000000,<=X#2Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: François Poirotte , 2019 Language: fr Language-Team: French (https://www.transifex.com/sphinx-doc/teams/36659/fr/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Lien permanent vers cette équationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/fr/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016651342136730200324150ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # François Poirotte , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: François Poirotte , 2019\n" "Language-Team: French (https://www.transifex.com/sphinx-doc/teams/36659/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Lien permanent vers cette équation" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/he/000077500000000000000000000000001342136730200240665ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/he/LC_MESSAGES/000077500000000000000000000000001342136730200256535ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/he/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000012311342136730200323640ustar00rootroot00000000000000,<=%X~Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: he Language-Team: Hebrew (https://www.transifex.com/sphinx-doc/teams/36659/he/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/he/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000015561342136730200324010ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Hebrew (https://www.transifex.com/sphinx-doc/teams/36659/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi/000077500000000000000000000000001342136730200240725ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi/LC_MESSAGES/000077500000000000000000000000001342136730200256575ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010721342136730200323730ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: hi Language-Team: Hindi (https://www.transifex.com/sphinx-doc/teams/36659/hi/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014171342136730200324010ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Hindi (https://www.transifex.com/sphinx-doc/teams/36659/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi_IN/000077500000000000000000000000001342136730200244605ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi_IN/LC_MESSAGES/000077500000000000000000000000001342136730200262455ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi_IN/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011101342136730200327520ustar00rootroot00000000000000,<=X-Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: hi_IN Language-Team: Hindi (India) (https://www.transifex.com/sphinx-doc/teams/36659/hi_IN/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hi_IN/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014351342136730200327670ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Hindi (India) (https://www.transifex.com/sphinx-doc/teams/36659/hi_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hr/000077500000000000000000000000001342136730200241035ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hr/LC_MESSAGES/000077500000000000000000000000001342136730200256705ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hr/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011721342136730200324050ustar00rootroot00000000000000,<= XdPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Mario Šarić, 2019 Language: hr Language-Team: Croatian (https://www.transifex.com/sphinx-doc/teams/36659/hr/) 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 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Link na tu definicijusphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hr/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000017001342136730200324050ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Mario Šarić, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Mario Šarić, 2019\n" "Language-Team: Croatian (https://www.transifex.com/sphinx-doc/teams/36659/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\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" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Link na tu definiciju" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hu/000077500000000000000000000000001342136730200241065ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hu/LC_MESSAGES/000077500000000000000000000000001342136730200256735ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hu/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010761342136730200324130ustar00rootroot00000000000000,<=X#Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: hu Language-Team: Hungarian (https://www.transifex.com/sphinx-doc/teams/36659/hu/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/hu/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014231342136730200324120ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Hungarian (https://www.transifex.com/sphinx-doc/teams/36659/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/id/000077500000000000000000000000001342136730200240665ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/id/LC_MESSAGES/000077500000000000000000000000001342136730200256535ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/id/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011071342136730200323660ustar00rootroot00000000000000,<=X,Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Arif Budiman , 2019 Language: id Language-Team: Indonesian (https://www.transifex.com/sphinx-doc/teams/36659/id/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Tautan untuk persamaan inisphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/id/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016421342136730200323750ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Arif Budiman , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Arif Budiman , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/sphinx-doc/teams/36659/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Tautan untuk persamaan ini" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/it/000077500000000000000000000000001342136730200241065ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/it/LC_MESSAGES/000077500000000000000000000000001342136730200256735ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/it/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011221342136730200324030ustar00rootroot00000000000000,<=X5Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Paolo Cavallini , 2019 Language: it Language-Team: Italian (https://www.transifex.com/sphinx-doc/teams/36659/it/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink a questa equazionesphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/it/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016621342136730200324170ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Paolo Cavallini , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Paolo Cavallini , 2019\n" "Language-Team: Italian (https://www.transifex.com/sphinx-doc/teams/36659/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Permalink a questa equazione" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ja/000077500000000000000000000000001342136730200240645ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ja/LC_MESSAGES/000077500000000000000000000000001342136730200256515ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ja/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011211342136730200323600ustar00rootroot00000000000000,<=X$,Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Takeshi KOMIYA , 2019 Language: ja Language-Team: Japanese (https://www.transifex.com/sphinx-doc/teams/36659/ja/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 この数式へのパーマリンクsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ja/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016561342136730200324000ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Takeshi KOMIYA , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Takeshi KOMIYA , 2019\n" "Language-Team: Japanese (https://www.transifex.com/sphinx-doc/teams/36659/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "この数式へのパーマリンク" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ko/000077500000000000000000000000001342136730200241035ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ko/LC_MESSAGES/000077500000000000000000000000001342136730200256705ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ko/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010741342136730200324060ustar00rootroot00000000000000,<=X!Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: YT H , 2019 Language: ko Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 이 수식에 대한 퍼머링크sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ko/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016111342136730200324060ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # YT H , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: YT H , 2019\n" "Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "이 수식에 대한 퍼머링크" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lt/000077500000000000000000000000001342136730200241115ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lt/LC_MESSAGES/000077500000000000000000000000001342136730200256765ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lt/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000013021342136730200324060ustar00rootroot00000000000000,<=NXPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: lt Language-Team: Lithuanian (https://www.transifex.com/sphinx-doc/teams/36659/lt/) Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lt/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016271342136730200324230ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Lithuanian (https://www.transifex.com/sphinx-doc/teams/36659/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lv/000077500000000000000000000000001342136730200241135ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lv/LC_MESSAGES/000077500000000000000000000000001342136730200257005ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lv/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011371342136730200324160ustar00rootroot00000000000000,<=XDPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: lv Language-Team: Latvian (https://www.transifex.com/sphinx-doc/teams/36659/lv/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/lv/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014641342136730200324240ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Latvian (https://www.transifex.com/sphinx-doc/teams/36659/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/mk/000077500000000000000000000000001342136730200241015ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/mk/LC_MESSAGES/000077500000000000000000000000001342136730200256665ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/mk/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011351342136730200324020ustar00rootroot00000000000000,<=XBPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: mk Language-Team: Macedonian (https://www.transifex.com/sphinx-doc/teams/36659/mk/) Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/mk/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014621342136730200324100ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Macedonian (https://www.transifex.com/sphinx-doc/teams/36659/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nb_NO/000077500000000000000000000000001342136730200244655ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nb_NO/LC_MESSAGES/000077500000000000000000000000001342136730200262525ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nb_NO/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011251342136730200327650ustar00rootroot00000000000000,<=X:Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: nb_NO Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/sphinx-doc/teams/36659/nb_NO/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nb_NO/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014521342136730200327730ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/sphinx-doc/teams/36659/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ne/000077500000000000000000000000001342136730200240745ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ne/LC_MESSAGES/000077500000000000000000000000001342136730200256615ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ne/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010731342136730200323760ustar00rootroot00000000000000,<=X Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: ne Language-Team: Nepali (https://www.transifex.com/sphinx-doc/teams/36659/ne/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ne/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014201342136730200323750ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Nepali (https://www.transifex.com/sphinx-doc/teams/36659/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nl/000077500000000000000000000000001342136730200241035ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nl/LC_MESSAGES/000077500000000000000000000000001342136730200256705ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nl/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010571342136730200324070ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: brechtm, 2019 Language: nl Language-Team: Dutch (https://www.transifex.com/sphinx-doc/teams/36659/nl/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink naar deze formulesphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/nl/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000015571342136730200324170ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # brechtm, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: brechtm, 2019\n" "Language-Team: Dutch (https://www.transifex.com/sphinx-doc/teams/36659/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Permalink naar deze formule" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pl/000077500000000000000000000000001342136730200241055ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pl/LC_MESSAGES/000077500000000000000000000000001342136730200256725ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pl/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000013071342136730200324070ustar00rootroot00000000000000,<=KX"Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Tawez, 2019 Language: pl Language-Team: Polish (https://www.transifex.com/sphinx-doc/teams/36659/pl/) Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Stały odnośnik do tego równaniasphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pl/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000020051342136730200324060ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Tawez, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Tawez, 2019\n" "Language-Team: Polish (https://www.transifex.com/sphinx-doc/teams/36659/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt/000077500000000000000000000000001342136730200241155ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt/LC_MESSAGES/000077500000000000000000000000001342136730200257025ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010771342136730200324230ustar00rootroot00000000000000,<=X$Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: pt Language-Team: Portuguese (https://www.transifex.com/sphinx-doc/teams/36659/pt/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014241342136730200324220ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Portuguese (https://www.transifex.com/sphinx-doc/teams/36659/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_BR/000077500000000000000000000000001342136730200245005ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_BR/LC_MESSAGES/000077500000000000000000000000001342136730200262655ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_BR/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011511342136730200327770ustar00rootroot00000000000000,<=XKPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: gilberto dos santos alves , 2019 Language: pt_BR Language-Team: Portuguese (Brazil) (https://www.transifex.com/sphinx-doc/teams/36659/pt_BR/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink para essa equaçãosphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_BR/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000017161342136730200330110ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # gilberto dos santos alves , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: gilberto dos santos alves , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/sphinx-doc/teams/36659/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Permalink para essa equação" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_PT/000077500000000000000000000000001342136730200245205ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_PT/LC_MESSAGES/000077500000000000000000000000001342136730200263055ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_PT/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011201342136730200330130ustar00rootroot00000000000000,<=X5Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: pt_PT Language-Team: Portuguese (Portugal) (https://www.transifex.com/sphinx-doc/teams/36659/pt_PT/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/pt_PT/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014451342136730200330300ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/sphinx-doc/teams/36659/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ro/000077500000000000000000000000001342136730200241125ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ro/LC_MESSAGES/000077500000000000000000000000001342136730200256775ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ro/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011461342136730200324150ustar00rootroot00000000000000,<=XKPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: ro Language-Team: Romanian (https://www.transifex.com/sphinx-doc/teams/36659/ro/) Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1)) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ro/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014731342136730200324230ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Romanian (https://www.transifex.com/sphinx-doc/teams/36659/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ru/000077500000000000000000000000001342136730200241205ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ru/LC_MESSAGES/000077500000000000000000000000001342136730200257055ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ru/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000013541342136730200324240ustar00rootroot00000000000000,<=gX+Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Konstantin Molchanov , 2019 Language: ru Language-Team: Russian (https://www.transifex.com/sphinx-doc/teams/36659/ru/) Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Ссылка на это уравнениеsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ru/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000021151342136730200324230ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Konstantin Molchanov , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Konstantin Molchanov , 2019\n" "Language-Team: Russian (https://www.transifex.com/sphinx-doc/teams/36659/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Ссылка на это уравнение" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/si/000077500000000000000000000000001342136730200241055ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/si/LC_MESSAGES/000077500000000000000000000000001342136730200256725ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/si/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010741342136730200324100ustar00rootroot00000000000000,<=X!Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: si Language-Team: Sinhala (https://www.transifex.com/sphinx-doc/teams/36659/si/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/si/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014211342136730200324070ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Sinhala (https://www.transifex.com/sphinx-doc/teams/36659/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sk/000077500000000000000000000000001342136730200241075ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sk/LC_MESSAGES/000077500000000000000000000000001342136730200256745ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sk/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000012171342136730200324110ustar00rootroot00000000000000,<=XqPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Slavko , 2019 Language: sk Language-Team: Slovak (https://www.transifex.com/sphinx-doc/teams/36659/sk/) Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Trvalý odkaz na tento vzorecsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sk/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000017411342136730200324160ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Slavko , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Slavko , 2019\n" "Language-Team: Slovak (https://www.transifex.com/sphinx-doc/teams/36659/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "Trvalý odkaz na tento vzorec" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sl/000077500000000000000000000000001342136730200241105ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sl/LC_MESSAGES/000077500000000000000000000000001342136730200256755ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sl/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011621342136730200324110ustar00rootroot00000000000000,<=XWPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: sl Language-Team: Slovenian (https://www.transifex.com/sphinx-doc/teams/36659/sl/) Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sl/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000015071342136730200324170ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Slovenian (https://www.transifex.com/sphinx-doc/teams/36659/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sphinxcontrib.jsmath.pot000066400000000000000000000013261342136730200303770ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr/000077500000000000000000000000001342136730200241165ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr/LC_MESSAGES/000077500000000000000000000000001342136730200257035ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000012061342136730200324160ustar00rootroot00000000000000,<=XkPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: sr Language-Team: Serbian (https://www.transifex.com/sphinx-doc/teams/36659/sr/) 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) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000015331342136730200324240ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Serbian (https://www.transifex.com/sphinx-doc/teams/36659/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sr\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" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr@latin/000077500000000000000000000000001342136730200252465ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr@latin/LC_MESSAGES/000077500000000000000000000000001342136730200270335ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr@latin/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000012341342136730200335470ustar00rootroot00000000000000,<=(XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: sr@latin Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr%40latin/) 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) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sr@latin/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000015611342136730200335550ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sr@latin\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" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sv/000077500000000000000000000000001342136730200241225ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sv/LC_MESSAGES/000077500000000000000000000000001342136730200257075ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sv/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010741342136730200324250ustar00rootroot00000000000000,<=X!Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: sv Language-Team: Swedish (https://www.transifex.com/sphinx-doc/teams/36659/sv/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/sv/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014211342136730200324240ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Swedish (https://www.transifex.com/sphinx-doc/teams/36659/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ta/000077500000000000000000000000001342136730200240765ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ta/LC_MESSAGES/000077500000000000000000000000001342136730200256635ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ta/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010721342136730200323770ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: ta Language-Team: Tamil (https://www.transifex.com/sphinx-doc/teams/36659/ta/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ta/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014171342136730200324050ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Tamil (https://www.transifex.com/sphinx-doc/teams/36659/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/tr/000077500000000000000000000000001342136730200241175ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/tr/LC_MESSAGES/000077500000000000000000000000001342136730200257045ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/tr/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010731342136730200324210ustar00rootroot00000000000000,<=X Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: tr Language-Team: Turkish (https://www.transifex.com/sphinx-doc/teams/36659/tr/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/tr/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014201342136730200324200ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Turkish (https://www.transifex.com/sphinx-doc/teams/36659/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/uk_UA/000077500000000000000000000000001342136730200244765ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/uk_UA/LC_MESSAGES/000077500000000000000000000000001342136730200262635ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/uk_UA/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000014541342136730200330030ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: uk_UA Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/sphinx-doc/teams/36659/uk_UA/) Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/uk_UA/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000020011342136730200327730ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/sphinx-doc/teams/36659/uk_UA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ur/000077500000000000000000000000001342136730200241205ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ur/LC_MESSAGES/000077500000000000000000000000001342136730200257055ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ur/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010711342136730200324200ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: ur Language-Team: Urdu (https://www.transifex.com/sphinx-doc/teams/36659/ur/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/ur/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014161342136730200324260ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Urdu (https://www.transifex.com/sphinx-doc/teams/36659/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/vi/000077500000000000000000000000001342136730200241105ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/vi/LC_MESSAGES/000077500000000000000000000000001342136730200256755ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/vi/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000010701342136730200324070ustar00rootroot00000000000000,<=XPermalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: FULL NAME Language: vi Language-Team: Vietnamese (https://www.transifex.com/sphinx-doc/teams/36659/vi/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Permalink to this equationsphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/vi/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000014151342136730200324150ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Language-Team: Vietnamese (https://www.transifex.com/sphinx-doc/teams/36659/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_CN/000077500000000000000000000000001342136730200244735ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_CN/LC_MESSAGES/000077500000000000000000000000001342136730200262605ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_CN/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011121342136730200327670ustar00rootroot00000000000000,<=X4Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Hsiaoming Yang , 2019 Language: zh_CN Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 公式的永久链接sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_CN/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016421342136730200330020ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Hsiaoming Yang , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Hsiaoming Yang , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "公式的永久链接" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_TW/000077500000000000000000000000001342136730200245255ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_TW/LC_MESSAGES/000077500000000000000000000000001342136730200263125ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_TW/LC_MESSAGES/sphinxcontrib.jsmath.mo000066400000000000000000000011131342136730200330220ustar00rootroot00000000000000,<=X2Permalink to this equationProject-Id-Version: sphinxcontrib-jsmath 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-22 00:43+0900 PO-Revision-Date: 2019-01-12 15:10+0000 Last-Translator: Liang-Bo Wang , 2019 Language: zh_TW Language-Team: Chinese (Taiwan) (https://www.transifex.com/sphinx-doc/teams/36659/zh_TW/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 本公式的永久連結sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/locales/zh_TW/LC_MESSAGES/sphinxcontrib.jsmath.po000066400000000000000000000016401342136730200330320ustar00rootroot00000000000000# Translations template for sphinxcontrib-jsmath. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-jsmath project. # FIRST AUTHOR , 2019. # # Translators: # Liang-Bo Wang , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-jsmath 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-22 00:43+0900\n" "PO-Revision-Date: 2019-01-12 15:10+0000\n" "Last-Translator: Liang-Bo Wang , 2019\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/sphinx-doc/teams/36659/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/jsmath/__init__.py:51 msgid "Permalink to this equation" msgstr "本公式的永久連結" sphinxcontrib-jsmath-1.0.1/sphinxcontrib/jsmath/version.py000066400000000000000000000004451342136730200241120ustar00rootroot00000000000000# -*- coding: utf-8 -*- """ sphinxcontrib.jsmath.version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ __version__ = '1.0.1' __version_info__ = tuple(map(int, __version__.split('.'))) sphinxcontrib-jsmath-1.0.1/tests/000077500000000000000000000000001342136730200170325ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/tests/conftest.py000066400000000000000000000006221342136730200212310ustar00rootroot00000000000000""" pytest config for sphinx extensions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest from sphinx.testing.path import path pytest_plugins = 'sphinx.testing.fixtures' @pytest.fixture(scope='session') def rootdir(): return path(__file__).parent.abspath() / 'roots' sphinxcontrib-jsmath-1.0.1/tests/roots/000077500000000000000000000000001342136730200202005ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/tests/roots/test-basic/000077500000000000000000000000001342136730200222365ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/tests/roots/test-basic/conf.py000066400000000000000000000001111342136730200235260ustar00rootroot00000000000000extensions = ['sphinxcontrib.jsmath'] jsmath_path = '/path/to/jsmath.js' sphinxcontrib-jsmath-1.0.1/tests/roots/test-basic/index.rst000066400000000000000000000000731342136730200240770ustar00rootroot00000000000000test-basic ========== .. toctree:: :numbered: math sphinxcontrib-jsmath-1.0.1/tests/roots/test-basic/math.rst000066400000000000000000000003061342136730200237200ustar00rootroot00000000000000math ==== .. math:: E = mc^2 .. math:: :label: pythagorean a^2 + b^2 = c^2 .. math:: :label: y > x \in 2 Referencing equation :eq:`pythagorean` and :math:numref:`pythagorean`. sphinxcontrib-jsmath-1.0.1/tests/roots/test-nomath/000077500000000000000000000000001342136730200224435ustar00rootroot00000000000000sphinxcontrib-jsmath-1.0.1/tests/roots/test-nomath/conf.py000066400000000000000000000001111342136730200237330ustar00rootroot00000000000000extensions = ['sphinxcontrib.jsmath'] jsmath_path = '/path/to/jsmath.js' sphinxcontrib-jsmath-1.0.1/tests/roots/test-nomath/index.rst000066400000000000000000000000301342136730200242750ustar00rootroot00000000000000test-nomath =========== sphinxcontrib-jsmath-1.0.1/tests/test_jsmath.py000066400000000000000000000050041342136730200217300ustar00rootroot00000000000000""" test_jsmath ~~~~~~~~~~~ Test for jsmath extension. :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest @pytest.mark.sphinx('html', testroot='basic') def test_basic(app, status, warning): app.builder.build_all() content = (app.outdir / 'math.html').text() print(content) assert '
\nE = mc^2
' in content assert ('(1)' '
\n' 'a^2 + b^2 = c^2
' in content) assert ('(2)' '
\n' '\\begin{split}y > x \\in 2\\end{split}
' in content) assert '(1)' in content assert '(1)' in content @pytest.mark.sphinx('html', testroot='basic', confoverrides={'numfig': True, 'math_numfig': True}) def test_numfig_enabled(app, status, warning): app.builder.build_all() content = (app.outdir / 'math.html').text() assert '
\nE = mc^2
' in content assert ('(1.1)' '
\n' 'a^2 + b^2 = c^2
' in content) assert ('(1.2)' '
\n' '\\begin{split}y > x \\in 2\\end{split}
' in content) assert '(1.1)' in content assert '(1.1)' in content @pytest.mark.sphinx('html', testroot='nomath') def test_disabled_when_equations_not_found(app, status, warning): app.builder.build_all() content = (app.outdir / 'index.html').text() assert 'jsmath.js' not in content sphinxcontrib-jsmath-1.0.1/tox.ini000066400000000000000000000007021342136730200172020ustar00rootroot00000000000000[tox] envlist=flake8,mypy,py35,py36,py37,py38 [testenv] deps= pytest git+https://github.com/sphinx-doc/sphinx extras= test setenv = PYTHONWARNINGS = all,ignore::DeprecationWarning:docutils.io commands= pytest --durations 25 {posargs} [testenv:flake8] description = Run style checks. commands= flake8 [testenv:mypy] description = Run type checks. deps = mypy docutils-stubs commands= mypy sphinxcontrib/