pax_global_header00006660000000000000000000000064140522252630014513gustar00rootroot0000000000000052 comment=52bb52d76d0d3a4a8f7370a1d201dfef6f3ecb43 sphinxcontrib-htmlhelp-2.0.0/000077500000000000000000000000001405222526300162175ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/.github/000077500000000000000000000000001405222526300175575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/.github/workflows/000077500000000000000000000000001405222526300216145ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/.github/workflows/test.yml000066400000000000000000000035641405222526300233260ustar00rootroot00000000000000name: Test on: [push, pull_request] jobs: tests: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] max-parallel: 1 steps: - name: Print github context env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo $GITHUB_CONTEXT - name: Checkout code uses: actions/checkout@v2 with: fetch-depth: 1 - name: pycache uses: actions/cache@v2 id: pycache with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} restore-keys: | ${{ runner.os }}-pip- - name: Setup python ${{ matrix.python-version }} uses: actions/setup-python@v2 if: "!endsWith(matrix.python-version, '-dev')" with: python-version: ${{ matrix.python-version }} - name: Setup python ${{ matrix.python-version }} (via deadsnakes) uses: deadsnakes/action@v2.1.1 if: "endsWith(matrix.python-version, '-dev')" with: python-version: ${{ matrix.python-version }} - name: Install tox and test related run: | python -m pip install --upgrade pip pip install tox tox-gh-actions - name: Run tox run: | python -V tox -- -v --durations=25 lint: runs-on: ubuntu-latest strategy: matrix: env: [flake8, mypy] steps: - name: Checkout code uses: actions/checkout@v2 with: fetch-depth: 1 - name: Setup python uses: actions/setup-python@v2 with: python-version: 3.8 - name: Install tox and any other dependencies for test run: | python -m pip install --upgrade pip pip install tox tox-gh-actions - name: Run tox run: tox -e ${{ matrix.env }} sphinxcontrib-htmlhelp-2.0.0/.gitignore000066400000000000000000000001521405222526300202050ustar00rootroot00000000000000*.pyc *.egg *.so *.swp .DS_Store .mypy_cache/ .tags .tox/ build/ dist/ sphinxcontrib_htmlhelp.egg-info/ sphinxcontrib-htmlhelp-2.0.0/CHANGES000066400000000000000000000007651405222526300172220ustar00rootroot00000000000000Release 2.0.0 (unreleased) ========================== * Drop python-3.5 support * Remove deprecated method: ``HTMLHelpBuilder.open_file()`` * #6685: htmlhelp builder should generate HTML4 docs instead of HTML5 Release 1.0.2 (2019-04-12) ========================== * #6229: htmlhelp builder generates invalid .hhc file Release 1.0.1 (2019-02-15) ========================== * Remove debug print Release 1.0.0 (2019-02-15) ========================== * Initial release (copied from sphinx package) sphinxcontrib-htmlhelp-2.0.0/LICENSE000066400000000000000000000026371405222526300172340ustar00rootroot00000000000000License for sphinxcontrib-htmlhelp ================================== 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-htmlhelp-2.0.0/MANIFEST.in000066400000000000000000000003071405222526300177550ustar00rootroot00000000000000include README.rst include LICENSE include CHANGES include tox.ini recursive-include sphinxcontrib/htmlhelp/templates * recursive-include sphinxcontrib/htmlhelp/locales * recursive-include tests * sphinxcontrib-htmlhelp-2.0.0/Makefile000066400000000000000000000022251405222526300176600ustar00rootroot00000000000000PYTHON ?= 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-dist:files 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-htmlhelp-2.0.0/README.rst000066400000000000000000000015271405222526300177130ustar00rootroot00000000000000====================== sphinxcontrib-htmlhelp ====================== sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files. For more details, please visit http://www.sphinx-doc.org/. Installing ========== Install from PyPI:: pip install -U sphinxcontrib-htmlhelp 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-htmlhelp Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst sphinxcontrib-htmlhelp-2.0.0/release-checklist.rst000066400000000000000000000016201405222526300223370ustar00rootroot00000000000000ToDo for releasing ================== preparation ----------- 1. run ``python setup.py extract_messages`` 2. run ``(cd sphinxcontrib/htmlhelp/locales/; tx push -s)`` 3. call for translation release ------- 1. check travis-ci testing result 2. run ``(cd sphinxcontrib/htmlhelp/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/htmlhelp/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-htmlhelp 12. tagging with version name. e.g.: git tag 1.1.0 13. bump version in ``sphinxcontrib/htmlhelp/version.py`` sphinxcontrib-htmlhelp-2.0.0/setup.cfg000066400000000000000000000007741405222526300200500ustar00rootroot00000000000000[egg_info] tag_build = .dev tag_date = true [aliases] release = egg_info -Db '' [extract_messages] output_file = sphinxcontrib/htmlhelp/locales/sphinxcontrib.htmlhelp.pot keywords = _ __ [compile_catalog] domain = sphinxcontrib.htmlhelp directory = sphinxcontrib/htmlhelp/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 strict_optional = False sphinxcontrib-htmlhelp-2.0.0/setup.py000066400000000000000000000042551405222526300177370ustar00rootroot00000000000000# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages long_desc = ''' sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files. ''' extras_require = { 'test': [ 'pytest', 'html5lib', ], 'lint': [ 'flake8', 'mypy', 'docutils-stubs', ] } 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/htmlhelp/version.py') namespace = {} with open(version_file, 'rt') as f: exec(f.read(), namespace) return namespace['__version__'] setup( name='sphinxcontrib-htmlhelp', version=get_version(), url='http://sphinx-doc.org/', download_url='https://pypi.org/project/sphinxcontrib-htmlhelp/', license='BSD', author='Georg Brandl', author_email='georg@python.org', description="sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files", long_description=long_desc, long_description_content_type='text/x-rst', 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.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Framework :: Sphinx', 'Framework :: Sphinx :: Extension', 'Topic :: Documentation', 'Topic :: Documentation :: Sphinx', 'Topic :: Text Processing', 'Topic :: Utilities', ], platforms='any', python_requires=">=3.6", packages=find_packages(exclude=['tests']), include_package_data=True, extras_require=extras_require, namespace_packages=['sphinxcontrib'], ) sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/000077500000000000000000000000001405222526300211115ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/__init__.py000066400000000000000000000005361405222526300232260ustar00rootroot00000000000000""" sphinxcontrib ~~~~~~~~~~~~~ This package is a namespace package that contains all extensions distributed in the ``sphinx-contrib`` distribution. :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pkg_resources pkg_resources.declare_namespace(__name__) sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/000077500000000000000000000000001405222526300227265ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/__init__.py000066400000000000000000000271661405222526300250530ustar00rootroot00000000000000""" sphinxcontrib.htmlhelp ~~~~~~~~~~~~~~~~~~~~~~ Build HTML help support files. :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ import html import os from os import path from typing import Any, Dict, List, Set, Tuple, Type from docutils import nodes from docutils.nodes import Element, Node, document from sphinx import addnodes from sphinx.application import Sphinx from sphinx.builders.html import StandaloneHTMLBuilder from sphinx.config import Config from sphinx.environment.adapters.indexentries import IndexEntries from sphinx.locale import get_translation from sphinx.util import logging from sphinx.util import progress_message from sphinx.util.fileutil import copy_asset_file from sphinx.util.nodes import NodeMatcher from sphinx.util.osutil import make_filename_from_project, relpath from sphinx.util.template import SphinxRenderer from sphinx.writers.html import HTMLTranslator from sphinxcontrib.htmlhelp.version import __version__ logger = logging.getLogger(__name__) __ = get_translation(__name__, 'console') package_dir = path.abspath(path.dirname(__file__)) template_dir = path.join(package_dir, 'templates') # The following list includes only languages supported by Sphinx. See # https://docs.microsoft.com/en-us/previous-versions/windows/embedded/ms930130(v=msdn.10) # for more. chm_locales = { # lang: LCID, encoding 'ca': (0x403, 'cp1252'), 'cs': (0x405, 'cp1250'), 'da': (0x406, 'cp1252'), 'de': (0x407, 'cp1252'), 'en': (0x409, 'cp1252'), 'es': (0x40a, 'cp1252'), 'et': (0x425, 'cp1257'), 'fa': (0x429, 'cp1256'), 'fi': (0x40b, 'cp1252'), 'fr': (0x40c, 'cp1252'), 'hr': (0x41a, 'cp1250'), 'hu': (0x40e, 'cp1250'), 'it': (0x410, 'cp1252'), 'ja': (0x411, 'cp932'), 'ko': (0x412, 'cp949'), 'lt': (0x427, 'cp1257'), 'lv': (0x426, 'cp1257'), 'nl': (0x413, 'cp1252'), 'no_NB': (0x414, 'cp1252'), 'pl': (0x415, 'cp1250'), 'pt_BR': (0x416, 'cp1252'), 'ru': (0x419, 'windows-1251'), # emit as 'sk': (0x41b, 'cp1250'), 'sl': (0x424, 'cp1250'), 'sv': (0x41d, 'cp1252'), 'tr': (0x41f, 'cp1254'), 'uk_UA': (0x422, 'cp1251'), 'zh_CN': (0x804, 'cp936'), 'zh_TW': (0x404, 'cp950'), } def chm_htmlescape(s: str, quote: bool = True) -> str: """ chm_htmlescape() is a wrapper of html.escape(). .hhc/.hhk files don't recognize hex escaping, we need convert hex escaping to decimal escaping. for example: ``'`` -> ``'`` html.escape() may generates a hex escaping ``'`` for single quote ``'``, this wrapper fixes this. """ s = html.escape(s, quote) s = s.replace(''', ''') # re-escape as decimal return s class ToCTreeVisitor(nodes.NodeVisitor): def __init__(self, document: document) -> None: super().__init__(document) self.body = [] # type: List[str] self.depth = 0 def append(self, text: str) -> None: self.body.append(text) def astext(self) -> str: return '\n'.join(self.body) def unknown_visit(self, node: Node) -> None: pass def unknown_departure(self, node: Node) -> None: pass def visit_bullet_list(self, node: Element) -> None: if self.depth > 0: self.append('
    ') self.depth += 1 def depart_bullet_list(self, node: Element) -> None: self.depth -= 1 if self.depth > 0: self.append('
