././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/CHANGES.rst0000644000000000000000000000202014651565656014657 0ustar00Release 2.0.0 (2024-07-28) ========================== * Adopt Ruff * Tighten MyPy settings * Update GitHub actions versions * Avoid storing build time in gzip headers Release 1.0.6 (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 1.0.5 (2023-08-14) ========================== * Use ``os.PathLike`` over ``pathlib.Path`` Release 1.0.4 (2023-08-09) ========================== * Fix tests for Sphinx 7.1 and below Release 1.0.3 (2023-08-07) ========================= * Drop support for Python 3.5, 3.6, 3.7, and 3.8 * Raise minimum required Sphinx version to 5.0 Release 1.0.2 (2019-02-29) ========================== * Fix package metadata has broken Release 1.0.1 (2019-02-15) ========================== * Fix release package does not contain locale files Release 1.0.0 (2019-01-20) ========================== * Initial release (copied from sphinx package) ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/LICENCE.rst0000644000000000000000000000263514651565656014665 0ustar00License for sphinxcontrib-devhelp ================================= 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. ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/README.rst0000644000000000000000000000072214651565656014553 0ustar00===================== sphinxcontrib-devhelp ===================== sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp_ document. For more details, please visit http://www.sphinx-doc.org/. .. _Devhelp: https://wiki.gnome.org/Apps/Devhelp Installing ========== Install from PyPI:: pip install -U sphinxcontrib-devhelp Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/pyproject.toml0000644000000000000000000000521214651565656015777 0ustar00[build-system] requires = ["flit_core>=3.7"] build-backend = "flit_core.buildapi" # project metadata [project] name = "sphinxcontrib-devhelp" description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" readme = "README.rst" urls.Changelog = "https://github.com/sphinx-doc/sphinxcontrib-devhelp/blob/master/CHANGES.rst" urls.Code = "https://github.com/sphinx-doc/sphinxcontrib-devhelp/" urls.Download = "https://pypi.org/project/sphinxcontrib-devhelp/" 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", ] 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.devhelp" [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", ] ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/__init__.py0000644000000000000000000001131514651565656021516 0ustar00"""Build HTML documentation and Devhelp_ support files. .. _Devhelp: https://wiki.gnome.org/Apps/Devhelp """ from __future__ import annotations import gzip import os import re from os import path from typing import TYPE_CHECKING, Any 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.nodes import NodeMatcher from sphinx.util.osutil import make_filename if TYPE_CHECKING: from sphinx.application import Sphinx import xml.etree.ElementTree as etree __version__ = '2.0.0' __version_info__ = (2, 0, 0) logger = logging.getLogger(__name__) __ = get_translation(__name__, 'console') package_dir = path.abspath(path.dirname(__file__)) class DevhelpBuilder(StandaloneHTMLBuilder): """ Builder that also outputs GNOME Devhelp file. """ name = 'devhelp' epilog = __('To view the help file:\n' '$ mkdir -p $HOME/.local/share/devhelp/books\n' '$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n' '$ devhelp') # 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 def init(self) -> None: super().init() self.out_suffix = '.html' self.link_suffix = '.html' def handle_finish(self) -> None: self.build_devhelp(self.outdir, self.config.devhelp_basename) def build_devhelp(self, outdir: str | os.PathLike[str], outname: str) -> None: logger.info(__('dumping devhelp index...')) # Basic info root = etree.Element('book', title=self.config.html_title, name=self.config.project, link="index.html", version=self.config.version) tree = etree.ElementTree(root) # TOC chapters = etree.SubElement(root, 'chapters') tocdoc = self.env.get_and_resolve_doctree( self.config.master_doc, self, prune_toctrees=False) def write_toc(node: nodes.Node, parent: etree.Element) -> None: if isinstance(node, (addnodes.compact_paragraph, nodes.bullet_list)): for subnode in node: write_toc(subnode, parent) elif isinstance(node, nodes.list_item): item = etree.SubElement(parent, 'sub') for subnode in node: write_toc(subnode, item) elif isinstance(node, nodes.reference): parent.attrib['link'] = node['refuri'] parent.attrib['name'] = node.astext() matcher = NodeMatcher(addnodes.compact_paragraph, toctree=Any) for node in tocdoc.findall(matcher): write_toc(node, chapters) # Index functions = etree.SubElement(root, 'functions') index = IndexEntries(self.env).create_index(self) def write_index(title: str, refs: list[Any], subitems: Any) -> None: if len(refs) == 0: pass elif len(refs) == 1: etree.SubElement(functions, 'function', name=title, link=refs[0][1]) else: for i, ref in enumerate(refs): etree.SubElement(functions, 'function', name="[%d] %s" % (i, title), link=ref[1]) if subitems: parent_title = re.sub(r'\s*\(.*\)\s*$', '', title) for subitem in subitems: write_index(f'{parent_title} {subitem[0]}', subitem[1], []) for (_group_key, group) in index: for title, (refs, subitems, _category_key) in group: write_index(title, refs, subitems) # Dump the XML file xmlfile = path.join(outdir, outname + '.devhelp.gz') with gzip.GzipFile(filename=xmlfile, mode='w', mtime=0) as f: tree.write(f, 'utf-8') def setup(app: Sphinx) -> dict[str, Any]: app.require_sphinx('5.0') app.setup_extension('sphinx.builders.html') app.add_builder(DevhelpBuilder) app.add_message_catalog(__name__, path.join(package_dir, 'locales')) app.add_config_value('devhelp_basename', lambda self: make_filename(self.project), 'devhelp') return { 'version': __version__, 'parallel_read_safe': True, 'parallel_write_safe': True, } ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/.tx/config0000644000000000000000000000033514651565656022730 0ustar00[main] host = https://www.transifex.com [sphinx-1.sphinxcontrib-devhelp-pot] file_filter = /LC_MESSAGES/sphinxcontrib.devhelp.po minimum_perc = 0 source_file = sphinxcontrib.devhelp.pot source_lang = en type = PO ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000167714651565656030105 0ustar004LMTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: ar Language-Team: Arabic (https://www.transifex.com/sphinx-doc/teams/36659/ar/) Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000212214651565656030072 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Arabic (https://www.transifex.com/sphinx-doc/teams/36659/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030075 0ustar004LMTTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: bn Language-Team: Bengali (https://www.transifex.com/sphinx-doc/teams/36659/bn/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014651565656030062 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030061 0ustar004LMTTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: ca Language-Team: Catalan (https://www.transifex.com/sphinx-doc/teams/36659/ca/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014651565656030046 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000167314651565656030104 0ustar004LMTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: cs Language-Team: Czech (https://www.transifex.com/sphinx-doc/teams/36659/cs/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211614651565656030100 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000163014651565656030103 0ustar004LMTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: cy Language-Team: Welsh (https://www.transifex.com/sphinx-doc/teams/36659/cy/) Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000205314651565656030106 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414651565656030061 0ustar004LMSTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: da Language-Team: Danish (https://www.transifex.com/sphinx-doc/teams/36659/da/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714651565656030073 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Danish (https://www.transifex.com/sphinx-doc/teams/36659/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414651565656030065 0ustar004LMSTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: de Language-Team: German (https://www.transifex.com/sphinx-doc/teams/36659/de/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714651565656030077 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314651565656030074 0ustar004LMRTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: el Language-Team: Greek (https://www.transifex.com/sphinx-doc/teams/36659/el/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614651565656030106 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Greek (https://www.transifex.com/sphinx-doc/teams/36659/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155714651565656030103 0ustar004LMVTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: eo Language-Team: Esperanto (https://www.transifex.com/sphinx-doc/teams/36659/eo/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200214651565656030070 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7449205 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030105 0ustar004LMTTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: es Language-Team: Spanish (https://www.transifex.com/sphinx-doc/teams/36659/es/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014651565656030072 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000156514651565656030107 0ustar004LM\To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: Ivar Smolin , 2019 Language: et Language-Team: Estonian (https://www.transifex.com/sphinx-doc/teams/36659/et/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Abifaili vaatamiseks: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000241514651565656030105 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # # Translators: # Ivar Smolin , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" "Abifaili vaatamiseks:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414651565656030106 0ustar004LMSTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: eu Language-Team: Basque (https://www.transifex.com/sphinx-doc/teams/36659/eu/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714651565656030120 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414651565656030063 0ustar004LMSTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: fa Language-Team: Persian (https://www.transifex.com/sphinx-doc/teams/36659/fa/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714651565656030075 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Persian (https://www.transifex.com/sphinx-doc/teams/36659/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030074 0ustar004LMTTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: fi Language-Team: Finnish (https://www.transifex.com/sphinx-doc/teams/36659/fi/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014651565656030061 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000160514651565656030101 0ustar004LMlTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: LAURENT Raphaël , 2019 Language: fr Language-Team: French (https://www.transifex.com/sphinx-doc/teams/36659/fr/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Pour visualiser le fichier d'aide : $ mkdir -p $HOME/.local/share/devhelp/books$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s$ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000243614651565656030107 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # # Translators: # LAURENT Raphaël , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Last-Translator: LAURENT Raphaël , 2019\n" "Language-Team: French (https://www.transifex.com/sphinx-doc/teams/36659/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" "Pour visualiser le fichier d'aide : $ mkdir -p " "$HOME/.local/share/devhelp/books$ ln -s $PWD/%(outdir)s " "$HOME/.local/share/devhelp/books/%(project)s$ devhelp" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000171214651565656030065 0ustar004LM&To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: he Language-Team: Hebrew (https://www.transifex.com/sphinx-doc/teams/36659/he/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000213514651565656030070 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314651565656030074 0ustar004LMRTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: hi Language-Team: Hindi (https://www.transifex.com/sphinx-doc/teams/36659/hi/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614651565656030106 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Hindi (https://www.transifex.com/sphinx-doc/teams/36659/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000157114651565656030462 0ustar004LM`To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: hi_IN Language-Team: Hindi (India) (https://www.transifex.com/sphinx-doc/teams/36659/hi_IN/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000201414651565656030456 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000166614651565656030112 0ustar004LM To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+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.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211114651565656030077 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155714651565656030114 0ustar004LMVTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: hu Language-Team: Hungarian (https://www.transifex.com/sphinx-doc/teams/36659/hu/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200214651565656030101 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Hungarian (https://www.transifex.com/sphinx-doc/teams/36659/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030072 0ustar004LMRTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: Tumpal Gemelli, 2019 Language: id Language-Team: Indonesian (https://www.transifex.com/sphinx-doc/teams/36659/id/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Untuk melihat berkas bantuan: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpmembuang indeks devhelp...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000242014651565656030065 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # # Translators: # Tumpal Gemelli, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Last-Translator: Tumpal Gemelli, 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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" "Untuk melihat berkas bantuan:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "membuang indeks devhelp..." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030112 0ustar004LMTTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+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.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014651565656030077 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000154714651565656030071 0ustar004LMNTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: ja Language-Team: Japanese (https://www.transifex.com/sphinx-doc/teams/36659/ja/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177214651565656030074 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000154514651565656030106 0ustar004LMLTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: ko Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177014651565656030111 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000176314651565656030116 0ustar004LMOHTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: lt Language-Team: Lithuanian (https://www.transifex.com/sphinx-doc/teams/36659/lt/) Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000220614651565656030112 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000162014651565656030110 0ustar004LMwTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: lv Language-Team: Latvian (https://www.transifex.com/sphinx-doc/teams/36659/lv/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000204314651565656030113 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000161614651565656030103 0ustar004LMuTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: mk Language-Team: Macedonian (https://www.transifex.com/sphinx-doc/teams/36659/mk/) Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000204114651565656030077 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000160614651565656030466 0ustar004LMmTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: nb_NO Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/sphinx-doc/teams/36659/nb_NO/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000203114651565656030462 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414651565656030077 0ustar004LMSTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: ne Language-Team: Nepali (https://www.transifex.com/sphinx-doc/teams/36659/ne/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714651565656030111 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314651565656030105 0ustar004LMRTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+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.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614651565656030117 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000176414651565656030113 0ustar004LMLETo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: Tawez, 2019 Language: pl Language-Team: Polish (https://www.transifex.com/sphinx-doc/teams/36659/pl/) Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Aby obejrzeć plik pomocy: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000256614651565656030117 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # # Translators: # Tawez, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Last-Translator: Tawez, 2019\n" "Language-Team: Polish (https://www.transifex.com/sphinx-doc/teams/36659/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" "Aby obejrzeć plik pomocy:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000156014651565656030115 0ustar004LMWTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: pt Language-Team: Portuguese (https://www.transifex.com/sphinx-doc/teams/36659/pt/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200314651565656030111 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000157614651565656030507 0ustar004LMeTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: pt_BR Language-Team: Portuguese (Brazil) (https://www.transifex.com/sphinx-doc/teams/36659/pt_BR/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000202114651565656030474 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000160114651565656030514 0ustar004LMhTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: pt_PT Language-Team: Portuguese (Portugal) (https://www.transifex.com/sphinx-doc/teams/36659/pt_PT/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000202414651565656030517 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000162714651565656030116 0ustar004LM~To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: ro Language-Team: Romanian (https://www.transifex.com/sphinx-doc/teams/36659/ro/) Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1)) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000205214651565656030112 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000176714651565656030131 0ustar004LMSLTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+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.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000221214651565656030116 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030111 0ustar004LMTTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: si Language-Team: Sinhala (https://www.transifex.com/sphinx-doc/teams/36659/si/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014651565656030076 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000166714651565656030117 0ustar004LM To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: sk Language-Team: Slovak (https://www.transifex.com/sphinx-doc/teams/36659/sk/) Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211214651565656030104 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000164314651565656030112 0ustar004LMTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: sl Language-Team: Slovenian (https://www.transifex.com/sphinx-doc/teams/36659/sl/) Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000206614651565656030115 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sphinxcontrib.devhelp.pot0000644000000000000000000000170514651565656026075 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000166714651565656030126 0ustar004LM To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: sr Language-Team: Serbian (https://www.transifex.com/sphinx-doc/teams/36659/sr/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211214651565656030113 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000021500000000000010213 xustar00113 path=sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.mo 28 mtime=1722215341.7489204 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp0000644000000000000000000000171514651565656030636 0ustar004LM)"To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: sr@latin Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr%40latin/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000021500000000000010213 xustar00113 path=sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.po 28 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp0000644000000000000000000000214014651565656030627 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514651565656030126 0ustar004LMTTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: sv Language-Team: Swedish (https://www.transifex.com/sphinx-doc/teams/36659/sv/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014651565656030113 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314651565656030100 0ustar004LMRTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: ta Language-Team: Tamil (https://www.transifex.com/sphinx-doc/teams/36659/ta/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614651565656030112 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414651565656030122 0ustar004LMSTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: tr Language-Team: Turkish (https://www.transifex.com/sphinx-doc/teams/36659/tr/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714651565656030134 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Language-Team: Turkish (https://www.transifex.com/sphinx-doc/teams/36659/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000213514651565656030475 0ustar004LMDTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: uk_UA Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/sphinx-doc/teams/36659/uk_UA/) Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000236014651565656030500 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155114651565656030110 0ustar004LMPTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: FULL NAME Language: vi Language-Team: Vietnamese (https://www.transifex.com/sphinx-doc/teams/36659/vi/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177414651565656030122 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000164214651565656030474 0ustar004LMTo view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+0000 Last-Translator: Yinian Chin , 2019 Language: zh_CN Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 要调用帮助文件,请执行下面的命令: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelp导出 DevHelp 索引……././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000253014651565656030474 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # # Translators: # Yinian Chin , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+0000\n" "Last-Translator: Yinian Chin , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" "要调用帮助文件,请执行下面的命令:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "导出 DevHelp 索引……" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000156514651565656030532 0ustar004LM\To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...Project-Id-Version: sphinxcontrib-devhelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 00:43+0900 PO-Revision-Date: 2019-01-19 15:44+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.6.0 To view the help file: $ mkdir -p $HOME/.local/share/devhelp/books $ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s $ devhelpdumping devhelp index...././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000201014651565656030517 0ustar00# Translations template for sphinxcontrib-devhelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-devhelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-devhelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 00:43+0900\n" "PO-Revision-Date: 2019-01-19 15:44+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/devhelp/__init__.py:52 #, python-format msgid "" "To view the help file:\n" "$ mkdir -p $HOME/.local/share/devhelp/books\n" "$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" "$ devhelp" msgstr "" #: sphinxcontrib/devhelp/__init__.py:78 msgid "dumping devhelp index..." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/tests/conftest.py0000644000000000000000000000036014651565656016423 0ustar00from __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' ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/tests/roots/test-basic/conf.py0000644000000000000000000000000014651565656020716 0ustar00././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/tests/roots/test-basic/index.rst0000644000000000000000000000002614651565656021270 0ustar00test-basic ========== ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/tests/test_devhelp.py0000644000000000000000000000151414651565656017266 0ustar00"""Test for devhelp extension.""" from __future__ import annotations from time import sleep from typing import TYPE_CHECKING import pytest if TYPE_CHECKING: from sphinx.application import Sphinx @pytest.mark.sphinx('devhelp', testroot='basic') def test_basic(app: Sphinx) -> None: app.builder.build_all() @pytest.mark.sphinx('devhelp', testroot='basic', freshenv=True) def test_basic_deterministic_build(app: Sphinx) -> None: app.config.devhelp_basename, output_filename = 'testing', 'testing.devhelp.gz' app.builder.build_all() output_initial = (app.outdir / output_filename).read_bytes() sleep(2) app.builder.build_all() output_repeat = (app.outdir / output_filename).read_bytes() msg = f"Content of '{output_filename}' differed between builds." assert output_repeat == output_initial, msg ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215341.7529206 sphinxcontrib_devhelp-2.0.0/tox.ini0000644000000000000000000000100214651565656014367 0ustar00[tox] minversion = 2.4.0 envlist = py{39,310,311,312,313}, ruff, mypy isolated_build = True [testenv] deps= pytest git+https://github.com/sphinx-doc/sphinx extras= test setenv = PYTHONWARNINGS = all,ignore::DeprecationWarning:docutils.io commands= pytest --durations 25 {posargs} [testenv:ruff] description = Run style checks. extras = test lint commands= ruff check [testenv:mypy] description = Run type checks. extras = test lint commands= mypy sphinxcontrib_devhelp-2.0.0/PKG-INFO0000644000000000000000000000442500000000000014103 0ustar00Metadata-Version: 2.1 Name: sphinxcontrib-devhelp Version: 2.0.0 Summary: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents Author-email: Georg Brandl Requires-Python: >=3.9 Description-Content-Type: text/x-rst Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Education Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3 :: Only Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities Requires-Dist: ruff==0.5.5 ; extra == "lint" Requires-Dist: mypy ; extra == "lint" Requires-Dist: types-docutils ; extra == "lint" Requires-Dist: Sphinx>=5 ; extra == "standalone" Requires-Dist: pytest ; extra == "test" Project-URL: Changelog, https://github.com/sphinx-doc/sphinxcontrib-devhelp/blob/master/CHANGES.rst Project-URL: Code, https://github.com/sphinx-doc/sphinxcontrib-devhelp/ Project-URL: Download, https://pypi.org/project/sphinxcontrib-devhelp/ Project-URL: Homepage, https://www.sphinx-doc.org/ Project-URL: Issue tracker, https://github.com/sphinx-doc/sphinx/issues/ Provides-Extra: lint Provides-Extra: standalone Provides-Extra: test ===================== sphinxcontrib-devhelp ===================== sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp_ document. For more details, please visit http://www.sphinx-doc.org/. .. _Devhelp: https://wiki.gnome.org/Apps/Devhelp Installing ========== Install from PyPI:: pip install -U sphinxcontrib-devhelp Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst