././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.472862 sphinxcontrib-devhelp-1.0.2/0000755000076600000240000000000000000000000016633 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949662.0 sphinxcontrib-devhelp-1.0.2/CHANGES0000644000076600000240000000045400000000000017631 0ustar00tkomiyastaff00000000000000Release 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) ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/LICENSE0000644000076600000240000000263500000000000017646 0ustar00tkomiyastaff00000000000000License 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. ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/MANIFEST.in0000644000076600000240000000022100000000000020364 0ustar00tkomiyastaff00000000000000include README.rst include LICENSE include CHANGES include tox.ini recursive-include sphinxcontrib/devhelp/locales * recursive-include tests * ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4730017 sphinxcontrib-devhelp-1.0.2/PKG-INFO0000644000076600000240000000240200000000000017726 0ustar00tkomiyastaff00000000000000Metadata-Version: 2.1 Name: sphinxcontrib-devhelp Version: 1.0.2 Summary: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: georg@python.org License: BSD Download-URL: https://pypi.org/project/sphinxcontrib-devhelp/ Description: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. Platform: any 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.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities Requires-Python: >=3.5 Provides-Extra: test Provides-Extra: lint ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/README.rst0000644000076600000240000000160500000000000020324 0ustar00tkomiyastaff00000000000000===================== 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 Release signatures ================== Releases are signed with following keys: * `498D6B9E `_ * `5EBA0E07 `_ Testing ======= To run the tests with the interpreter available as ``python``, use:: tox Continuous testing runs on travis: https://travis-ci.org/sphinx-doc/sphinxcontrib-devhelp Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4735353 sphinxcontrib-devhelp-1.0.2/setup.cfg0000644000076600000240000000073200000000000020456 0ustar00tkomiyastaff00000000000000[egg_info] tag_build = tag_date = 0 [aliases] release = egg_info -Db '' [extract_messages] output_file = sphinxcontrib/devhelp/locales/sphinxcontrib.devhelp.pot keywords = _ __ [compile_catalog] domain = sphinxcontrib.devhelp directory = sphinxcontrib/devhelp/locales/ use_fuzzy = true [bdist_wheel] universal = 1 [metadata] license_file = LICENSE [flake8] max-line-length = 95 ignore = E116,E241,E251 exclude = .git,.tox,.venv [mypy] ignore_missing_imports = True ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582948959.0 sphinxcontrib-devhelp-1.0.2/setup.py0000644000076600000240000000401600000000000020346 0ustar00tkomiyastaff00000000000000# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages long_desc = ''' sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. ''' extras_require = { 'test': [ 'pytest', ], 'lint': [ 'flake8', 'mypy', 'docutils-stubs', ], } def get_version(): """Get version number of the package from version.py without importing core module.""" package_dir = os.path.abspath(os.path.dirname(__file__)) version_file = os.path.join(package_dir, 'sphinxcontrib/devhelp/version.py') namespace = {} with open(version_file, 'rt') as f: exec(f.read(), namespace) return namespace['__version__'] setup( name='sphinxcontrib-devhelp', version=get_version(), url='http://sphinx-doc.org/', download_url='https://pypi.org/project/sphinxcontrib-devhelp/', license='BSD', author='Georg Brandl', author_email='georg@python.org', description=long_desc.strip().replace('\n', ' '), long_description=long_desc, zip_safe=False, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Framework :: Sphinx', 'Framework :: Sphinx :: Extension', 'Topic :: Documentation', 'Topic :: Documentation :: Sphinx', 'Topic :: Text Processing', 'Topic :: Utilities', ], platforms='any', python_requires=">=3.5", packages=find_packages(exclude=['tests']), include_package_data=True, extras_require=extras_require, namespace_packages=['sphinxcontrib'], ) ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.425627 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/0000755000076600000240000000000000000000000021525 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/__init__.py0000644000076600000240000000053600000000000023642 0ustar00tkomiyastaff00000000000000""" sphinxcontrib ~~~~~~~~~~~~~ This package is a namespace package that contains all extensions distributed in the ``sphinx-contrib`` distribution. :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pkg_resources pkg_resources.declare_namespace(__name__) ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.426147 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/0000755000076600000240000000000000000000000023154 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578844713.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/__init__.py0000644000076600000240000001203200000000000025263 0ustar00tkomiyastaff00000000000000""" sphinxcontrib.devhelp ~~~~~~~~~~~~~~~~~~~~~ Build HTML documentation and Devhelp_ support files. .. _Devhelp: https://wiki.gnome.org/Apps/Devhelp :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ import gzip import re from os import path from typing import Any, Dict 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 from sphinxcontrib.devhelp.version import __version__ try: import xml.etree.ElementTree as etree except ImportError: import lxml.etree as etree # type: ignore if False: # For type annotation from typing import List # NOQA 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): # type: () -> None super().init() self.out_suffix = '.html' self.link_suffix = '.html' def handle_finish(self): # type: () -> None self.build_devhelp(self.outdir, self.config.devhelp_basename) def build_devhelp(self, outdir, outname): # type: (str, 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, parent): # type: (nodes.Node, 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.traverse(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, refs, subitems): # type: (str, List[Any], 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') def setup(app: Sphinx) -> Dict[str, Any]: 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, } ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4263968 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/0000755000076600000240000000000000000000000024576 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4270346 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/.tx/0000755000076600000240000000000000000000000025307 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/.tx/config0000644000076600000240000000033500000000000026500 0ustar00tkomiyastaff00000000000000[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 ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4122972 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ar/0000755000076600000240000000000000000000000025200 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4280818 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/0000755000076600000240000000000000000000000026765 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000167700000000000033655 0ustar00tkomiyastaff000000000000004LMTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000212200000000000033642 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4125414 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/bn/0000755000076600000240000000000000000000000025175 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4288952 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/0000755000076600000240000000000000000000000026762 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033645 0ustar00tkomiyastaff000000000000004LMTTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200000000000000033632 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4128351 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ca/0000755000076600000240000000000000000000000025161 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4298031 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/0000755000076600000240000000000000000000000026746 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033631 0ustar00tkomiyastaff000000000000004LMTTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200000000000000033616 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4130929 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cs/0000755000076600000240000000000000000000000025203 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.431037 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/0000755000076600000240000000000000000000000026770 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000167300000000000033654 0ustar00tkomiyastaff000000000000004LMTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000211600000000000033650 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4133744 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cy/0000755000076600000240000000000000000000000025211 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4321346 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/0000755000076600000240000000000000000000000026776 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000163000000000000033653 0ustar00tkomiyastaff000000000000004LMTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000205300000000000033656 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4136727 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/da/0000755000076600000240000000000000000000000025162 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4330344 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/da/LC_MESSAGES/0000755000076600000240000000000000000000000026747 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155400000000000033631 0ustar00tkomiyastaff000000000000004LMSTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177700000000000033643 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.413928 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/de/0000755000076600000240000000000000000000000025166 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4338741 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/de/LC_MESSAGES/0000755000076600000240000000000000000000000026753 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155400000000000033635 0ustar00tkomiyastaff000000000000004LMSTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177700000000000033647 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4141474 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/el/0000755000076600000240000000000000000000000025176 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4346766 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/el/LC_MESSAGES/0000755000076600000240000000000000000000000026763 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155300000000000033644 0ustar00tkomiyastaff000000000000004LMRTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177600000000000033656 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4143734 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eo/0000755000076600000240000000000000000000000025201 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4355748 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/0000755000076600000240000000000000000000000026766 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155700000000000033653 0ustar00tkomiyastaff000000000000004LMVTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200200000000000033640 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003200000000000011450 xustar000000000000000026 mtime=1582949675.41459 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/es/0000755000076600000240000000000000000000000025205 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4363973 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/es/LC_MESSAGES/0000755000076600000240000000000000000000000026772 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033655 0ustar00tkomiyastaff000000000000004LMTTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200000000000000033642 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4148023 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/et/0000755000076600000240000000000000000000000025206 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4372807 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/et/LC_MESSAGES/0000755000076600000240000000000000000000000026773 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000156500000000000033657 0ustar00tkomiyastaff000000000000004LM\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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000241500000000000033655 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4150178 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eu/0000755000076600000240000000000000000000000025207 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.438157 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/0000755000076600000240000000000000000000000026774 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155400000000000033656 0ustar00tkomiyastaff000000000000004LMSTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177700000000000033670 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4152272 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fa/0000755000076600000240000000000000000000000025164 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4390578 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/0000755000076600000240000000000000000000000026751 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155400000000000033633 0ustar00tkomiyastaff000000000000004LMSTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177700000000000033645 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4154394 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fi/0000755000076600000240000000000000000000000025174 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.439942 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/0000755000076600000240000000000000000000000026761 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033644 0ustar00tkomiyastaff000000000000004LMTTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200000000000000033631 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.415651 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fr/0000755000076600000240000000000000000000000025205 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4408185 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/0000755000076600000240000000000000000000000026772 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000160500000000000033651 0ustar00tkomiyastaff000000000000004LMlTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000243600000000000033657 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4158652 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/he/0000755000076600000240000000000000000000000025172 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4416778 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/he/LC_MESSAGES/0000755000076600000240000000000000000000000026757 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000171200000000000033635 0ustar00tkomiyastaff000000000000004LM&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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000213500000000000033640 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4160779 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi/0000755000076600000240000000000000000000000025176 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003200000000000011450 xustar000000000000000026 mtime=1582949675.44254 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/0000755000076600000240000000000000000000000026763 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155300000000000033644 0ustar00tkomiyastaff000000000000004LMRTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177600000000000033656 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.416295 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi_IN/0000755000076600000240000000000000000000000025564 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4434285 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/0000755000076600000240000000000000000000000027351 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000157100000000000034232 0ustar00tkomiyastaff000000000000004LM`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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000201400000000000034226 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4165065 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hr/0000755000076600000240000000000000000000000025207 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4443064 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/0000755000076600000240000000000000000000000026774 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000166600000000000033662 0ustar00tkomiyastaff000000000000004LM 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000211100000000000033647 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4167283 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hu/0000755000076600000240000000000000000000000025212 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4454873 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/0000755000076600000240000000000000000000000026777 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155700000000000033664 0ustar00tkomiyastaff000000000000004LMVTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200200000000000033651 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4169476 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/id/0000755000076600000240000000000000000000000025172 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4462798 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/id/LC_MESSAGES/0000755000076600000240000000000000000000000026757 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033642 0ustar00tkomiyastaff000000000000004LMRTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000242000000000000033635 0ustar00tkomiyastaff00000000000000# 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..." ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4171693 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/it/0000755000076600000240000000000000000000000025212 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.447179 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/it/LC_MESSAGES/0000755000076600000240000000000000000000000026777 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033662 0ustar00tkomiyastaff000000000000004LMTTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200000000000000033647 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.417396 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ja/0000755000076600000240000000000000000000000025170 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4480631 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/0000755000076600000240000000000000000000000026755 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000154700000000000033641 0ustar00tkomiyastaff000000000000004LMNTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177200000000000033644 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4176211 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ko/0000755000076600000240000000000000000000000025207 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4490244 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/0000755000076600000240000000000000000000000026774 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000154500000000000033656 0ustar00tkomiyastaff000000000000004LMLTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177000000000000033661 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4178312 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lt/0000755000076600000240000000000000000000000025215 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4498868 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/0000755000076600000240000000000000000000000027002 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000176300000000000033666 0ustar00tkomiyastaff000000000000004LMOHTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000220600000000000033662 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4180472 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lv/0000755000076600000240000000000000000000000025217 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.450762 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/0000755000076600000240000000000000000000000027004 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000162000000000000033660 0ustar00tkomiyastaff000000000000004LMwTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000204300000000000033663 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4182673 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/mk/0000755000076600000240000000000000000000000025205 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.451542 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/0000755000076600000240000000000000000000000026772 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000161600000000000033653 0ustar00tkomiyastaff000000000000004LMuTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000204100000000000033647 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4184842 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nb_NO/0000755000076600000240000000000000000000000025571 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.452372 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/0000755000076600000240000000000000000000000027356 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000160600000000000034236 0ustar00tkomiyastaff000000000000004LMmTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000203100000000000034232 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4186983 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ne/0000755000076600000240000000000000000000000025200 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4532528 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/0000755000076600000240000000000000000000000026765 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155400000000000033647 0ustar00tkomiyastaff000000000000004LMSTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177700000000000033661 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4189181 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nl/0000755000076600000240000000000000000000000025207 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4541728 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/0000755000076600000240000000000000000000000026774 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155300000000000033655 0ustar00tkomiyastaff000000000000004LMRTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177600000000000033667 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.419129 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pl/0000755000076600000240000000000000000000000025211 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4550467 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/0000755000076600000240000000000000000000000026776 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000176400000000000033663 0ustar00tkomiyastaff000000000000004LMLETo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000256600000000000033667 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4193463 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt/0000755000076600000240000000000000000000000025221 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.455894 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/0000755000076600000240000000000000000000000027006 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000156000000000000033665 0ustar00tkomiyastaff000000000000004LMWTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200300000000000033661 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4195719 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_BR/0000755000076600000240000000000000000000000025604 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4567516 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/0000755000076600000240000000000000000000000027371 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000157600000000000034257 0ustar00tkomiyastaff000000000000004LMeTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000202100000000000034244 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.419803 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_PT/0000755000076600000240000000000000000000000025624 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4575934 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/0000755000076600000240000000000000000000000027411 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000160100000000000034264 0ustar00tkomiyastaff000000000000004LMhTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000202400000000000034267 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4200356 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ro/0000755000076600000240000000000000000000000025216 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4584224 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/0000755000076600000240000000000000000000000027003 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000162700000000000033666 0ustar00tkomiyastaff000000000000004LM~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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000205200000000000033662 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4202545 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ru/0000755000076600000240000000000000000000000025224 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4595444 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/0000755000076600000240000000000000000000000027011 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000176700000000000033701 0ustar00tkomiyastaff000000000000004LMSLTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000221200000000000033666 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4204855 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/si/0000755000076600000240000000000000000000000025211 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.460404 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/si/LC_MESSAGES/0000755000076600000240000000000000000000000026776 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033661 0ustar00tkomiyastaff000000000000004LMTTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200000000000000033646 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4207075 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sk/0000755000076600000240000000000000000000000025213 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4613626 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/0000755000076600000240000000000000000000000027000 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000166700000000000033667 0ustar00tkomiyastaff000000000000004LM 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000211200000000000033654 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4209282 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sl/0000755000076600000240000000000000000000000025214 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4621897 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/0000755000076600000240000000000000000000000027001 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000164300000000000033662 0ustar00tkomiyastaff000000000000004LMTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000206600000000000033665 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sphinxcontrib.devhelp.pot0000644000076600000240000000170500000000000031645 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.421148 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr/0000755000076600000240000000000000000000000025222 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4630988 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/0000755000076600000240000000000000000000000027007 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000166700000000000033676 0ustar00tkomiyastaff000000000000004LM 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000211200000000000033663 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4213781 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr@latin/0000755000076600000240000000000000000000000026352 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4639304 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/0000755000076600000240000000000000000000000030137 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000020700000000000011454 xustar0000000000000000113 path=sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.mo 22 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp0000644000076600000240000000171500000000000034406 0ustar00tkomiyastaff000000000000004LM)"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...././@PaxHeader0000000000000000000000000000020700000000000011454 xustar0000000000000000113 path=sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.po 22 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp0000644000076600000240000000214000000000000034377 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4215953 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sv/0000755000076600000240000000000000000000000025226 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.464842 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/0000755000076600000240000000000000000000000027013 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155500000000000033676 0ustar00tkomiyastaff000000000000004LMTTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000200000000000000033663 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4218094 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ta/0000755000076600000240000000000000000000000025202 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4658196 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/0000755000076600000240000000000000000000000026767 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155300000000000033650 0ustar00tkomiyastaff000000000000004LMRTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177600000000000033662 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4220302 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/tr/0000755000076600000240000000000000000000000025223 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4665382 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/0000755000076600000240000000000000000000000027010 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155400000000000033672 0ustar00tkomiyastaff000000000000004LMSTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177700000000000033704 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4222434 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/uk_UA/0000755000076600000240000000000000000000000025602 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4672842 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/0000755000076600000240000000000000000000000027367 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000213500000000000034245 0ustar00tkomiyastaff000000000000004LMDTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000236000000000000034250 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4224656 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/vi/0000755000076600000240000000000000000000000025214 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.468067 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/0000755000076600000240000000000000000000000027001 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000155100000000000033660 0ustar00tkomiyastaff000000000000004LMPTo 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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000177400000000000033672 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4226933 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_CN/0000755000076600000240000000000000000000000025577 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4688976 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/0000755000076600000240000000000000000000000027364 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000164200000000000034244 0ustar00tkomiyastaff000000000000004LMTo 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 索引……././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000253000000000000034244 0ustar00tkomiyastaff00000000000000# 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 索引……" ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4229167 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_TW/0000755000076600000240000000000000000000000025631 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4696498 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/0000755000076600000240000000000000000000000027416 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.mo0000644000076600000240000000156500000000000034302 0ustar00tkomiyastaff000000000000004LM\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...././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.po0000644000076600000240000000201000000000000034267 0ustar00tkomiyastaff00000000000000# 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 "" ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/version.py0000644000076600000240000000041700000000000025215 0ustar00tkomiyastaff00000000000000""" sphinxcontrib.devhelp.version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ __version__ = '1.0.2' __version_info__ = tuple(map(int, __version__.split('.'))) ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4715638 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/0000755000076600000240000000000000000000000024726 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949675.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/PKG-INFO0000644000076600000240000000240200000000000026021 0ustar00tkomiyastaff00000000000000Metadata-Version: 2.1 Name: sphinxcontrib-devhelp Version: 1.0.2 Summary: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: georg@python.org License: BSD Download-URL: https://pypi.org/project/sphinxcontrib-devhelp/ Description: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. Platform: any 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.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities Requires-Python: >=3.5 Provides-Extra: test Provides-Extra: lint ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949675.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/SOURCES.txt0000644000076600000240000001643700000000000026625 0ustar00tkomiyastaff00000000000000CHANGES LICENSE MANIFEST.in README.rst setup.cfg setup.py tox.ini sphinxcontrib/__init__.py sphinxcontrib/devhelp/__init__.py sphinxcontrib/devhelp/version.py sphinxcontrib/devhelp/locales/sphinxcontrib.devhelp.pot sphinxcontrib/devhelp/locales/.tx/config sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ar/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/bn/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ca/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/cs/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/cy/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/da/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/de/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/el/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/eo/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/es/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/et/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/eu/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/fa/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/fi/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/fr/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/he/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/hi/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/hr/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/hu/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/id/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/it/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ja/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ko/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/lt/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/lv/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/mk/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ne/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/nl/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/pl/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/pt/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ro/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ru/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/si/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/sk/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/sl/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/sr/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/sv/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/ta/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/tr/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/vi/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.mo sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.po sphinxcontrib_devhelp.egg-info/PKG-INFO sphinxcontrib_devhelp.egg-info/SOURCES.txt sphinxcontrib_devhelp.egg-info/dependency_links.txt sphinxcontrib_devhelp.egg-info/namespace_packages.txt sphinxcontrib_devhelp.egg-info/not-zip-safe sphinxcontrib_devhelp.egg-info/requires.txt sphinxcontrib_devhelp.egg-info/top_level.txt tests/conftest.py tests/test_devhelp.py tests/roots/test-basic/conf.py tests/roots/test-basic/index.rst././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949675.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/dependency_links.txt0000644000076600000240000000000100000000000030774 0ustar00tkomiyastaff00000000000000 ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949675.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/namespace_packages.txt0000644000076600000240000000001600000000000031256 0ustar00tkomiyastaff00000000000000sphinxcontrib ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949675.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/not-zip-safe0000644000076600000240000000000100000000000027154 0ustar00tkomiyastaff00000000000000 ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949675.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/requires.txt0000644000076600000240000000006200000000000027324 0ustar00tkomiyastaff00000000000000 [lint] flake8 mypy docutils-stubs [test] pytest ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949675.0 sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/top_level.txt0000644000076600000240000000001600000000000027455 0ustar00tkomiyastaff00000000000000sphinxcontrib ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4720504 sphinxcontrib-devhelp-1.0.2/tests/0000755000076600000240000000000000000000000017775 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/tests/conftest.py0000644000076600000240000000062200000000000022174 0ustar00tkomiyastaff00000000000000""" pytest config for sphinx extensions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest from sphinx.testing.path import path pytest_plugins = 'sphinx.testing.fixtures' @pytest.fixture(scope='session') def rootdir(): return path(__file__).parent.abspath() / 'roots' ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949675.4233794 sphinxcontrib-devhelp-1.0.2/tests/roots/0000755000076600000240000000000000000000000021143 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003300000000000011451 xustar000000000000000027 mtime=1582949675.472506 sphinxcontrib-devhelp-1.0.2/tests/roots/test-basic/0000755000076600000240000000000000000000000023201 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/tests/roots/test-basic/conf.py0000644000076600000240000000000000000000000024466 0ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/tests/roots/test-basic/index.rst0000644000076600000240000000002600000000000025040 0ustar00tkomiyastaff00000000000000test-basic ========== ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843071.0 sphinxcontrib-devhelp-1.0.2/tests/test_devhelp.py0000644000076600000240000000050100000000000023031 0ustar00tkomiyastaff00000000000000""" test_devhelp ~~~~~~~~~~~~ Test for devhelp extension. :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest @pytest.mark.sphinx('devhelp', testroot='basic') def test_basic(app, status, warning): app.builder.build_all() ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578844713.0 sphinxcontrib-devhelp-1.0.2/tox.ini0000644000076600000240000000073200000000000020150 0ustar00tkomiyastaff00000000000000[tox] envlist=flake8,mypy,py35,py36,py37,py38,py39 [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/