') def visit_list_item(self, node: Element) -> None: self.append('
  • ') self.depth += 1 def depart_list_item(self, node: Element) -> None: self.depth -= 1 def visit_reference(self, node: Element) -> None: title = chm_htmlescape(node.astext(), True) self.append(' ' % title) self.append(' ' % node['refuri']) self.append('') raise nodes.SkipNode class HTMLHelpBuilder(StandaloneHTMLBuilder): """ Builder that also outputs Windows HTML help project, contents and index files. Adapted from the original Doc/tools/prechm.py. """ name = 'htmlhelp' epilog = __('You can now run HTML Help Workshop with the .htp file in ' '%(outdir)s.') # don't copy the reST source copysource = False supported_image_types = ['image/png', 'image/gif', 'image/jpeg'] # don't add links add_permalinks = False # don't add sidebar etc. embedded = True # don't generate search index or include search page search = False lcid = 0x409 encoding = 'cp1252' def init(self) -> None: # the output files for HTML help is .html by default self.out_suffix = '.html' self.link_suffix = '.html' super().init() # determine the correct locale setting locale = chm_locales.get(self.config.language) if locale is not None: self.lcid, self.encoding = locale @property def default_translator_class(self) -> "Type[nodes.NodeVisitor]": # type: ignore # Use HTML4 writer always return HTMLTranslator def prepare_writing(self, docnames: Set[str]) -> None: super().prepare_writing(docnames) self.globalcontext['html5_doctype'] = False def update_page_context(self, pagename: str, templatename: str, ctx: Dict, event_arg: str) -> None: # NOQA ctx['encoding'] = self.encoding def handle_finish(self) -> None: self.copy_stopword_list() self.build_project_file() self.build_toc_file() self.build_hhx(self.outdir, self.config.htmlhelp_basename) def write_doc(self, docname: str, doctree: document) -> None: for node in doctree.traverse(nodes.reference): # add ``target=_blank`` attributes to external links if node.get('internal') is None and 'refuri' in node: node['target'] = '_blank' super().write_doc(docname, doctree) def render(self, name: str, context: Dict) -> str: template = SphinxRenderer(template_dir) return template.render(name, context) @progress_message(__('copying stopword list')) def copy_stopword_list(self) -> None: """Copy a stopword list (.stp) to outdir. The stopword list contains a list of words the full text search facility shouldn't index. Note that this list must be pretty small. Different versions of the MS docs claim the file has a maximum size of 256 or 512 bytes (including \r\n at the end of each line). Note that "and", "or", "not" and "near" are operators in the search language, so no point indexing them even if we wanted to. """ template = path.join(template_dir, 'project.stp') filename = path.join(self.outdir, self.config.htmlhelp_basename + '.stp') copy_asset_file(template, filename) @progress_message(__('writing project file')) def build_project_file(self) -> None: """Create a project file (.hhp) on outdir.""" # scan project files project_files = [] # type: List[str] for root, dirs, files in os.walk(self.outdir): dirs.sort() files.sort() in_staticdir = root.startswith(path.join(self.outdir, '_static')) for fn in sorted(files): if (in_staticdir and not fn.endswith('.js')) or fn.endswith('.html'): fn = relpath(path.join(root, fn), self.outdir) project_files.append(fn.replace(os.sep, '\\')) filename = path.join(self.outdir, self.config.htmlhelp_basename + '.hhp') with open(filename, 'w', encoding=self.encoding, errors='xmlcharrefreplace') as f: context = { 'outname': self.config.htmlhelp_basename, 'title': self.config.html_title, 'version': self.config.version, 'project': self.config.project, 'lcid': self.lcid, 'master_doc': self.config.master_doc + self.out_suffix, 'files': project_files, } body = self.render('project.hhp', context) f.write(body) @progress_message(__('writing TOC file')) def build_toc_file(self) -> None: """Create a ToC file (.hhp) on outdir.""" filename = path.join(self.outdir, self.config.htmlhelp_basename + '.hhc') with open(filename, 'w', encoding=self.encoding, errors='xmlcharrefreplace') as f: toctree = self.env.get_and_resolve_doctree(self.config.master_doc, self, prune_toctrees=False) visitor = ToCTreeVisitor(toctree) matcher = NodeMatcher(addnodes.compact_paragraph, toctree=True) for node in toctree.traverse(matcher): # type: addnodes.compact_paragraph node.walkabout(visitor) context = { 'body': visitor.astext(), 'suffix': self.out_suffix, 'short_title': self.config.html_short_title, 'master_doc': self.config.master_doc, 'domain_indices': self.domain_indices, } f.write(self.render('project.hhc', context)) def build_hhx(self, outdir: str, outname: str) -> None: logger.info(__('writing index file...')) index = IndexEntries(self.env).create_index(self) filename = path.join(outdir, outname + '.hhk') with open(filename, 'w', encoding=self.encoding, errors='xmlcharrefreplace') as f: f.write('
      \n') def write_index(title: str, refs: List[Tuple[str, str]], subitems: List[Tuple[str, List[Tuple[str, str]]]]) -> None: # NOQA def write_param(name: str, value: str) -> None: item = ' \n' % (name, value) f.write(item) title = chm_htmlescape(title, True) f.write('
    • \n') write_param('Keyword', title) if len(refs) == 0: write_param('See Also', title) elif len(refs) == 1: write_param('Local', refs[0][1]) else: for i, ref in enumerate(refs): # XXX: better title? write_param('Name', '[%d] %s' % (i, ref[1])) write_param('Local', ref[1]) f.write('\n') if subitems: f.write('
        ') for subitem in subitems: write_index(subitem[0], subitem[1], []) f.write('
      ') for (key, group) in index: for title, (refs, subitems, key_) in group: write_index(title, refs, subitems) f.write('
    \n') def default_htmlhelp_basename(config: Config) -> str: """Better default htmlhelp_basename setting.""" return make_filename_from_project(config.project) + 'doc' def setup(app: Sphinx) -> Dict[str, Any]: app.setup_extension('sphinx.builders.html') app.add_builder(HTMLHelpBuilder) app.add_message_catalog(__name__, path.join(package_dir, 'locales')) app.add_config_value('htmlhelp_basename', default_htmlhelp_basename, '') app.add_config_value('htmlhelp_file_suffix', None, 'html', [str]) app.add_config_value('htmlhelp_link_suffix', None, 'html', [str]) return { 'version': __version__, 'parallel_read_safe': True, 'parallel_write_safe': True, } sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/000077500000000000000000000000001405222526300243505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/.tx/000077500000000000000000000000001405222526300250615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/.tx/config000066400000000000000000000003401405222526300262460ustar00rootroot00000000000000[main] host = https://www.transifex.com [sphinx-1.sphinxcontrib-htmlhelp-pot] file_filter = /LC_MESSAGES/sphinxcontrib.htmlhelp.po minimum_perc = 0 source_file = sphinxcontrib.htmlhelp.pot source_lang = en type = PO sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ar/000077500000000000000000000000001405222526300247525ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/000077500000000000000000000000001405222526300265375ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000020011405222526300335730ustar00rootroot00000000000000L|D}/&D)k'" You can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Abdullah ahmed , 2020 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.9.1 تستطيع الأن في %(outdir)sنسخ قائمة كلمات الوقوفكتابة ملف فهرس الكتابكتابة ملف الفهرس ...كتابة ملف المشروعsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030501405222526300336030ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Abdullah ahmed , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Abdullah ahmed , 2020\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "تستطيع الأن في %(outdir)s" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "نسخ قائمة كلمات الوقوف" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "كتابة ملف المشروع" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "كتابة ملف فهرس الكتاب" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "كتابة ملف الفهرس ..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bg/000077500000000000000000000000001405222526300247405ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/000077500000000000000000000000001405222526300265255ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007721405222526300335760ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME Language: bg Language-Team: Bulgarian (https://www.transifex.com/sphinx-doc/teams/36659/bg/) 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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022351405222526300335750ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Language-Team: Bulgarian (https://www.transifex.com/sphinx-doc/teams/36659/bg/)\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: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bn/000077500000000000000000000000001405222526300247475ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/000077500000000000000000000000001405222526300265345ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701405222526300336030ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331405222526300336020ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ca/000077500000000000000000000000001405222526300247335ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/000077500000000000000000000000001405222526300265205ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701405222526300335670ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331405222526300335660ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cak/000077500000000000000000000000001405222526300251065ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cak/LC_MESSAGES/000077500000000000000000000000001405222526300266735ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000007221405222526300336600ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cak/LC_MESSAGES$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000022371405222526300336660ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cak/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cs/000077500000000000000000000000001405222526300247555ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/000077500000000000000000000000001405222526300265425ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011061405222526300336030ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023511405222526300336110ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cy/000077500000000000000000000000001405222526300247635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/000077500000000000000000000000001405222526300265505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010431405222526300336110ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023061405222526300336170ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/da/000077500000000000000000000000001405222526300247345ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/000077500000000000000000000000001405222526300265215ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000015761405222526300335750ustar00rootroot00000000000000L|D}A-EUkYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Joe Hansen , 2019 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.9.1 Du kan nu afvikle HTML Help Workshop med .htp-filen i %(outdir)s.kopierer stopword-listeskriver TOC-filskriver indeksfil ...skriver projektfilsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000026371405222526300335770ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Joe Hansen , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Joe Hansen , 2019\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "Du kan nu afvikle HTML Help Workshop med .htp-filen i %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "kopierer stopword-liste" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "skriver projektfil" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "skriver TOC-fil" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "skriver indeksfil ..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/de/000077500000000000000000000000001405222526300247405ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/000077500000000000000000000000001405222526300265255ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671405222526300336020ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321405222526300335720ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/el/000077500000000000000000000000001405222526300247505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/000077500000000000000000000000001405222526300265355ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000020321405222526300335750ustar00rootroot00000000000000L|D}x(p!5(You can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: tzoumakers tzoumakers , 2019 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.9.1 Μπορείτε τώρα να εκτελέσετε το HTML Help Workshop με το αρχείο .htp σε %(outdir)s.αντιγραφή λίστας stopwordεγγραφή αρχείου TOCεγγραφή αρχείου ευρετηρίου...εγγραφή αρχείου έργουsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000031161405222526300336040ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # tzoumakers tzoumakers , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: tzoumakers tzoumakers , 2019\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Μπορείτε τώρα να εκτελέσετε το HTML Help Workshop με το αρχείο .htp σε " "%(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "αντιγραφή λίστας stopword" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "εγγραφή αρχείου έργου" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "εγγραφή αρχείου TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "εγγραφή αρχείου ευρετηρίου..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eo/000077500000000000000000000000001405222526300247535ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/000077500000000000000000000000001405222526300265405ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007721405222526300336110ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022351405222526300336100ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/es/000077500000000000000000000000001405222526300247575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/000077500000000000000000000000001405222526300265445ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017021405222526300336070ustar00rootroot00000000000000L|D}J%MsYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Leonardo J. Caballero G. , 2020 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.9.1 Ahora puede ejecutar HTML Help Workshop con el archivo .htp en %(outdir)s.copiando la lista de palabras vacíasescribiendo archivo TOCescribiendo archivo indexescribir archivo de proyectosphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030671405222526300336200ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Edward Villegas-Pulgarin , 2019 # Leonardo J. Caballero G. , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Leonardo J. Caballero G. , 2020\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Ahora puede ejecutar HTML Help Workshop con el archivo .htp en %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "copiando la lista de palabras vacías" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "escribir archivo de proyecto" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "escribiendo archivo TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "escribiendo archivo index" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/et/000077500000000000000000000000001405222526300247605ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/000077500000000000000000000000001405222526300265455ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000015421405222526300336120ustar00rootroot00000000000000DlDmO-HYou can now run HTML Help Workshop with the .htp file in %(outdir)s.writing TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 Võid nüüd käivitada HTML Help Workshopi .htp failiga kataloogis %(outdir)s.sisukorrafaili kirjutamineindeksfaili kirjutamine...projektifaili kirjutaminesphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000026501405222526300336160ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Ivar Smolin , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Võid nüüd käivitada HTML Help Workshopi .htp failiga kataloogis %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "projektifaili kirjutamine" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "sisukorrafaili kirjutamine" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "indeksfaili kirjutamine..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eu/000077500000000000000000000000001405222526300247615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/000077500000000000000000000000001405222526300265465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671405222526300336230ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321405222526300336130ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fa/000077500000000000000000000000001405222526300247365ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/000077500000000000000000000000001405222526300265235ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000020141405222526300335630ustar00rootroot00000000000000L|D}}8c.!You can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Hadi F , 2021 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.9.1 هم اکنون می توانید کارگاه راهنمای HTML را با فایل .htp در %(outdir)s اجرا کنید.رونوشت از فهرست واژگان پالایشینوشتن فایل فهرست عنوان هانوشتن فایل نمایه...نوشتن فایل پروژهsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030551405222526300335740ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Hadi F , 2021 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Hadi F , 2021\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "هم اکنون می توانید کارگاه راهنمای HTML را با فایل .htp در %(outdir)s اجرا " "کنید." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "رونوشت از فهرست واژگان پالایشی" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "نوشتن فایل پروژه" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "نوشتن فایل فهرست عنوان ها" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "نوشتن فایل نمایه..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fi/000077500000000000000000000000001405222526300247465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/000077500000000000000000000000001405222526300265335ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701405222526300336020ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331405222526300336010ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fr/000077500000000000000000000000001405222526300247575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/000077500000000000000000000000001405222526300265445ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017421405222526300336130ustar00rootroot00000000000000L|D}X G0h$#You can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Denis Bitouzé , 2021 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.9.1 Vous pouvez maintenant exécuter HTML Help Workshop sur le fichier .htp dans %(outdir)s.Copie de la liste des mots videsenregistrement du fichier de table des matièresenregistrement du fichier d'index...enregistrement du fichier de projetsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000031411405222526300336110ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # LAURENT Raphaël , 2019 # Jean-François B. , 2019 # Denis Bitouzé , 2021 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Denis Bitouzé , 2021\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Vous pouvez maintenant exécuter HTML Help Workshop sur le fichier .htp dans " "%(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "Copie de la liste des mots vides" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "enregistrement du fichier de projet" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "enregistrement du fichier de table des matières" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "enregistrement du fichier d'index..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/he/000077500000000000000000000000001405222526300247445ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/000077500000000000000000000000001405222526300265315ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011251405222526300335730ustar00rootroot00000000000000$,'-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023701405222526300336010ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi/000077500000000000000000000000001405222526300247505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/000077500000000000000000000000001405222526300265355ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000024411405222526300336010ustar00rootroot00000000000000L|D}vK3VJYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Ajay Singh , 2019 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.9.1 अब आप %(outdir)s में .एचटीपी #.htp# फाइल पर एच्.टी.एम्.एल. हेल्प वर्कशॉप #HTML Help Workshop# चला सकते हैं.निषिद्धशब्द सूची की प्रतिलिपि बनाई जा रही हैविषय-सूची फाइल लिखी जा रही हैअनुक्रमाणिका फाइल लिखी जा रही हैपरियोजना फाइल लिखी जा रही हैsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000035101405222526300336020ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Ajay Singh , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Ajay Singh , 2019\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "अब आप %(outdir)s में .एचटीपी #.htp# फाइल पर एच्.टी.एम्.एल. हेल्प वर्कशॉप " "#HTML Help Workshop# चला सकते हैं." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "निषिद्धशब्द सूची की प्रतिलिपि बनाई जा रही है" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "परियोजना फाइल लिखी जा रही है" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "विषय-सूची फाइल लिखी जा रही है" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "अनुक्रमाणिका फाइल लिखी जा रही है" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi_IN/000077500000000000000000000000001405222526300253365ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi_IN/LC_MESSAGES/000077500000000000000000000000001405222526300271235ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010041405222526300341020ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi_IN/LC_MESSAGES$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000022471405222526300341170ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi_IN/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hr/000077500000000000000000000000001405222526300247615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/000077500000000000000000000000001405222526300265465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011011405222526300336020ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME 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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023441405222526300336170ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hu/000077500000000000000000000000001405222526300247645ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/000077500000000000000000000000001405222526300265515ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016571405222526300336250ustar00rootroot00000000000000L|D}`+:fYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Balázs Úr, 2020 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.9.1 Most már futtathatja a HTML Help Workshopot a(z) %(outdir)s könyvtárban lévő .htp fájllal.kiszűrendő szavak listájának másolásatartalomjegyzékfájl írásaindexfájl írása…projektfájl írásasphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027011405222526300336170ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Balázs Úr, 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Balázs Úr, 2020\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Most már futtathatja a HTML Help Workshopot a(z) %(outdir)s könyvtárban lévő" " .htp fájllal." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "kiszűrendő szavak listájának másolása" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "projektfájl írása" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "tartalomjegyzékfájl írása" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "indexfájl írása…" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/id/000077500000000000000000000000001405222526300247445ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/000077500000000000000000000000001405222526300265315ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016411405222526300335760ustar00rootroot00000000000000L|D}TD_rYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: oon arfiandwi , 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.9.1 Anda sekarang dapat menjalankan HTML Help Workshop dengan berkas .htp di %(outdir)s.menyalin daftar kata hentimenulis berkas TOCmenulis berkas indeks...menulis berkas proyeksphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027461405222526300336100ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Tumpal Gemelli, 2019 # oon arfiandwi , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: oon arfiandwi , 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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Anda sekarang dapat menjalankan HTML Help Workshop dengan berkas .htp di " "%(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "menyalin daftar kata henti" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "menulis berkas proyek" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "menulis berkas TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "menulis berkas indeks..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/it/000077500000000000000000000000001405222526300247645ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/000077500000000000000000000000001405222526300265515ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701405222526300336200ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME 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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331405222526300336170ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ja/000077500000000000000000000000001405222526300247425ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/000077500000000000000000000000001405222526300265275ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017541405222526300336010ustar00rootroot00000000000000L|D}[Nm0-You can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Takayuki Shimizukawa , 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.9.1 %(outdir)sに作成された .htp ファイルをHTML Help Workshopで使用できます。stopword の一覧をコピーTOC ファイルを書き出しインデックスファイルを書き出し...プロジェクトファイルを書き出しsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030311405222526300335720ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Takayuki Shimizukawa , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Takayuki Shimizukawa , 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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "%(outdir)sに作成された .htp ファイルをHTML Help Workshopで使用できます。" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "stopword の一覧をコピー" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "プロジェクトファイルを書き出し" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "TOC ファイルを書き出し" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "インデックスファイルを書き出し..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ko/000077500000000000000000000000001405222526300247615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/000077500000000000000000000000001405222526300265465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016561405222526300336210ustar00rootroot00000000000000L|D}e>ZsYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 이제 %(outdir)s에서 .htp 파일을 이용하여 HTML Help Workshop을 실행할 수 있습니다.불용어 목록 복사 중목차 파일 쓰는 중색인 파일 쓰는 중…프로젝트 파일 쓰는 중sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027031405222526300336160ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # YT H , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "이제 %(outdir)s에서 .htp 파일을 이용하여 HTML Help Workshop을 실행할 수 있습니다." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "불용어 목록 복사 중" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "프로젝트 파일 쓰는 중" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "목차 파일 쓰는 중" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "색인 파일 쓰는 중…" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lt/000077500000000000000000000000001405222526300247675ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/000077500000000000000000000000001405222526300265545ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011761405222526300336240ustar00rootroot00000000000000$,P-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000024411405222526300336230ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lv/000077500000000000000000000000001405222526300247715ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/000077500000000000000000000000001405222526300265565ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010331405222526300336160ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022761405222526300336330ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/mk/000077500000000000000000000000001405222526300247575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/000077500000000000000000000000001405222526300265445ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010311405222526300336020ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022741405222526300336170ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nb_NO/000077500000000000000000000000001405222526300253435ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nb_NO/LC_MESSAGES/000077500000000000000000000000001405222526300271305ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010211405222526300341060ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nb_NO/LC_MESSAGES$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000022641405222526300341230ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nb_NO/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ne/000077500000000000000000000000001405222526300247525ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/000077500000000000000000000000001405222526300265375ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671405222526300336140ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321405222526300336040ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nl/000077500000000000000000000000001405222526300247615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/000077500000000000000000000000001405222526300265465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007661405222526300336220ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME 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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022311405222526300336120ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pl/000077500000000000000000000000001405222526300247635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/000077500000000000000000000000001405222526300265505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000012111405222526300336060ustar00rootroot00000000000000$,[-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME 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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000024541405222526300336230ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt/000077500000000000000000000000001405222526300247735ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/000077500000000000000000000000001405222526300265605ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007731405222526300336320ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022361405222526300336310ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_BR/000077500000000000000000000000001405222526300253565ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/000077500000000000000000000000001405222526300271435ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000017151405222526300341330ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGESL|D}N Vw You can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Rafael Fontenelle , 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.9.1 Você pode agora executar HTML Help Workshop com o arquivo .htp em %(outdir)s.copiando lista de palavras vaziaescrevendo arquivo TOCescrevendo arquivo de índice...escrevendo arquivo de projetosphinxcontrib.htmlhelp.po000066400000000000000000000027761405222526300341460ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Rafael Fontenelle , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Rafael Fontenelle , 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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Você pode agora executar HTML Help Workshop com o arquivo .htp em " "%(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "copiando lista de palavras vazia" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "escrevendo arquivo de projeto" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "escrevendo arquivo TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "escrevendo arquivo de índice..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_PT/000077500000000000000000000000001405222526300253765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_PT/LC_MESSAGES/000077500000000000000000000000001405222526300271635ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010141405222526300341430ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_PT/LC_MESSAGES$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000022571405222526300341600ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_PT/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ro/000077500000000000000000000000001405222526300247705ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/000077500000000000000000000000001405222526300265555ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010421405222526300336150ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023051405222526300336230ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ru/000077500000000000000000000000001405222526300247765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/000077500000000000000000000000001405222526300265635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000012021405222526300336210ustar00rootroot00000000000000$,T-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME 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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000024451405222526300336360ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/si/000077500000000000000000000000001405222526300247635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/000077500000000000000000000000001405222526300265505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701405222526300336170ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331405222526300336160ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sk/000077500000000000000000000000001405222526300247655ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/000077500000000000000000000000001405222526300265525ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017611405222526300336220ustar00rootroot00000000000000L|D}I/yYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Slavko , 2021 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.9.1 teraz môžete spustiť HTML Help Workshop so súborom .htp v %(outdir)s.kopírovanie zoznamu stop slovzapisovanie súboru s obsahomzapisovanie súboru indexu…zapisovanie súboru projektusphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030131405222526300336150ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Slavko , 2021 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Slavko , 2021\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "teraz môžete spustiť HTML Help Workshop so súborom .htp v %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "kopírovanie zoznamu stop slov" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "zapisovanie súboru projektu" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "zapisovanie súboru s obsahom" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "zapisovanie súboru indexu…" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sl/000077500000000000000000000000001405222526300247665ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/000077500000000000000000000000001405222526300265535ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010561405222526300336200ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023211405222526300336170ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sphinxcontrib.htmlhelp.pot000066400000000000000000000021401405222526300315770ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sq/000077500000000000000000000000001405222526300247735ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/000077500000000000000000000000001405222526300265605ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016711405222526300336300ustar00rootroot00000000000000L|D}I(>gYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Besnik Bleta , 2020 Language: sq Language-Team: Albanian (https://www.transifex.com/sphinx-doc/teams/36659/sq/) 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.9.1 Tani mund të xhironi HTML Help Workshop me kartelën .htp te %(outdir)s.po kopjohet listë fjalësh të ndaluarapo shkruhet kartelë TLpo shkruhet kartelë treguesipo shkruhet kartelë ndihmesphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027441405222526300336350ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Besnik Bleta , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Besnik Bleta , 2020\n" "Language-Team: Albanian (https://www.transifex.com/sphinx-doc/teams/36659/sq/)\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: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Tani mund të xhironi HTML Help Workshop me kartelën .htp te %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "po kopjohet listë fjalësh të ndaluara" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "po shkruhet kartelë ndihme" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "po shkruhet kartelë TL" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "po shkruhet kartelë treguesi" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr/000077500000000000000000000000001405222526300247745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/000077500000000000000000000000001405222526300265615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011021405222526300336160ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023451405222526300336330ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr@latin/000077500000000000000000000000001405222526300261245ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/000077500000000000000000000000001405222526300277115ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000011261405222526300346750ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES$,(-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME Language: sr@latin Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr@latin/) 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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000023711405222526300347030ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr@latin/)\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr_RS/000077500000000000000000000000001405222526300254005ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr_RS/LC_MESSAGES/000077500000000000000000000000001405222526300271655ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000011211405222526300341440ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr_RS/LC_MESSAGES$,#-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME Language: sr_RS Language-Team: Serbian (Serbia) (https://www.transifex.com/sphinx-doc/teams/36659/sr_RS/) 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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000023641405222526300341610ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr_RS/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Language-Team: Serbian (Serbia) (https://www.transifex.com/sphinx-doc/teams/36659/sr_RS/)\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_RS\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sv/000077500000000000000000000000001405222526300250005ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/000077500000000000000000000000001405222526300265655ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701405222526300336340ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331405222526300336330ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ta/000077500000000000000000000000001405222526300247545ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/000077500000000000000000000000001405222526300265415ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007661405222526300336150ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022311405222526300336050ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/te/000077500000000000000000000000001405222526300247605ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/000077500000000000000000000000001405222526300265455ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671405222526300336220ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME Language: te Language-Team: Telugu (https://www.transifex.com/sphinx-doc/teams/36659/te/) 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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321405222526300336120ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Language-Team: Telugu (https://www.transifex.com/sphinx-doc/teams/36659/te/)\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: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/tr/000077500000000000000000000000001405222526300247755ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/000077500000000000000000000000001405222526300265625ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016531405222526300336320ustar00rootroot00000000000000L|D}`%3YrYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: BouRock, 2020 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.9.1 Artık %(outdir)s içindeki .htp dosyası ile HTML Yardım Atölyesi'ni çalıştırabilirsiniz.gereksiz kelime listesi kopyalanıyorTOC dosyası yazılıyordizin dosyası yazılıyor...proje dosyası yazılıyorsphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000026711405222526300336360ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # BouRock, 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: BouRock, 2020\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" "Artık %(outdir)s içindeki .htp dosyası ile HTML Yardım Atölyesi'ni " "çalıştırabilirsiniz." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "gereksiz kelime listesi kopyalanıyor" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "proje dosyası yazılıyor" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "TOC dosyası yazılıyor" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "dizin dosyası yazılıyor..." sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/uk_UA/000077500000000000000000000000001405222526300253545ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/uk_UA/LC_MESSAGES/000077500000000000000000000000001405222526300271415ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000013501405222526300341240ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/uk_UA/LC_MESSAGES$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000026131405222526300341320ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/uk_UA/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ur/000077500000000000000000000000001405222526300247765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/000077500000000000000000000000001405222526300265635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007651405222526300336360ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022301405222526300336260ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/vi/000077500000000000000000000000001405222526300247665ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/000077500000000000000000000000001405222526300265535ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007641405222526300336250ustar00rootroot00000000000000$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+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.9.1 sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022271405222526300336240ustar00rootroot00000000000000# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_CN/000077500000000000000000000000001405222526300253515ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/000077500000000000000000000000001405222526300271365ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000016251405222526300341260ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGESL|D}SAWiYou can now run HTML Help Workshop with the .htp file in %(outdir)s.copying stopword listwriting TOC filewriting index file...writing project fileProject-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: Jian Dai , 2020 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.9.1 你现在可以打开 %(outdir)s 中的 .hlp 文件运行 HTML Help Workshop 了。导出停止词列表写入 TOC 文件写入索引文件……写入项目文件sphinxcontrib.htmlhelp.po000066400000000000000000000027321405222526300341310ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # # Translators: # Yinian Chin , 2019 # Jian Dai , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" "Last-Translator: Jian Dai , 2020\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "你现在可以打开 %(outdir)s 中的 .hlp 文件运行 HTML Help Workshop 了。" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "导出停止词列表" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "写入项目文件" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "写入 TOC 文件" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "写入索引文件……" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_TW/000077500000000000000000000000001405222526300254035ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/000077500000000000000000000000001405222526300271705ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010001405222526300341430ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES$,-Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-15 00:45+0900 PO-Revision-Date: 2019-02-14 15:47+0000 Last-Translator: FULL NAME 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.9.1 sphinxcontrib.htmlhelp.po000066400000000000000000000022431405222526300341600ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES# Translations template for sphinxcontrib-htmlhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-htmlhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\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/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" msgstr "" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." msgstr "" sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/templates/000077500000000000000000000000001405222526300247245ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/templates/project.hhc000066400000000000000000000013311405222526300270540ustar00rootroot00000000000000{%- macro sitemap(name, docname) -%} {%- endmacro -%}
    • {{ sitemap(short_title, master_doc) }} {%- for indexname, indexcls, content, collapse in domain_indices %}
    • {{ sitemap(indexcls.localname, indexname) }} {%- endfor %} {{ body }}
    sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/templates/project.hhp000066400000000000000000000031331405222526300270730ustar00rootroot00000000000000[OPTIONS] Binary TOC=No Binary Index=No Compiled file={{ outname }}.chm Contents file={{ outname }}.hhc Default Window={{ outname }} Default topic={{ master_doc }} Display compile progress=No Full text search stop list file={{ outname }}.stp Full-text search=Yes Index file={{ outname }}.hhk Language={{ "%#x"|format(lcid) }} Title={{ title }} {# # The magical numbers in the long line under [WINDOWS] set most of the # user-visible features (visible buttons, tabs, etc). # About 0x10384e: This defines the buttons in the help viewer. The # following defns are taken from htmlhelp.h. Not all possibilities # actually work, and not all those that work are available from the Help # Workshop GUI. In particular, the Zoom/Font button works and is not # available from the GUI. The ones we're using are marked with 'x': # # 0x000002 Hide/Show x # 0x000004 Back x # 0x000008 Forward x # 0x000010 Stop # 0x000020 Refresh # 0x000040 Home x # 0x000080 Forward # 0x000100 Back # 0x000200 Notes # 0x000400 Contents # 0x000800 Locate x # 0x001000 Options x # 0x002000 Print x # 0x004000 Index # 0x008000 Search # 0x010000 History # 0x020000 Favorites # 0x040000 Jump 1 # 0x080000 Jump 2 # 0x100000 Zoom/Font x # 0x200000 TOC Next # 0x400000 TOC Prev -#} [WINDOWS] {{ outname }}="{{ title }}","{{ outname }}.hhc","{{ outname }}.hhk","{{ master_doc }}","{{ master_doc }}",,,,,0x63520,220,0x10384e,[0,0,1024,768],,,,,,,0 [FILES] {%- for filename in files %} {{ filename }} {%- endfor %} sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/templates/project.stp000066400000000000000000000002451405222526300271230ustar00rootroot00000000000000a and are as at be but by for if in into is it near no not of on or such that the their then there these they this to was will with sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/version.py000066400000000000000000000004211405222526300247620ustar00rootroot00000000000000""" sphinxcontrib.htmlhelp.version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ __version__ = '1.0.4' __version_info__ = tuple(map(int, __version__.split('.'))) sphinxcontrib-htmlhelp-2.0.0/tests/000077500000000000000000000000001405222526300173615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/tests/conftest.py000066400000000000000000000006221405222526300215600ustar00rootroot00000000000000""" 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-htmlhelp-2.0.0/tests/roots/000077500000000000000000000000001405222526300205275ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-basic/000077500000000000000000000000001405222526300225655ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-basic/conf.py000066400000000000000000000000001405222526300240520ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-basic/index.rst000066400000000000000000000000261405222526300244240ustar00rootroot00000000000000test-basic ========== sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-chm/000077500000000000000000000000001405222526300222535ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-chm/conf.py000066400000000000000000000000211405222526300235430ustar00rootroot00000000000000project = 'test' sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-chm/index.rst000066400000000000000000000005701405222526300241160ustar00rootroot00000000000000Index markup ------------ .. index:: single: entry pair: entry; pair double: entry; double triple: index; entry; triple keyword: with see: from; to seealso: fromalso; toalso .. index:: !Main, !Other !single: entry; pair .. index:: triple-quoted string, Unicode Consortium, raw string single: """; string literal single: '''; string literal sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-hhc/000077500000000000000000000000001405222526300222465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-hhc/bar.rst000066400000000000000000000000101405222526300235330ustar00rootroot00000000000000bar --- sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-hhc/baz.rst000066400000000000000000000000101405222526300235430ustar00rootroot00000000000000baz --- sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-hhc/conf.py000066400000000000000000000000541405222526300235440ustar00rootroot00000000000000html_short_title = "Sphinx's documentation" sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-hhc/foo.rst000066400000000000000000000000361405222526300235620ustar00rootroot00000000000000foo --- .. toctree:: bar sphinxcontrib-htmlhelp-2.0.0/tests/roots/test-hhc/index.rst000066400000000000000000000002261405222526300241070ustar00rootroot00000000000000test-htmlhelp-domain_indices ---------------------------- section ~~~~~~~ .. py:module:: sphinx subsection ^^^^^^^^^^ .. toctree:: foo baz sphinxcontrib-htmlhelp-2.0.0/tests/test_htmlhelp.py000066400000000000000000000105421405222526300226110ustar00rootroot00000000000000""" test_build_htmlhelp ~~~~~~~~~~~~~~~~~~~ Test the HTML Help builder and check output against XPath. :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import re import pytest from html5lib import HTMLParser from sphinxcontrib.htmlhelp import chm_htmlescape, default_htmlhelp_basename from sphinx.config import Config @pytest.mark.sphinx('htmlhelp', testroot='basic') def test_build_htmlhelp(app, status, warning): app.build() hhp = (app.outdir / 'pythondoc.hhp').text() assert 'Compiled file=pythondoc.chm' in hhp assert 'Contents file=pythondoc.hhc' in hhp assert 'Default Window=pythondoc' in hhp assert 'Default topic=index.html' in hhp assert 'Full text search stop list file=pythondoc.stp' in hhp assert 'Index file=pythondoc.hhk' in hhp assert 'Language=0x409' in hhp assert 'Title=Python documentation' in hhp assert ('pythondoc="Python documentation","pythondoc.hhc",' '"pythondoc.hhk","index.html","index.html",,,,,' '0x63520,220,0x10384e,[0,0,1024,768],,,,,,,0' in hhp) files = ['genindex.html', 'index.html', '_static\\alabaster.css', '_static\\basic.css', '_static\\custom.css', '_static\\file.png', '_static\\minus.png', '_static\\plus.png', '_static\\pygments.css'] assert '[FILES]\n%s' % '\n'.join(files) in hhp @pytest.mark.sphinx('htmlhelp', testroot='basic') def test_default_htmlhelp_file_suffix(app, warning): assert app.builder.out_suffix == '.html' @pytest.mark.sphinx('htmlhelp', testroot='basic', confoverrides={'htmlhelp_file_suffix': '.htm'}) def test_htmlhelp_file_suffix(app, warning): assert app.builder.out_suffix == '.htm' def test_default_htmlhelp_basename(): config = Config({'project': 'Sphinx Documentation'}) config.init_values() assert default_htmlhelp_basename(config) == 'sphinxdoc' @pytest.mark.sphinx('htmlhelp', testroot='chm') def test_chm(app): app.build() # check .hhk file outname = app.builder.config.htmlhelp_basename hhk_path = str(app.outdir / outname + '.hhk') with open(hhk_path, 'rb') as f: data = f.read() m = re.search(br'&#[xX][0-9a-fA-F]+;', data) assert m is None, 'Hex escaping exists in .hhk file: ' + str(m.group(0)) @pytest.mark.sphinx('htmlhelp', testroot='hhc') def test_htmlhelp_hhc(app): app.build() def assert_sitemap(node, name, filename): assert node.tag == 'object' assert len(node) == 2 assert node[0].tag == 'param' assert node[0].attrib == {'name': 'Name', 'value': name} assert node[1].tag == 'param' assert node[1].attrib == {'name': 'Local', 'value': filename} # .hhc file hhc = (app.outdir / 'pythondoc.hhc').text() tree = HTMLParser(namespaceHTMLElements=False).parse(hhc) items = tree.find('.//body/ul') assert len(items) == 4 # index assert items[0].tag == 'li' assert len(items[0]) == 1 assert_sitemap(items[0][0], "Sphinx's documentation", 'index.html') # py-modindex assert items[1].tag == 'li' assert len(items[1]) == 1 assert_sitemap(items[1][0], 'Python Module Index', 'py-modindex.html') # toctree assert items[2].tag == 'li' assert len(items[2]) == 2 assert_sitemap(items[2][0], 'foo', 'foo.html') assert items[2][1].tag == 'ul' assert len(items[2][1]) == 1 assert items[2][1][0].tag == 'li' assert_sitemap(items[2][1][0][0], 'bar', 'bar.html') assert items[3].tag == 'li' assert len(items[3]) == 1 assert_sitemap(items[3][0], 'baz', 'baz.html') # single quotes should be escaped as decimal (') assert "Sphinx's documentation" in hhc def test_chm_htmlescape(): assert chm_htmlescape('Hello world') == 'Hello world' assert chm_htmlescape(u'Unicode 文字') == u'Unicode 文字' assert chm_htmlescape('E') == '&#x45' assert chm_htmlescape(' "world"') == '<Hello> "world"' assert chm_htmlescape(' "world"', True) == '<Hello> "world"' assert chm_htmlescape(' "world"', False) == '<Hello> "world"' assert chm_htmlescape("Hello 'world'") == "Hello 'world'" assert chm_htmlescape("Hello 'world'", True) == "Hello 'world'" assert chm_htmlescape("Hello 'world'", False) == "Hello 'world'" sphinxcontrib-htmlhelp-2.0.0/tox.ini000066400000000000000000000011141405222526300175270ustar00rootroot00000000000000[tox] envlist = py{36,37,38,39,310-dev}, flake8, mypy [gh-actions] python = 3.6: py36 3.7: py37 3.8: py38 3.9: py39 3.10: py310-dev [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. extras = test lint commands= flake8 [testenv:mypy] description = Run type checks. extras = test lint commands= mypy sphinxcontrib/