pax_global_header00006660000000000000000000000064146515637130014525gustar00rootroot0000000000000052 comment=f7f5d4ecf27fad97e2454fbeda94c6a105c994ff sphinxcontrib-htmlhelp-2.1.0/000077500000000000000000000000001465156371300162325ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/.github/000077500000000000000000000000001465156371300175725ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/.github/dependabot.yml000066400000000000000000000003131465156371300224170ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" sphinxcontrib-htmlhelp-2.1.0/.github/workflows/000077500000000000000000000000001465156371300216275ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/.github/workflows/create-release.yml000066400000000000000000000055031465156371300252360ustar00rootroot00000000000000name: Create release on: push: tags: - "*.*.*" workflow_dispatch: permissions: contents: read jobs: publish-pypi: runs-on: ubuntu-latest name: PyPI Release environment: release permissions: id-token: write # for PyPI trusted publishing steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3 cache: pip cache-dependency-path: pyproject.toml - name: Install build dependencies (pypa/build, twine) run: | pip install -U pip pip install build twine - name: Build distribution run: python -m build - name: Mint PyPI API token id: mint-token uses: actions/github-script@v7 with: # language=JavaScript script: | // retrieve the ambient OIDC token const oidc_request_token = process.env.ACTIONS_ID_TOKEN_REQUEST_TOKEN; const oidc_request_url = process.env.ACTIONS_ID_TOKEN_REQUEST_URL; const oidc_resp = await fetch(`${oidc_request_url}&audience=pypi`, { headers: {Authorization: `bearer ${oidc_request_token}`}, }); const oidc_token = (await oidc_resp.json()).value; // exchange the OIDC token for an API token const mint_resp = await fetch('https://pypi.org/_/oidc/github/mint-token', { method: 'post', body: `{"token": "${oidc_token}"}` , headers: {'Content-Type': 'application/json'}, }); const api_token = (await mint_resp.json()).token; // mask the newly minted API token, so that we don't accidentally leak it core.setSecret(api_token) core.setOutput('api-token', api_token) - name: Upload to PyPI env: TWINE_NON_INTERACTIVE: "true" TWINE_USERNAME: "__token__" TWINE_PASSWORD: "${{ steps.mint-token.outputs.api-token }}" run: | twine check dist/* twine upload dist/* github-release: runs-on: ubuntu-latest name: GitHub release environment: release permissions: contents: write # for softprops/action-gh-release to create GitHub release steps: - uses: actions/checkout@v4 - name: Get release version id: get_version uses: actions/github-script@v7 with: script: core.setOutput('version', context.ref.replace("refs/tags/", "")) - name: Create GitHub release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: name: "sphinxcontrib-htmlhelp ${{ steps.get_version.outputs.version }}" body: "Changelog: https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/blob/master/CHANGES.rst" sphinxcontrib-htmlhelp-2.1.0/.github/workflows/test.yml000066400000000000000000000042341465156371300233340ustar00rootroot00000000000000name: Test on: push: pull_request: workflow_dispatch: permissions: contents: read concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true env: FORCE_COLOR: "1" PYTHONDEVMODE: "1" # -X dev PYTHONWARNDEFAULTENCODING: "1" # -X warn_default_encoding jobs: tests: runs-on: ubuntu-latest strategy: matrix: python: - "3.9" - "3.10" - "3.11" - "3.12" - "3.13-dev" fail-fast: false steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v5 if: "!endsWith(matrix.python, '-dev')" with: python-version: ${{ matrix.python }} - name: Set up Python ${{ matrix.python }} (deadsnakes) uses: deadsnakes/action@v3.1.0 if: "endsWith(matrix.python, '-dev')" with: python-version: ${{ matrix.python }} - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install .[standalone,test] - name: Test with pytest run: python -m pytest -vv --durations 25 test-latest-sphinx: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v5 with: python-version: "3" - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install .[test] python -m pip install "Sphinx @ git+https://github.com/sphinx-doc/sphinx" - name: Test with pytest run: python -m pytest -vv --durations 25 lint: runs-on: ubuntu-latest strategy: matrix: env: - ruff - mypy steps: - uses: actions/checkout@v4 - name: Setup python uses: actions/setup-python@v5 with: python-version: "3" - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install --upgrade tox - name: Run tox run: tox -e ${{ matrix.env }} sphinxcontrib-htmlhelp-2.1.0/.github/workflows/transifex.yml000066400000000000000000000045711465156371300243640ustar00rootroot00000000000000name: Synchronise translations on: schedule: # 22:38 GMT, every Sunday. Chosen to be a random time. - cron: "38 22 * * SUN" workflow_dispatch: permissions: contents: read jobs: push: if: github.repository_owner == 'sphinx-doc' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3 - name: Install transifex client run: | mkdir -p /tmp/tx_cli && cd $_ curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash shell: bash - name: Install dependencies run: pip install --upgrade babel jinja2 - name: Extract translations from source code run: python utils/babel_runner.py extract - name: Push translations to transifex.com run: | cd sphinxcontrib/htmlhelp/locales /tmp/tx_cli/tx push --source --use-git-timestamps --workers 10 env: TX_TOKEN: ${{ secrets.TX_TOKEN }} pull: permissions: contents: write # for peter-evans/create-pull-request to create branch pull-requests: write # for peter-evans/create-pull-request to create a PR if: github.repository_owner == 'sphinx-doc' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3 - name: Install transifex client run: | mkdir -p /tmp/tx_cli && cd $_ curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash shell: bash - name: Install dependencies run: pip install --upgrade babel jinja2 - name: Extract translations from source code run: python utils/babel_runner.py extract - name: Pull translations from transifex.com run: | cd sphinxcontrib/htmlhelp/locales /tmp/tx_cli/tx pull --translations --all --force --use-git-timestamps --workers 10 env: TX_TOKEN: ${{ secrets.TX_TOKEN }} - name: Compile message catalogs run: python utils/babel_runner.py compile - name: Create Pull Request uses: peter-evans/create-pull-request@v6 with: commit-message: "[internationalisation] Update translations" branch: bot/pull-translations title: "[bot]: Update message catalogues" labels: "internals:internationalisation" sphinxcontrib-htmlhelp-2.1.0/.gitignore000066400000000000000000000001621465156371300202210ustar00rootroot00000000000000*.pyc .DS_Store idea/ .vscode/ .mypy_cache/ .pytest_cache/ .ruff_cache/ .tags .tox/ .venv/ venv/ build/ dist/ sphinxcontrib-htmlhelp-2.1.0/.ruff.toml000066400000000000000000000022331465156371300201470ustar00rootroot00000000000000target-version = "py39" # Pin Ruff to Python 3.9 output-format = "full" line-length = 95 [lint] preview = true select = [ # "ANN", # flake8-annotations "C4", # flake8-comprehensions "COM", # flake8-commas "B", # flake8-bugbear "DTZ", # flake8-datetimez "E", # pycodestyle "EM", # flake8-errmsg "EXE", # flake8-executable "F", # pyflakes "FA", # flake8-future-annotations "FLY", # flynt "FURB", # refurb "G", # flake8-logging-format "I", # isort "ICN", # flake8-import-conventions "INT", # flake8-gettext "LOG", # flake8-logging "PERF", # perflint "PGH", # pygrep-hooks "PIE", # flake8-pie "PT", # flake8-pytest-style "SIM", # flake8-simplify "SLOT", # flake8-slots "TCH", # flake8-type-checking "UP", # pyupgrade "W", # pycodestyle "YTT", # flake8-2020 ] ignore = [ "E116", "E241", "E251", ] [lint.per-file-ignores] "tests/*" = [ "ANN", # tests don't need annotations ] [lint.isort] forced-separate = [ "tests", ] required-imports = [ "from __future__ import annotations", ] sphinxcontrib-htmlhelp-2.1.0/CHANGES.rst000066400000000000000000000026341465156371300200410ustar00rootroot00000000000000Release 2.1.0 (2024-07-28) ========================== * Adopt Ruff * Tighten MyPy settings * Update GitHub actions versions * Escape HTML entities Release 2.0.6 (2024-07-20) ========================== * Fix tests for Sphinx 7.4 and later. Release 2.0.5 (2024-01-13) ========================== * Remove Sphinx as a required dependency, as circular dependencies may cause failure with package managers that expect a directed acyclic graph (DAG) of dependencies. Release 2.0.4 (2023-08-14) ========================== * Use ``os.PathLike`` over ``pathlib.Path`` Release 2.0.3 (2023-08-09) ========================== * Fix tests for Sphinx 7.1 and below Release 2.0.2 (2023-08-07) ========================== * Drop support for Python 3.8 * Raise minimum required Sphinx version to 5.0 Release 2.0.1 (2023-01-31) ========================== * Drop support for Python 3.7 and lower * Fix deprecation warnings from Sphinx 6.1 Release 2.0.0 (2021-05-23) ========================== * 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.1.0/LICENCE.rst000066400000000000000000000026371465156371300200360ustar00rootroot00000000000000License 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.1.0/Makefile000066400000000000000000000022311465156371300176700ustar00rootroot00000000000000PYTHON ?= 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: @ruff check .PHONY: type-check type-check: mypy sphinxcontrib .PHONY: test test: @$(PYTHON) -m pytest -v $(TEST) sphinxcontrib-htmlhelp-2.1.0/README.rst000066400000000000000000000006431465156371300177240ustar00rootroot00000000000000====================== 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 Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst sphinxcontrib-htmlhelp-2.1.0/babel.cfg000066400000000000000000000003331465156371300177570ustar00rootroot00000000000000[extract_messages] output_file = sphinxcontrib/htmlhelp/locales/sphinxcontrib.htmlhelp.pot keywords = _ __ [compile_catalog] domain = sphinxcontrib.htmlhelp directory = sphinxcontrib/htmlhelp/locales/ use_fuzzy = true sphinxcontrib-htmlhelp-2.1.0/pyproject.toml000066400000000000000000000052371465156371300211550ustar00rootroot00000000000000[build-system] requires = ["flit_core>=3.7"] build-backend = "flit_core.buildapi" # project metadata [project] name = "sphinxcontrib-htmlhelp" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" readme = "README.rst" urls.Changelog = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/blob/master/CHANGES.rst" urls.Code = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/" urls.Download = "https://pypi.org/project/sphinxcontrib-htmlhelp/" urls.Homepage = "https://www.sphinx-doc.org/" urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx/issues/" license.text = "BSD-2-Clause" requires-python = ">=3.9" # Classifiers list: https://pypi.org/classifiers/ 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 :: Only", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Framework :: Sphinx", "Framework :: Sphinx :: Extension", "Topic :: Documentation", "Topic :: Documentation :: Sphinx", "Topic :: Text Processing", "Topic :: Utilities", ] dependencies = [] dynamic = ["version"] [project.optional-dependencies] test = [ "pytest", "html5lib", ] lint = [ "ruff==0.5.5", "mypy", "types-docutils", ] standalone = [ "Sphinx>=5", ] [[project.authors]] name = "Georg Brandl" email = "georg@python.org" [tool.flit.module] name = "sphinxcontrib.htmlhelp" [tool.flit.sdist] include = [ "CHANGES.rst", "LICENCE.rst", # Tests "tests/", "tox.ini", ] [tool.mypy] python_version = "3.9" packages = [ "sphinxcontrib", "tests", ] exclude = [ "tests/roots", ] check_untyped_defs = true disallow_any_generics = true disallow_incomplete_defs = true disallow_subclassing_any = true disallow_untyped_calls = true disallow_untyped_decorators = true disallow_untyped_defs = true #explicit_package_bases = true extra_checks = true no_implicit_reexport = true show_column_numbers = true show_error_context = true strict_optional = true warn_redundant_casts = true warn_unused_configs = true warn_unused_ignores = true enable_error_code = [ "type-arg", "redundant-self", "truthy-iterable", "ignore-without-code", "unused-awaitable", ] sphinxcontrib-htmlhelp-2.1.0/release-checklist.rst000066400000000000000000000016201465156371300223520ustar00rootroot00000000000000ToDo 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.1.0/sphinxcontrib/000077500000000000000000000000001465156371300211245ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/000077500000000000000000000000001465156371300227415ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/__init__.py000066400000000000000000000300321465156371300250500ustar00rootroot00000000000000"""Build HTML help support files.""" from __future__ import annotations import html import os import re from html.entities import codepoint2name from os import path from pathlib import Path from typing import TYPE_CHECKING, Any import sphinx from docutils import nodes from sphinx import addnodes from sphinx.builders.html import StandaloneHTMLBuilder from sphinx.environment.adapters.indexentries import IndexEntries from sphinx.locale import get_translation from sphinx.util import logging 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 if TYPE_CHECKING: from docutils.nodes import Element, Node from sphinx.application import Sphinx from sphinx.config import Config if sphinx.version_info[:2] >= (6, 1): from sphinx.util.display import progress_message else: from sphinx.util import progress_message # type: ignore[no-redef] __version__ = '2.1.0' __version_info__ = (2, 1, 0) 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: nodes.document) -> None: super().__init__(document) self.body: 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('') 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(f' ') self.append(f' ') 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 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[str, Any], event_arg: str, ) -> None: ctx['encoding'] = self.encoding # escape the `body` part to 7-bit ASCII body = ctx.get("body") if body is not None: ctx["body"] = re.sub(r"[^\x00-\x7F]", self._escape, body) @staticmethod def _escape(match: re.Match[str]) -> str: codepoint = ord(match.group(0)) if codepoint in codepoint2name: return f"&{codepoint2name[codepoint]};" return f"&#{codepoint};" 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: nodes.document) -> None: for node in doctree.findall(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, Any]) -> 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: 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, '\\')) 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) filename = Path(self.outdir, f'{self.config.htmlhelp_basename}.hhp') filename.write_text(body, encoding=self.encoding, errors='xmlcharrefreplace') @progress_message(__('writing TOC file')) def build_toc_file(self) -> None: """Create a ToC file (.hhp) on outdir.""" 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.findall(matcher): 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, } body = self.render('project.hhc', context) filename = Path(self.outdir, f'{self.config.htmlhelp_basename}.hhc') filename.write_text(body, encoding=self.encoding, errors='xmlcharrefreplace') def build_hhx(self, outdir: str | os.PathLike[str], outname: str) -> None: logger.info(__('writing index file...')) index = IndexEntries(self.env).create_index(self) filename = Path(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: def write_param(name: str, value: str) -> None: item = f' \n' 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 (_group_key, group) in index: for title, (refs, subitems, _category_key) in group: write_index(title, refs, subitems) f.write('
    \n') # Fixup keywords (HTML escapes in keywords file) content = filename.read_bytes().replace(b''', b''') filename.write_bytes(content) 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.require_sphinx('5.0') 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.1.0/sphinxcontrib/htmlhelp/locales/000077500000000000000000000000001465156371300243635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/.tx/000077500000000000000000000000001465156371300250745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/.tx/config000066400000000000000000000003401465156371300262610ustar00rootroot00000000000000[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.1.0/sphinxcontrib/htmlhelp/locales/ar/000077500000000000000000000000001465156371300247655ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/000077500000000000000000000000001465156371300265525ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000020011465156371300336060ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030501465156371300336160ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/bg/000077500000000000000000000000001465156371300247535ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/000077500000000000000000000000001465156371300265405ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007721465156371300336110ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022351465156371300336100ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/bn/000077500000000000000000000000001465156371300247625ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/000077500000000000000000000000001465156371300265475ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701465156371300336160ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331465156371300336150ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/ca/000077500000000000000000000000001465156371300247465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/000077500000000000000000000000001465156371300265335ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701465156371300336020ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331465156371300336010ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/cak/000077500000000000000000000000001465156371300251215ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/cak/LC_MESSAGES/000077500000000000000000000000001465156371300267065ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000007221465156371300336730ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000022371465156371300337010ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/cs/000077500000000000000000000000001465156371300247705ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/000077500000000000000000000000001465156371300265555ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011061465156371300336160ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023511465156371300336240ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/cy/000077500000000000000000000000001465156371300247765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/000077500000000000000000000000001465156371300265635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010431465156371300336240ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023061465156371300336320ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/da/000077500000000000000000000000001465156371300247475ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/000077500000000000000000000000001465156371300265345ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000015761465156371300336100ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000026371465156371300336120ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/de/000077500000000000000000000000001465156371300247535ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/000077500000000000000000000000001465156371300265405ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671465156371300336150ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321465156371300336050ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/el/000077500000000000000000000000001465156371300247635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/000077500000000000000000000000001465156371300265505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000020321465156371300336100ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000031161465156371300336170ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/eo/000077500000000000000000000000001465156371300247665ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/000077500000000000000000000000001465156371300265535ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007721465156371300336240ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022351465156371300336230ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/es/000077500000000000000000000000001465156371300247725ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/000077500000000000000000000000001465156371300265575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017021465156371300336220ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030671465156371300336330ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/et/000077500000000000000000000000001465156371300247735ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/000077500000000000000000000000001465156371300265605ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000015421465156371300336250ustar00rootroot00000000000000DlDmO-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.1.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000026501465156371300336310ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/eu/000077500000000000000000000000001465156371300247745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/000077500000000000000000000000001465156371300265615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671465156371300336360ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321465156371300336260ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/fa/000077500000000000000000000000001465156371300247515ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/000077500000000000000000000000001465156371300265365ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000020141465156371300335760ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030551465156371300336070ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/fi/000077500000000000000000000000001465156371300247615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/000077500000000000000000000000001465156371300265465ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701465156371300336150ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331465156371300336140ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/fr/000077500000000000000000000000001465156371300247725ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/000077500000000000000000000000001465156371300265575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017421465156371300336260ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000031411465156371300336240ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/he/000077500000000000000000000000001465156371300247575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/000077500000000000000000000000001465156371300265445ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011251465156371300336060ustar00rootroot00000000000000$,'-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.1.0/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023701465156371300336140ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/hi/000077500000000000000000000000001465156371300247635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/000077500000000000000000000000001465156371300265505ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000024411465156371300336140ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000035101465156371300336150ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/hi_IN/000077500000000000000000000000001465156371300253515ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/hi_IN/LC_MESSAGES/000077500000000000000000000000001465156371300271365ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010041465156371300341150ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000022471465156371300341320ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/hr/000077500000000000000000000000001465156371300247745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/000077500000000000000000000000001465156371300265615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011011465156371300336150ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023441465156371300336320ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/hu/000077500000000000000000000000001465156371300247775ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/000077500000000000000000000000001465156371300265645ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016571465156371300336400ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027011465156371300336320ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/id/000077500000000000000000000000001465156371300247575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/000077500000000000000000000000001465156371300265445ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016411465156371300336110ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027461465156371300336230ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/it/000077500000000000000000000000001465156371300247775ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/000077500000000000000000000000001465156371300265645ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701465156371300336330ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331465156371300336320ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/ja/000077500000000000000000000000001465156371300247555ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/000077500000000000000000000000001465156371300265425ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017541465156371300336140ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030311465156371300336050ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/ko/000077500000000000000000000000001465156371300247745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/000077500000000000000000000000001465156371300265615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016561465156371300336340ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027031465156371300336310ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/lt/000077500000000000000000000000001465156371300250025ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/000077500000000000000000000000001465156371300265675ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011761465156371300336370ustar00rootroot00000000000000$,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.1.0/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000024411465156371300336360ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/lv/000077500000000000000000000000001465156371300250045ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/000077500000000000000000000000001465156371300265715ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010331465156371300336310ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022761465156371300336460ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/mk/000077500000000000000000000000001465156371300247725ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/000077500000000000000000000000001465156371300265575ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010311465156371300336150ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022741465156371300336320ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/nb_NO/000077500000000000000000000000001465156371300253565ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/nb_NO/LC_MESSAGES/000077500000000000000000000000001465156371300271435ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010211465156371300341210ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000022641465156371300341360ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/ne/000077500000000000000000000000001465156371300247655ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/000077500000000000000000000000001465156371300265525ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671465156371300336270ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321465156371300336170ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/nl/000077500000000000000000000000001465156371300247745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/000077500000000000000000000000001465156371300265615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007661465156371300336350ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022311465156371300336250ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/pl/000077500000000000000000000000001465156371300247765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/000077500000000000000000000000001465156371300265635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000012111465156371300336210ustar00rootroot00000000000000$,[-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.1.0/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000024541465156371300336360ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/pt/000077500000000000000000000000001465156371300250065ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/000077500000000000000000000000001465156371300265735ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007731465156371300336450ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022361465156371300336440ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/pt_BR/000077500000000000000000000000001465156371300253715ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/000077500000000000000000000000001465156371300271565ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000017151465156371300341460ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000027761465156371300341610ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/pt_PT/000077500000000000000000000000001465156371300254115ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/pt_PT/LC_MESSAGES/000077500000000000000000000000001465156371300271765ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010141465156371300341560ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000022571465156371300341730ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/ro/000077500000000000000000000000001465156371300250035ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/000077500000000000000000000000001465156371300265705ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010421465156371300336300ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023051465156371300336360ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/ru/000077500000000000000000000000001465156371300250115ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/000077500000000000000000000000001465156371300265765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000012021465156371300336340ustar00rootroot00000000000000$,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.1.0/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000024451465156371300336510ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/si/000077500000000000000000000000001465156371300247765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/000077500000000000000000000000001465156371300265635ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701465156371300336320ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331465156371300336310ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/sk/000077500000000000000000000000001465156371300250005ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/000077500000000000000000000000001465156371300265655ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000017611465156371300336350ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000030131465156371300336300ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/sl/000077500000000000000000000000001465156371300250015ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/000077500000000000000000000000001465156371300265665ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000010561465156371300336330ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023211465156371300336320ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/sphinxcontrib.htmlhelp.pot000066400000000000000000000021401465156371300316120ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/sq/000077500000000000000000000000001465156371300250065ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/000077500000000000000000000000001465156371300265735ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016711465156371300336430ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000027441465156371300336500ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/sr/000077500000000000000000000000001465156371300250075ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/000077500000000000000000000000001465156371300265745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000011021465156371300336310ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000023451465156371300336460ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/sr@latin/000077500000000000000000000000001465156371300261375ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/000077500000000000000000000000001465156371300277245ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000011261465156371300347100ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000023711465156371300347160ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/sr_RS/000077500000000000000000000000001465156371300254135ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sr_RS/LC_MESSAGES/000077500000000000000000000000001465156371300272005ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000011211465156371300341570ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000023641465156371300341740ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/sv/000077500000000000000000000000001465156371300250135ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/000077500000000000000000000000001465156371300266005ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007701465156371300336470ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022331465156371300336460ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/ta/000077500000000000000000000000001465156371300247675ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/000077500000000000000000000000001465156371300265545ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007661465156371300336300ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022311465156371300336200ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/te/000077500000000000000000000000001465156371300247735ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/000077500000000000000000000000001465156371300265605ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007671465156371300336350ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022321465156371300336250ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/tr/000077500000000000000000000000001465156371300250105ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/000077500000000000000000000000001465156371300265755ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000016531465156371300336450ustar00rootroot00000000000000L|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.1.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000026711465156371300336510ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/uk_UA/000077500000000000000000000000001465156371300253675ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/uk_UA/LC_MESSAGES/000077500000000000000000000000001465156371300271545ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000013501465156371300341370ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000026131465156371300341450ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/ur/000077500000000000000000000000001465156371300250115ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/000077500000000000000000000000001465156371300265765ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007651465156371300336510ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022301465156371300336410ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/vi/000077500000000000000000000000001465156371300250015ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/000077500000000000000000000000001465156371300265665ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo000066400000000000000000000007641465156371300336400ustar00rootroot00000000000000$,-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.1.0/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/sphinxcontrib.htmlhelp.po000066400000000000000000000022271465156371300336370ustar00rootroot00000000000000# 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.1.0/sphinxcontrib/htmlhelp/locales/zh_CN/000077500000000000000000000000001465156371300253645ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/000077500000000000000000000000001465156371300271515ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000016251465156371300341410ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000027321465156371300341440ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/locales/zh_TW/000077500000000000000000000000001465156371300254165ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/000077500000000000000000000000001465156371300272035ustar00rootroot00000000000000sphinxcontrib.htmlhelp.mo000066400000000000000000000010001465156371300341560ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.po000066400000000000000000000022431465156371300341730ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.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.1.0/sphinxcontrib/htmlhelp/py.typed000066400000000000000000000000001465156371300244260ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/templates/000077500000000000000000000000001465156371300247375ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/sphinxcontrib/htmlhelp/templates/project.hhc000066400000000000000000000013311465156371300270670ustar00rootroot00000000000000{%- 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.1.0/sphinxcontrib/htmlhelp/templates/project.hhp000066400000000000000000000031331465156371300271060ustar00rootroot00000000000000[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.1.0/sphinxcontrib/htmlhelp/templates/project.stp000066400000000000000000000002451465156371300271360ustar00rootroot00000000000000a 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.1.0/tests/000077500000000000000000000000001465156371300173745ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/tests/conftest.py000066400000000000000000000003601465156371300215720ustar00rootroot00000000000000from __future__ import annotations from pathlib import Path import pytest pytest_plugins = ( 'sphinx.testing.fixtures', ) @pytest.fixture(scope='session') def rootdir() -> Path: return Path(__file__).resolve().parent / 'roots' sphinxcontrib-htmlhelp-2.1.0/tests/roots/000077500000000000000000000000001465156371300205425ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-basic/000077500000000000000000000000001465156371300226005ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-basic/conf.py000066400000000000000000000001141465156371300240730ustar00rootroot00000000000000from __future__ import annotations project = 'Python' html_theme = 'basic' sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-basic/index.rst000066400000000000000000000000261465156371300244370ustar00rootroot00000000000000test-basic ========== sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-chm/000077500000000000000000000000001465156371300222665ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-chm/conf.py000066400000000000000000000000651465156371300235660ustar00rootroot00000000000000from __future__ import annotations project = 'test' sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-chm/index.rst000066400000000000000000000005701465156371300241310ustar00rootroot00000000000000Index 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.1.0/tests/roots/test-hhc/000077500000000000000000000000001465156371300222615ustar00rootroot00000000000000sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-hhc/bar.rst000066400000000000000000000000101465156371300235460ustar00rootroot00000000000000bar --- sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-hhc/baz.rst000066400000000000000000000000101465156371300235560ustar00rootroot00000000000000baz --- sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-hhc/conf.py000066400000000000000000000001431465156371300235560ustar00rootroot00000000000000from __future__ import annotations project = 'Python' html_short_title = "Sphinx's documentation" sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-hhc/foo.rst000066400000000000000000000000361465156371300235750ustar00rootroot00000000000000foo --- .. toctree:: bar sphinxcontrib-htmlhelp-2.1.0/tests/roots/test-hhc/index.rst000066400000000000000000000002261465156371300241220ustar00rootroot00000000000000test-htmlhelp-domain_indices ---------------------------- section ~~~~~~~ .. py:module:: sphinx subsection ^^^^^^^^^^ .. toctree:: foo baz sphinxcontrib-htmlhelp-2.1.0/tests/test_htmlhelp.py000066400000000000000000000110111465156371300226140ustar00rootroot00000000000000"""Test the HTML Help builder and check output against XPath.""" from __future__ import annotations import re from pathlib import Path from typing import TYPE_CHECKING import pytest from html5lib import HTMLParser from sphinx.config import Config from sphinxcontrib.htmlhelp import chm_htmlescape, default_htmlhelp_basename if TYPE_CHECKING: from xml.etree.ElementTree import Element from sphinx.application import Sphinx @pytest.mark.sphinx('htmlhelp', testroot='basic') def test_build_htmlhelp(app: Sphinx) -> None: app.build() hhp = (app.outdir / 'pythondoc.hhp').read_text(encoding='utf-8') 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\\basic.css', '_static\\file.png', '_static\\minus.png', '_static\\plus.png', '_static\\pygments.css', ) assert '[FILES]\n' + '\n'.join(files) in hhp @pytest.mark.sphinx('htmlhelp', testroot='basic') def test_default_htmlhelp_file_suffix(app: Sphinx) -> None: assert app.builder.out_suffix == '.html' # type: ignore[attr-defined] @pytest.mark.sphinx('htmlhelp', testroot='basic', confoverrides={'htmlhelp_file_suffix': '.htm'}) def test_htmlhelp_file_suffix(app: Sphinx) -> None: assert app.builder.out_suffix == '.htm' # type: ignore[attr-defined] def test_default_htmlhelp_basename() -> None: config = Config({'project': 'Sphinx Documentation'}) config.init_values() assert default_htmlhelp_basename(config) == 'sphinxdoc' @pytest.mark.sphinx('htmlhelp', testroot='chm') def test_chm(app: Sphinx) -> None: app.build() # check .hhk file outname = app.builder.config.htmlhelp_basename hhk_path = Path(app.outdir / outname).with_suffix('.hhk') data = hhk_path.read_bytes() 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: Sphinx) -> None: app.build() def assert_sitemap(node: Element, name: str, filename: str) -> None: 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').read_text(encoding='utf-8') 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() -> None: assert chm_htmlescape('Hello world') == 'Hello world' assert chm_htmlescape('Unicode 文字') == '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.1.0/tox.ini000066400000000000000000000013421465156371300175450ustar00rootroot00000000000000[tox] minversion = 2.4.0 envlist = py{39,310,311,312,313}, ruff, mypy isolated_build = True [testenv] usedevelop = True passenv = https_proxy http_proxy no_proxy COLORTERM PERL PERL5LIB PYTEST_ADDOPTS TERM deps= pytest sphinx @ git+https://github.com/sphinx-doc/sphinx extras= test setenv = PYTHONWARNINGS = all,ignore::DeprecationWarning:docutils.io PYTEST_ADDOPTS = {env:PYTEST_ADDOPTS:} --color yes commands= python -X dev -X warn_default_encoding -m pytest --durations 25 {posargs} [testenv:ruff] description = Run style checks. extras = lint commands= ruff check [testenv:mypy] description = Run type checks. extras = lint commands= mypy