././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/CHANGES0000644000000000000000000000154714550377062014060 0ustar00Release 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/LICENSE0000644000000000000000000000263514550377062014071 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/README.rst0000644000000000000000000000072214550377062014546 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/pyproject.toml0000644000000000000000000000371514550377062016000 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://www.sphinx-doc.org/en/master/changes.html" 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 = [ "flake8", "mypy", "docutils-stubs", ] standalone = [ "Sphinx>=5", ] [[project.authors]] name = "Georg Brandl" email = "georg@python.org" [tool.flit.module] name = "sphinxcontrib.devhelp" [tool.flit.sdist] include = [ "CHANGES", "LICENSE", # Tests "tests/", "tox.ini", ] [tool.mypy] ignore_missing_imports = true ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/__init__.py0000644000000000000000000001144414550377062021514 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 Any from docutils import nodes from sphinx import addnodes from sphinx.application import Sphinx 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 try: import xml.etree.ElementTree as etree except ImportError: import lxml.etree as etree # type: ignore __version__ = '1.0.6' __version_info__ = (1, 0, 6) 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) or \ isinstance(node, 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): # type: addnodes.compact_paragraph 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("%s %s" % (parent_title, subitem[0]), subitem[1], []) for (key, group) in index: for title, (refs, subitems, key) in group: write_index(title, refs, subitems) # Dump the XML file xmlfile = path.join(outdir, outname + '.devhelp.gz') with gzip.open(xmlfile, 'w') as f: tree.write(f, 'utf-8') # type: ignore 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/.tx/config0000644000000000000000000000033514550377062022723 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000167714550377062030100 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000212214550377062030065 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030070 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014550377062030055 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030054 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014550377062030041 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000167314550377062030077 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211614550377062030073 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000163014550377062030076 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000205314550377062030101 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414550377062030054 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714550377062030066 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414550377062030060 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714550377062030072 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314550377062030067 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614550377062030101 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155714550377062030076 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200214550377062030063 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030100 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014550377062030065 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000156514550377062030102 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000241514550377062030100 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414550377062030101 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714550377062030113 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414550377062030056 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714550377062030070 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030067 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014550377062030054 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000160514550377062030074 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000243614550377062030102 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000171214550377062030060 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000213514550377062030063 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314550377062030067 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614550377062030101 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000157114550377062030455 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000201414550377062030451 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000166614550377062030105 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211114550377062030072 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155714550377062030107 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200214550377062030074 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=1705115186.2788963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030065 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000242014550377062030060 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030105 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014550377062030072 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000154714550377062030064 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177214550377062030067 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000154514550377062030101 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177014550377062030104 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000176314550377062030111 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000220614550377062030105 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000162014550377062030103 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000204314550377062030106 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000161614550377062030076 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000204114550377062030072 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000160614550377062030461 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000203114550377062030455 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414550377062030072 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714550377062030104 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314550377062030100 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614550377062030112 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000176414550377062030106 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000256614550377062030112 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000156014550377062030110 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200314550377062030104 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000157614550377062030502 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000202114550377062030467 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000160114550377062030507 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000202414550377062030512 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000162714550377062030111 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000205214550377062030105 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000176714550377062030124 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000221214550377062030111 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030104 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014550377062030071 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000166714550377062030112 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211214550377062030077 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000164314550377062030105 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000206614550377062030110 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sphinxcontrib.devhelp.pot0000644000000000000000000000170514550377062026070 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000166714550377062030121 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000211214550377062030106 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-1.0.6/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.mo 28 mtime=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp0000644000000000000000000000171514550377062030631 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-1.0.6/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.po 28 mtime=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp0000644000000000000000000000214014550377062030622 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155514550377062030121 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000200014550377062030106 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155314550377062030073 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177614550377062030105 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155414550377062030115 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177714550377062030127 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000213514550377062030470 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000236014550377062030473 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000155114550377062030103 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000177414550377062030115 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000164214550377062030467 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000253014550377062030467 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000000000000000000000156514550377062030525 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000000000000000000000201014550377062030512 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=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/tests/conftest.py0000644000000000000000000000053314550377062016420 0ustar00from pathlib import Path import pytest import sphinx pytest_plugins = 'sphinx.testing.fixtures' @pytest.fixture(scope='session') def rootdir(): if sphinx.version_info[:2] < (7, 2): from sphinx.testing.path import path return path(__file__).parent.abspath() / 'roots' return Path(__file__).resolve().parent / 'roots' ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/tests/roots/test-basic/conf.py0000644000000000000000000000000014550377062020711 0ustar00././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/tests/roots/test-basic/index.rst0000644000000000000000000000002614550377062021263 0ustar00test-basic ========== ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/tests/test_devhelp.py0000644000000000000000000000024614550377062017262 0ustar00"""Test for devhelp extension.""" import pytest @pytest.mark.sphinx('devhelp', testroot='basic') def test_basic(app, status, warning): app.builder.build_all() ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115186.2828963 sphinxcontrib_devhelp-1.0.6/tox.ini0000644000000000000000000000105214550377062014367 0ustar00[tox] minversion = 2.4.0 envlist = py{39,310,311,312,313}, flake8, 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:flake8] description = Run style checks. extras = test lint commands= flake8 [testenv:mypy] description = Run type checks. extras = test lint commands= mypy sphinxcontrib/ --explicit-package-bases sphinxcontrib_devhelp-1.0.6/PKG-INFO0000644000000000000000000000436400000000000014112 0ustar00Metadata-Version: 2.1 Name: sphinxcontrib-devhelp Version: 1.0.6 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: flake8 ; extra == "lint" Requires-Dist: mypy ; extra == "lint" Requires-Dist: docutils-stubs ; extra == "lint" Requires-Dist: Sphinx>=5 ; extra == "standalone" Requires-Dist: pytest ; extra == "test" Project-URL: Changelog, https://www.sphinx-doc.org/en/master/changes.html 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